码迷,mamicode.com
首页 >  
搜索关键字:example    ( 17798个结果
【leetcode】1461. Check If a String Contains All Binary Codes of Size K
题目如下: Given a binary string s and an integer k. Return True if every binary code of length k is a substring of s. Otherwise, return False. Example 1: ...
分类:其他好文   时间:2020-06-13 10:37:42    阅读次数:60
uglifyjs 合并压缩 js, clean-css 合并压缩css
本文主要介绍如何通过CLI命令行(也就是终端或者cmd打开的那个shell窗口)实现 js和 css 的合并压缩。 uglifyjs 合并压缩 js: 1.安装node 这一步就不多说了,下载node自行安装。 2.安装 uglifyjs 全局安装: npm install -g uglify-js ...
分类:Web程序   时间:2020-06-12 16:13:46    阅读次数:80
The Caddy Web Server 常见 Caddyfile 模式
Caddyfile 是 JSON 配置的易用写法,支持通常用的功能,完整功能还是需要 JSON 配置的。 以下适用于 Caddy2 版本的配置。 静态文件服务器 example.com root * /var/www file_server 通常第一行是站点地址,root 代表站点根路径,* 代表访 ...
分类:Web程序   时间:2020-06-12 14:34:56    阅读次数:205
Delete Directory Recursively
How to delete a directory recursively with all its subdirectories and files in Java In this short article, you’ll learn how to delete a directory recu ...
分类:其他好文   时间:2020-06-12 14:30:22    阅读次数:59
alert日志中出现Private Strand Flush Not Complete的处理方法
alert.log日志报了如下的错误: 1 Fri Oct 17 19:59:51 2014 2 Thread 1 cannot allocate new log, sequence 4722 3 Private strand flush not complete 4 Current log# 1 ...
分类:其他好文   时间:2020-06-11 21:59:44    阅读次数:55
hadoop安装教程
一、hadoop安装 1. 修改主机名和 IP 地址映射 sudo vi /etc/hostname #修改主机名(如,删掉原有内容,命名为 hadoop) ping hadoop #ping 通证明成功 2. 安装java sudo apt install openjdk-8-jdk-headle ...
分类:其他好文   时间:2020-06-11 21:50:24    阅读次数:78
A strategy to quantify embedding layer
A strategy to quantify embedding layer Basic idea Embedding is mainly in the process of word pre-training. Two embedding methods, word2vec and GloVe, ...
分类:其他好文   时间:2020-06-11 10:42:26    阅读次数:78
Git安装配置以及常用命令整理
学而时习之,不亦说乎 Ubuntu安装 sudo apt-get install git 配置 git config --global user.name "Your Name" git config --global user.email "email@example.com" 创建仓库(初始化) ...
分类:其他好文   时间:2020-06-11 00:50:23    阅读次数:56
spring security
spring security 在配置里处理好逻辑 security自带登录页面,如果没有配置的话会跳转到登录页面才能访问。 package com.example.security.config;import org.springframework.context.annotation.Confi ...
分类:编程语言   时间:2020-06-11 00:47:03    阅读次数:66
URLEncode 中对 空格的编码有 “+”和“%20”两种
URL中的空格有时候被编码成%20,有时候被编码成加号+,曾经迷糊过一段时间,后来查了下资料才搞明白。 一个URL的基本组成部分包括协议(scheme),域名,端口号,路径和查询字符串(路径参数和锚点标记就暂不考虑了)。路径和查询字符串之间用问号?分离。例如http://www.example.co ...
分类:Web程序   时间:2020-06-10 19:29:13    阅读次数:224
17798条   上一页 1 ... 43 44 45 46 47 ... 1780 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!