码迷,mamicode.com
首页 >  
搜索关键字:call apply bind    ( 18595个结果
JPA使用之@Query的常用写法
准备 实体 @Data @Table(name = "task_apply") @Entity public class TaskApply { @Id @GeneratedValue @Column(name = "apply_id") private Long applyId; private ...
分类:其他好文   时间:2020-06-29 23:09:57    阅读次数:144
PHP7新特性
PHP标量类型与返回值类型声明 默认情况下,所有的PHP文件都处于弱类型校验模式。 PHP 7 增加了标量类型声明的特性,标量类型声明有两种模式: 强制模式 (默认) 严格模式 declare(strict_types=1); 代码中通过指定 strict_types的值(1或者0),1表示严格类型 ...
分类:Web程序   时间:2020-06-29 18:47:18    阅读次数:78
“第五空间”智能安全大赛-Web-writeup
hate-php 源码: <?php error_reporting(0); if(!isset($_GET['code'])){ highlight_file(__FILE__); }else{ $code = $_GET['code']; if (preg_match('/(f|l|a|g|\. ...
分类:Web程序   时间:2020-06-29 15:21:04    阅读次数:65
[Functional Programming] Function modelling -- 8. Compose Functors
Path: Compose Functors -> Monad Transformers -> Free Monad Compose Functors: Let's say we have a Task holding a Either. And we want simply apply a .ma ...
分类:其他好文   时间:2020-06-29 15:05:19    阅读次数:52
bind
Function.prototype.myBind = function(obj,...rest){ let that = this let bound = function(...args){ let params = [...rest,...args] that.apply(this.const ...
分类:其他好文   时间:2020-06-29 13:22:51    阅读次数:128
网页LED——基于http
当终止服务器运行后,再次进行调试时,出现bind error: Address Already in use 在bind函数调用前添加,即可免去Linux下的TIME_WAIT的将近两分钟的等待时间 int on=1; setsockopt(sockfd,SOL_SOCKET,SO_REUSEADD ...
分类:Web程序   时间:2020-06-29 13:13:21    阅读次数:108
ruby rails中如何配置puma服务监听指定的IP地址
puma是rails默认的web服务,当使用rails server启动的时候,puma默认的监听地址是127.0.0.1:3000,此时的web服务只能在本机上访问。当然通过命令行我们可以很方便的改变默认设置,例如: rails s -b 0.0.0.0 -p 3003 这样就将默认端口改为了30 ...
分类:其他好文   时间:2020-06-29 11:55:41    阅读次数:72
linux 安装 禅道
Linux系统下禅道的安装以及配置教程 首先查看Linux安装的版本,64的还是32的!查看Linux版本:[root@localhost ~]# getconf LONG_BIT 1、Linux中可以用以下命令来下载安装包(官网找):64位下载:wget https://excellmedia.d ...
分类:系统相关   时间:2020-06-29 11:50:40    阅读次数:87
redis 6379端口telnet不通的解决办法
如果在其他主机telnet不通,或者不能访问,则首先看下防火墙是否开发了端口(访问地址:https://www.cnblogs.com/heqiuyong/p/10460150.html) 如果端口开发,但主机还是不能访问端口,则使用如下方法,ip引起的问题! 1.reids服务器的6379端口te ...
分类:Web程序   时间:2020-06-29 11:19:13    阅读次数:186
Kubernetes常用命令
1、kubectl api-versions 查询容器的版本情况 2、kubectl explain pod 解释用法命令方式查询 kubectl explain pod.apiVersion:查看具体某一个模板 3、通过创建的yaml格式,创建容器 kubectl apply -f pod.yam ...
分类:Web程序   时间:2020-06-29 09:38:22    阅读次数:87
18595条   上一页 1 ... 66 67 68 69 70 ... 1860 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!