码迷,mamicode.com
首页 >  
搜索关键字:fir    ( 3219个结果
python文件操作
打开 在Python中,使用open函数,可以打开一个已经存在的文件,或者创建一个文件,语法如下: 变量(文件对象) = open(name,mode) name:是要打开的目标文件名的字符串(可以包含文件具体路径) mode:设置打开文件的模式(访问模式):只读、写入、追加等 打开文件模式 **注 ...
分类:编程语言   时间:2021-03-08 13:11:36    阅读次数:0
C# Elasticsearch帮助类
ElasticsearchConfig /// <summary> /// ES 连接配置 /// </summary> public class ElasticsearchConfig { /// <summary> /// 节点列表 /// </summary> public IEnumerab ...
分类:Windows程序   时间:2021-03-04 12:55:48    阅读次数:0
REST API [一]
一. 概念 1.1 REST API概念 Representational State Transfer 的简称 rest api 是前后端分离最佳实践,是开发的一套标准或者说是一套规范,不是框架 用于Http服务器和客户端的数据交换,好处: 1、轻量,直接通过http,不需要额外的协议。2、面向资 ...
分类:Windows程序   时间:2021-03-03 11:48:34    阅读次数:0
qt qrc linux 移植
关于qt 资源处理。 这个是qt处理资源的方式,用VS2012+qtaddin 生成的项目会默认带资源,但是前期你没有添加资源的话,用 arm-hismall-linux-g++编译的时候就会出错。 所以如果还没有添加资源的话就可以将qrc_xxx.cpp的里面内容先注视掉,否则会报错,错误内容如下 ...
分类:系统相关   时间:2021-03-02 12:01:48    阅读次数:0
Selenium3自动化测试【4】:Selenium的认知
Selenium工具集 如图所示, Selenium工具集的呈现。 1. Selenium IDE Selenium IDE (集成开发环境) 是一个创建测试脚本的工具,如图所示。它是一个FireFox 插件,实现浏览器的录制与回放功能,提供创建自动化测试的建议接口。Selenium IDE 有一个 ...
分类:其他好文   时间:2021-03-01 13:58:58    阅读次数:0
c# 队列和堆栈
队列,先进先出 Queue<string> q = new Queue<string>(); q.Enqueue("A"); q.Enqueue("B"); q.Enqueue("C"); Console.WriteLine(q.Dequeue()); //移除第一个并返回第一个元素的值:A Con ...
分类:Windows程序   时间:2021-03-01 13:46:21    阅读次数:0
[CodeForces1492C] Maximum Width
description: There are two strings \(a\), \(b\) with the length \(n\), and \(m\). Find the Array <\(p_1, p_2, ..., p_m>\), such that \(a_{p_i}= b_i\), ...
分类:其他好文   时间:2021-03-01 13:26:32    阅读次数:0
1092 To Buy or Not to Buy (20 分)
Eva would like to make a string of beads with her favorite colors so she went to a small shop to buy some beads. There were many colorful strings of b ...
分类:其他好文   时间:2021-02-27 13:26:28    阅读次数:0
dwt_user_topic
用户主题宽表 类似累积事实表 drop table if exists dwt_user_topic; create external table dwt_user_topic ( user_id string comment '用户 id', login_date_first string com ...
分类:其他好文   时间:2021-02-26 13:12:24    阅读次数:0
Ubuntu桌面给任意软件创建桌面链接
[Desktop Entry] Name=firefox-56 GenericName=Web Browser-Firefox OS Exec=/home/wons/ToolBox/Software/Firefox/firefox-56.0/firefox/firefox %u Terminal=f ...
分类:系统相关   时间:2021-02-26 12:52:44    阅读次数:0
3219条   上一页 1 ... 6 7 8 9 10 ... 322 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!