2.2.1 深入Go Module## GCN ## 深入Go Module  鸟窝 细节、使用、坑以及未来 ## 鸟窝 • Go微服务框架rpcx作者 • Go并发编程实战课专栏作者 《Scala集合技术手册》作者  Go 版本管理历史 01 认识 Go Module 02 使用 Go Module 03 血泪史 04 Go Module 未来特性 05 ## 第一部分 ## Go版本管理历史 ## Go版本历史  login guest password 123456 ## Git over SSH go get 默认不会使用 SSH 协议 除非动态获取 meta 时明确指定使用 SSH 协议 // module: example.com/pkg repo: gitlab.example.com/example/pkg 0 码力 | 28 页 | 12.85 MB | 2 年前3
深度学习与PyTorch入门实战 - 43. nn.Module## PyTorch ### nn.Module 主讲人:龙良曲 ## ☐ ☐ ☐ class MyLinear(nn.Module): def __init__(self, inp, outp): super(MyLinear, self).__init__() # requires_grad = True self.w = nn.Parameter(torch.randn(outp + self.b return x ## Magic ### ■ Every Layer is nn.Module - nn.Linear - nn.BatchNorm2d - nn.Conv2d #### - nn.Module nested in nn.Module ### 1. embed current layers Linear ReLU Sigmoid Conv2d BasicNet(nn.Module): def __init__(self): super(BasicNet, self).__init__() self.net = nn.Linear(4, 3) def forward(self, x): return self.net(x) class Net(nn.Module): def0 码力 | 16 页 | 1.14 MB | 2 年前3
PyWebIO v1.5.1 DocumentationDoc • Server-Client communication protocol Command o Event ## I ndices and tables • Index • Module Index • Search Page ## Discussion and support - Need help when use PyWebIO? Make a new discussion code online and see what happens. ## I nput The input functions are defined in the pywebio.input module and can be imported using from pywebio.input import *. When calling the input function, an input provide the name parameter. ## Output The output functions are all defined in the pywebio.output module and can be imported using from pywebio.output import *. When output functions are called, the content0 码力 | 144 页 | 7.46 MB | 2 年前3
PyWebIO v1.7.1 DocumentationDoc • Server-Client communication protocol Command o Event ## I ndices and tables • Index • Module Index • Search Page ## Discussion and support - Need help when use PyWebIO? Make a new discussion code online and see what happens. ## I nput The input functions are defined in the pywebio.input module and can be imported using from pywebio.input import *. When calling the input function, an input provide the name parameter. ## Output The output functions are all defined in the pywebio.output module and can be imported using from pywebio.output import *. When output functions are called, the content0 码力 | 152 页 | 7.47 MB | 2 年前3
Scrapy 0.14 Documentationfeatures . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 161 Python Module Index 165 ii Scrapy Documentation, Release 0.14.4 This documentation contains everything you need These are basically: • scrapy.cfg: the project configuration file • tutorial/: the project’s python module, you’ll later import your code from here. • tutorial/items.py: the project’s items file. • tutorial/pipelines cfg file resides is known as the project root directory. That file contains the name of the python module that defines the project settings. Here is an example: [settings] default = myproject.settings 30 码力 | 179 页 | 861.70 KB | 2 年前3
Develop in Swiftprojects. The Develop in Swift Explorations course provides everything they'll need to complete each module. The first few app projects require no prior knowledge; projects then begin to increase in difficulty concurrently with another module or as a standalone challenge. Module 1: PhotoFrame App Module 2: QuestionBot App Module 3: ColorMix App Module 4: ElementQuiz App Module 5: App Design Challenge Develop Modules Module 1: PhotoFrame App Module 2: QuestionBot App Module 3: ColorMix App Module 4: ElementQuiz App Module 5: App Design Challenge PhotoFrame App Module 1 ## PhotoFrame App Module 1 Overview0 码力 | 39 页 | 17.53 MB | 2 年前3
《玩转webpack》第七章 原理篇: 编写 Loader 和插件loader 代码结构 定义:loader 只是一个导出为函数的 JavaScript 模块 module.exports = function(source) { return source; }; ## 多 Loader 时的执行顺序 顺序从后到前 多个 Loader 串行执行 module.exports = { entry: './src/index.js' filename: 'bundle.js', path: path.resolve(__తిరిపు_name, 'dist') }, + module: { + rules: [ + { + test: ^.less$/ + use: [ hsf{args})); $$ ## 通过一个例子验证 loader 的执行顺序 module.exports = function(source) { console.log('loader a is executed'); return source; }; module.exports = function(source) { console.log('loader0 码力 | 29 页 | 4.37 MB | 2 年前3
Angular核心特性
大漠穷秋 2017-05-13Angular核心特性 大漠穷秋 2017-05-13 ## 内容提纲 ➢ 第一块内容:集成开发环境@angular/cli ➢ 第二块内容:Angular三大核心概念 Component,Module,Route ➢ 第三块内容:Angular架构特色 依赖注入、数据绑定 第四块内容:UI库 Angular-Material, Prime-NG, ng2-bootstrap, ionic Angular最核心的3个概念 Component  Module Route Angular最核心的概念是“组件化” ## 第一个核心概念:Component 












