跨平台桌⾯应⽤框架:Electron1 1.7.5.2 1.8 1.8.1 1.8.2 ⽬录 前⾔ Electron简介 应⽤举例 安装 基本使⽤ 打包和部署 python⽀持 ⼼得 开发 Web技术 Log⽇志 打包 制作app的Logo asar files electron-builder electron-rebuild 不同系统 Win Mac 不同语⾔ Python ron;以及如何快速上⼿使⽤;以及如何打包和部署; 专⻔整理了如何让Electron⽀持Python以及其后的相关⼼得;总结了Electron的各种开发经验和⼼得, ⽐如开发⽅⾯的Web技术、Log⽇志等;打包⽅⾯的如何制作app的logo、asar加密压缩、files参数、 打包⼯具electron-builder、编译⼯具electron-rebuild等,以及常⻅的系统如Windows和Mac系统中常⻅ **/{appveyor.yml,.travis.yml,circle.yml}",, "!**/{npm-debug.log,yarn.lock,.yarn-integrity,.yarn-metadata.json}" "!**/{npm-debug.log,yarn.lock,.yarn-integrity,.yarn-metadata.json}",, "0 码力 | 123 页 | 21.81 MB | 1 年前3
 阮一峰 《ECMAScript 6入门》 第三版Calc { constructor() { console.log('Calc constructor'); } add(a, b) { return a + b; } } var c = new Calc(); console.log(c.add(4,5)); ECMAScript 6简介 Calc() { console.log('Calc constructor'); }; ($traceurRuntime.createClass)(Calc, {add: function(a, b) { return a + b; }}, {}); var c = new Calc(); console.log(c.add(4, 5)); return 声明的变量只在它所在的代码块有效。 for 循环的计数器,就很合适使用 let 命令。 for (let i = 0; i < 10; i++) { // ... } console.log(i); // ReferenceError: i is not defined 上面代码中,计数器 i 只在 for 循环体内有效,在循环体外引用就会报错。 下面的代码如果使用 var0 码力 | 679 页 | 2.66 MB | 1 年前3
 [试读]15天学会JavaScript - 第 2 章
ECMAScript语法基础 type="text/javascript"> 02 var i = 1; 03 var j = 2; 04 var s = i + j; 05 console.log("s = " + s); 06 关于【代码 2-1】的分析如下: 第 02~03 行代码通过“var”关键字分别定义了两个变量(i 和 j),并进行了初始化赋值 行代码通过“var”关键字定义了一个变量表达式(var s = i + j;),而表达式中的变 量“i”和“j”正是第 02~03 行代码中定义的,表达式运算的结果则会保存在变量“s”中; 第 05 行代码通过 console.log()函数向浏览器控制台输出调试信息(表达式变量“s”的运 算结果)。 运行测试【代码 2-1】所指定的 HTML 页面,并使用浏览器控制台查看调试信息,页面效 果如图 2.1 所示。在浏览器控制台中输出了【代码 i = 1, s = "EcmaScript"; 03 console.log("i : " + i); 04 console.log("s : " + s); 05 i = s; 06 s = 1; 07 console.log("i = " + i); 08 console.log("s = " + s); 09 关于【代码 2-2】的分析如下:0 码力 | 52 页 | 3.83 MB | 1 年前3
 OpenShift Container Platform 4.8 日志记录OpenShift Logging 程序错误修复 5.4.9 。 1.1.1. 程序错误修复 在此次更新之前,Fluentd 收集器会警告未使用的配置参数。在这个版本中,删除了这些配置参 数及其警告信息。(LOG-3074) 在此次更新之前,Kibana 有一个固定的 24h OAuth cookie 过期时间,当 accessTokenInactivityTimeout 字段被设置为小于 24h 的值时,会导致 的值时,会导致 Kibana 中的 401 错误。 在这个版本中,Kibana 的 OAuth cookie 过期时间与 accessTokenInactivityTimeout 同步,默 认值为 24h。(LOG-3306) 1.1.2. CVE CVE-2016-3709 CVE-2020-35525 CVE-2020-35527 CVE-2020-36516 CVE-2020-36558 CVE-2021-3640 平台轮转日志文件,且不会读取日志消息。 在这个版本中,通过设置上游开发团队所推荐的配置参数修正。(LOG-2792) 在此次更新之前,当 ClusterLogForwarder 自定义资源定义了 JSON 解析时,每个 rollover 任 务都会创建空索引。在这个版本中,新的索引不为空。(LOG-2823) 在此次更新之前,如果您删除了 Kibana 自定义资源,OpenShift Container0 码力 | 223 页 | 2.28 MB | 1 年前3
 httpd 2.4.25 中文文档"/server-status"> SetHandler server-status Require 127.0.0.1 access.log - GET /server-status 403 127.0.0.1 error.log - AH01797: client denied by server configuration: /var/www/html/server-status SetHandler server-status Order deny,allow Deny from all Allow From 127.0.0.1 access.log - GET /server-status 200 127.0.0.1 So even if mixing configuration is still possible, please try to configured per module and per directory. New levels trace1 to trace8 have been added above the debug log level. Per-request configuration sections, , and sections can be used to set 0 码力 | 2573 页 | 2.12 MB | 1 年前3
 httpd 2.4.23 中文文档"/server-status"> SetHandler server-status Require 127.0.0.1 access.log - GET /server-status 403 127.0.0.1 error.log - AH01797: client denied by server configuration: /var/www/html/server-status SetHandler server-status Order deny,allow Deny from all Allow From 127.0.0.1 access.log - GET /server-status 200 127.0.0.1 So even if mixing configuration is still possible, please try to configured per module and per directory. New levels trace1 to trace8 have been added above the debug log level. Per-request configuration sections, , and sections can be used to set 0 码力 | 2559 页 | 2.11 MB | 1 年前3
 httpd 2.4.20 中文文档configured per module and per directory. New levels trace1 to trace8 have been added above the debug log level. Per-request configuration sections, , and sections can be used to set Lua language into httpd, for configuration and small business logic functions. (Experimental) mod_log_debug Allows the addition of customizable debug logging at different phases of the request processing a stateful firewall drops idle connections to the LDAP server. mod_ldap adds LDAPLibraryDebug to log debug information provided by the used LDAP toolkit. mod_info mod_info can now dump the pre-parsed 0 码力 | 2533 页 | 2.09 MB | 1 年前3
 httpd 2.4.12 中文文档configured per module and per directory. New levels trace1 to trace8 have been added above the debug log level. Per-request configuration sections, , and sections can be used to set Lua language into httpd, for configuration and small business logic functions. (Experimental) mod_log_debug Allows the addition of customizable debug logging at different phases of the request processing where a stateful firewall drops idle connections to the LDAP server. mod_ldap adds LDAPLibraryDebug to log debug information provided by the used LDAP toolkit. mod_info mod_info can now dump the pre-parsed 0 码力 | 2426 页 | 1.86 MB | 1 年前3
 httpd 2.4.16 中文文档configured per module and per directory. New levels trace1 to trace8 have been added above the debug log level. Per-request configuration sections, , and sections can be used to set Lua language into httpd, for configuration and small business logic functions. (Experimental) mod_log_debug Allows the addition of customizable debug logging at different phases of the request processing a stateful firewall drops idle connections to the LDAP server. mod_ldap adds LDAPLibraryDebug to log debug information provided by the used LDAP toolkit. mod_info mod_info can now dump the pre-parsed 0 码力 | 2438 页 | 1.87 MB | 1 年前3
 httpd 2.4.17 中文文档configured per module and per directory. New levels trace1 to trace8 have been added above the debug log level. Per-request configuration sections, , and sections can be used to set Lua language into httpd, for configuration and small business logic functions. (Experimental) mod_log_debug Allows the addition of customizable debug logging at different phases of the request processing a stateful firewall drops idle connections to the LDAP server. mod_ldap adds LDAPLibraryDebug to log debug information provided by the used LDAP toolkit. mod_info mod_info can now dump the pre-parsed 0 码力 | 2455 页 | 1.88 MB | 1 年前3
共 637 条
- 1
 - 2
 - 3
 - 4
 - 5
 - 6
 - 64
 













