上一页 1 ··· 25 26 27 28 29 30 31 32 33 ··· 68 下一页
摘要: #### 使用 Clion IDE 开发 stm32 使用标准库 可以使用 qemu 代替开发版 ### 使用 CMakeLists.txt 编译项目 ``` set(CMAKE_SYSTEM_NAME Generic) set(CMAKE_SYSTEM_VERSION 1) cmake_minim 阅读全文
posted @ 2023-08-09 15:49 vx_guanchaoguo0 阅读(234) 评论(0) 推荐(0)
摘要: #### 使用原始的方法 ``` public static String EncryptEncode(String content, String encryptKey) throws Exception { KeyGenerator keyGenerator = KeyGenerator.get 阅读全文
posted @ 2023-08-07 17:25 vx_guanchaoguo0 阅读(173) 评论(0) 推荐(0)
摘要: #### 缓存 * Dockerfile 构建缓存功能从 Docker 17.05 版本开始引入 * 可以加速构建 直接服用缓存 构建我们看到 from cache 就是来自缓存 * 缓存是一个命令为单位 如果想服用缓存需要考虑 #### 查看缓存大小 ![](https://img2023.cnb 阅读全文
posted @ 2023-08-07 10:06 vx_guanchaoguo0 阅读(245) 评论(0) 推荐(0)
摘要: ``` classpath*:config/gsb/generic/*Mapper.xml classpath*:config/gsb/mysql/*Mapper.xml classpath*:config/system/generic/*Mapper.xml ``` 阅读全文
posted @ 2023-08-02 17:21 vx_guanchaoguo0 阅读(9) 评论(0) 推荐(0)
摘要: ### 关联字段查询 ``` _exam_fields = ['add_datetime', 'times', 'start_date', 'end_date', 'uuid', 'name', 'img', 'duration', 'bx_duration'] _alias_fields = { 阅读全文
posted @ 2023-07-31 16:03 vx_guanchaoguo0 阅读(76) 评论(0) 推荐(0)
摘要: #### dockerfile ``` # Compile and install qemu_stm32 from fedora:28 RUN dnf install -y \ arm-none-eabi-gcc\ arm-none-eabi-newlib\ findutils\ gcc\ git\ 阅读全文
posted @ 2023-07-27 15:05 vx_guanchaoguo0 阅读(283) 评论(0) 推荐(0)
摘要: #### 上古时期 python 2.6 之前 ``` name = "Alice" age = 25 print("My name is %s and I'm %d years old." % (name, age)) ``` #### 这是 Python 2.6+ 版本 类似 java ``` 阅读全文
posted @ 2023-07-27 09:47 vx_guanchaoguo0 阅读(55) 评论(0) 推荐(0)
摘要: #### 将图片平铺到真个页面 ``` package com.example; import org.ofdrw.layout.OFDDoc; import org.ofdrw.layout.PageLayout; import org.ofdrw.layout.VirtualPage; impo 阅读全文
posted @ 2023-07-25 16:46 vx_guanchaoguo0 阅读(66) 评论(0) 推荐(0)
摘要: ``` variables: PROJECT_NAME: fuluops_svr stages: - build_push .app_build_push: &app_build_push stage: build_push image: registry.cn-hangzhou.aliyuncs. 阅读全文
posted @ 2023-07-24 17:58 vx_guanchaoguo0 阅读(11) 评论(0) 推荐(0)
摘要: ``` apiVersion: extensions/v1beta1 kind: Deployment metadata: name: opssvr-deployment namespace: ops-prod spec: selector: matchLabels: app: opssvr rep 阅读全文
posted @ 2023-07-24 17:56 vx_guanchaoguo0 阅读(20) 评论(0) 推荐(0)
上一页 1 ··· 25 26 27 28 29 30 31 32 33 ··· 68 下一页