码迷,mamicode.com
首页 >  
搜索关键字:write hole    ( 14799个结果
C# NamedPipeServerStream NamedPipeClientStream
The piped stream are bidirectional communcation.Meanwhile they can read and write. Write the NamedPipeServerStream and NamedPipeClientStream in two di ...
分类:Windows程序   时间:2020-06-29 18:52:59    阅读次数:92
C# 日期比较计算
DateTime t1= DateTime.Now; DateTime t2= Convert.ToDateTime(endTime); if(DateTime.Compare(t1, t2) > 0) { Console.WriteLine(" t1 > t2 "); } if(DateTime. ...
分类:Windows程序   时间:2020-06-29 13:42:13    阅读次数:81
Power Apps visual for Power BI
Using the Power Apps visual Let's look at the steps required to use the Power Apps visual in your Power BI report. Power Apps visual is available by d ...
分类:移动开发   时间:2020-06-29 11:30:50    阅读次数:107
MVC框架的模板缓存
在一次项目中,由于没有开启模板缓存,每次都是重新编译模板输出,在多进程情况下,就有可能会发生同时写入一个文件的情况,就会发生“缓存写入失败”的错误。 开启模板缓存可以缓解这个错误,但是在缓存失效,重新编译时,又有可能发生这个错误。 所以,可以通过给文件加锁来解决,当前进程加锁,正常写入,其他进程阻塞 ...
分类:Web程序   时间:2020-06-29 11:22:02    阅读次数:76
powershell 课后习题
1.从键盘上输入一个字符,判断这个字符是数字,还是大写还是小写字母,还是符号。 [char]$unknown = Read-Host("请输入一个字符")[int]$num = $unknownif($num -ge 48 -and $num -le 57){ Write-Output("输入的字符 ...
分类:系统相关   时间:2020-06-29 00:33:05    阅读次数:82
python使用pandas读取excel
# -*- coding: utf-8 -*- import pandas as pd from collections import defaultdict import json from pathlib import Path DATA = "6.28" dd = defaultdict(li ...
分类:编程语言   时间:2020-06-28 20:42:59    阅读次数:55
【原】安装 k8s-dashboard 并通过 ingress 暴露访问
安装 dashboard 1.1 下载 yaml 文件 [root@uk8s-a ~]# mkdir web-ui [root@uk8s-a ~]# cd web-ui/ [root@uk8s-a web-ui]# wget https://raw.githubusercontent.com/kub ...
分类:其他好文   时间:2020-06-28 20:12:10    阅读次数:130
SCrypt对密码进行加密及密码验证
上篇文章scrypt加密password SCrypt对密码进行加密 中使用的是SCrypt,本篇使用SCrypt.Net,其实和SCrypt差不多,只不过是NuGet程序包管理器使用的一个是SCrypt,一个是SCrypt.Net.本文详细介绍SCrypt.Net的使用 1、新建项目Console ...
分类:其他好文   时间:2020-06-28 16:45:13    阅读次数:75
ajaxSubmit返回JSON格式
开发时遇到根据不同情况返回错误提示信息的需求,用到了ajax中返回json格式数据的。 前台请求代码: <script type="text/javascript"> function login() { $.ajax({ //几个参数需要注意一下 type: "POST",//方法类型 dataT ...
分类:Web程序   时间:2020-06-28 16:44:30    阅读次数:95
禁止 <script> 缓存
<script type="text/javascript"> document.write("<script src='/echarts/echarts.min.js?"+Math.random()+"'><\/script>"); </script> 加个随机数即可. ...
分类:其他好文   时间:2020-06-28 15:04:17    阅读次数:113
14799条   上一页 1 ... 46 47 48 49 50 ... 1480 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!