码迷,mamicode.com
首页 >  
搜索关键字:must explicitly desc    ( 10639个结果
LCX端口转发源码分析
lcx.exe算是端口转发工具中普及率特别高的吧。当然,最近也出了好些Web端口转发工具,这个待后续再分析一下。我从网上下载了一个lcx的源码片段,结合源码谈谈自己的认识。 lcx工作原理是使不同端口之间形成一个回路,这样就可以进行端口转发。常用于外网连接内网3389端口。具体使用方法网上一堆。 这 ...
分类:其他好文   时间:2020-07-20 15:16:44    阅读次数:61
axios封装(使用了element-ui的消息提示)
/** Axios请求 * @Author: xuhong * @Date: 2020/6/19 * @DESC: //TODO */ import axios from 'axios'; import baseUrl from "./config"; import {Message} from ' ...
分类:移动开发   时间:2020-07-20 13:13:37    阅读次数:127
jquery-ajax封装
/** 请求 * @Author: xuhong * @Date: 2020/6/19 * @DESC: //TODO */ /** * 发送请求,处理请求失败 * * request(url, method, data, callback) * request(url, method, callb ...
分类:Web程序   时间:2020-07-20 13:11:43    阅读次数:82
PyCharm注释头模板
#!/usr/bin/env python3 # _*_ coding:utf-8 _*_ ''' @File :${NAME}.py @Author:mikigo @Date :${DATE} ${TIME} @Desc : ''' ...
分类:其他好文   时间:2020-07-20 13:06:55    阅读次数:91
Eclipse: export project such that Windows and Mac can both run it (SWT)
You appear to be running a SWT application. On macOS you must specify the -XstartOnFirstThread option when running the jar to run SWT correctly: jar - ...
分类:Windows程序   时间:2020-07-19 23:37:21    阅读次数:101
122. Best Time to Buy and Sell Stock II
package LeetCode_122 /** * 122. Best Time to Buy and Sell Stock II * https://leetcode.com/problems/best-time-to-buy-and-sell-stock-ii/description/ * * ...
分类:其他好文   时间:2020-07-19 18:07:26    阅读次数:79
The Bmesh Module
Basic Transformations in Edit Mode import bpy import bmesh # Must start in object mode # Script will fail if scene is empty bpy.ops.object.mode_set(mo ...
分类:其他好文   时间:2020-07-19 15:57:11    阅读次数:75
统计schema下表的行数
exec dbms_stats.gather_table_stats('schema名字','表名'); select table_name,num_rows from user_tables order by num_rows desc; 注: analyze table 表名 compute s ...
分类:其他好文   时间:2020-07-19 00:55:49    阅读次数:93
[HIVE] rank() dense_rank() row_number()的学习
在对数据进行汇总和分析的时候,经常需要用到排名相关的操作,下面是hive中经常用到的3个排名函数: rank() dense_rank() row_number() 函数说明: rank():在一组数据内按顺序显示排名顺序,值相同的情况下,排序数会重复,下个排序数会根据记录数接着排名。 dense_ ...
分类:其他好文   时间:2020-07-19 00:49:43    阅读次数:74
1507. Reformat Date
package LeetCode_1507 import java.lang.StringBuilder /** * 1507. Reformat Date * https://leetcode.com/problems/reformat-date/description/ * * Given a ...
分类:其他好文   时间:2020-07-19 00:30:33    阅读次数:69
10639条   上一页 1 ... 27 28 29 30 31 ... 1064 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!