积分充值
 首页
前端开发
AngularDartElectronFlutterHTML/CSSJavaScriptReactSvelteTypeScriptVue.js构建工具
后端开发
.NetC#C++C语言DenoffmpegGoIdrisJavaJuliaKotlinLeanMakefilenimNode.jsPascalPHPPythonRISC-VRubyRustSwiftUML其它语言区块链开发测试微服务敏捷开发架构设计汇编语言
数据库
Apache DorisApache HBaseCassandraClickHouseFirebirdGreenplumMongoDBMySQLPieCloudDBPostgreSQLRedisSQLSQLiteTiDBVitess数据库中间件数据库工具数据库设计
系统运维
AndroidDevOpshttpdJenkinsLinuxPrometheusTraefikZabbix存储网络与安全
云计算&大数据
Apache APISIXApache FlinkApache KarafApache KyuubiApache OzonedaprDockerHadoopHarborIstioKubernetesOpenShiftPandasrancherRocketMQServerlessService MeshVirtualBoxVMWare云原生CNCF机器学习边缘计算
综合其他
BlenderGIMPKiCadKritaWeblate产品与服务人工智能亿图数据可视化版本控制笔试面试
文库资料
前端
AngularAnt DesignBabelBootstrapChart.jsCSS3EchartsElectronHighchartsHTML/CSSHTML5JavaScriptJerryScriptJestReactSassTypeScriptVue前端工具小程序
后端
.NETApacheC/C++C#CMakeCrystalDartDenoDjangoDubboErlangFastifyFlaskGinGoGoFrameGuzzleIrisJavaJuliaLispLLVMLuaMatplotlibMicronautnimNode.jsPerlPHPPythonQtRPCRubyRustR语言ScalaShellVlangwasmYewZephirZig算法
移动端
AndroidAPP工具FlutterFramework7HarmonyHippyIoniciOSkotlinNativeObject-CPWAReactSwiftuni-appWeex
数据库
ApacheArangoDBCassandraClickHouseCouchDBCrateDBDB2DocumentDBDorisDragonflyDBEdgeDBetcdFirebirdGaussDBGraphGreenPlumHStreamDBHugeGraphimmudbIndexedDBInfluxDBIoTDBKey-ValueKitDBLevelDBM3DBMatrixOneMilvusMongoDBMySQLNavicatNebulaNewSQLNoSQLOceanBaseOpenTSDBOracleOrientDBPostgreSQLPrestoDBQuestDBRedisRocksDBSequoiaDBServerSkytableSQLSQLiteTiDBTiKVTimescaleDBYugabyteDB关系型数据库数据库数据库ORM数据库中间件数据库工具时序数据库
云计算&大数据
ActiveMQAerakiAgentAlluxioAntreaApacheApache APISIXAPISIXBFEBitBookKeeperChaosChoerodonCiliumCloudStackConsulDaprDataEaseDC/OSDockerDrillDruidElasticJobElasticSearchEnvoyErdaFlinkFluentGrafanaHadoopHarborHelmHudiInLongKafkaKnativeKongKubeCubeKubeEdgeKubeflowKubeOperatorKubernetesKubeSphereKubeVelaKumaKylinLibcloudLinkerdLonghornMeiliSearchMeshNacosNATSOKDOpenOpenEBSOpenKruiseOpenPitrixOpenSearchOpenStackOpenTracingOzonePaddlePaddlePolicyPulsarPyTorchRainbondRancherRediSearchScikit-learnServerlessShardingSphereShenYuSparkStormSupersetXuperChainZadig云原生CNCF人工智能区块链数据挖掘机器学习深度学习算法工程边缘计算
UI&美工&设计
BlenderKritaSketchUI设计
网络&系统&运维
AnsibleApacheAWKCeleryCephCI/CDCurveDevOpsGoCDHAProxyIstioJenkinsJumpServerLinuxMacNginxOpenRestyPrometheusServertraefikTrafficUnixWindowsZabbixZipkin安全防护系统内核网络运维监控
综合其它
文章资讯
 上传文档  发布文章  登录账户
IT文库
  • 综合
  • 文档
  • 文章

无数据

分类

全部后端开发(83)Go(83)

语言

全部中文(简体)(45)英语(34)zh(3)中文(繁体)(1)

格式

全部PDF文档 PDF(74)PPT文档 PPT(5)其他文档 其他(4)
 
本次搜索耗时 0.202 秒,为您找到相关结果约 83 个.
  • 全部
  • 后端开发
  • Go
  • 全部
  • 中文(简体)
  • 英语
  • zh
  • 中文(繁体)
  • 全部
  • PDF文档 PDF
  • PPT文档 PPT
  • 其他文档 其他
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 The fuzzy tale of an x/crypto vulnerability

    The fuzzy tale of an x/crypto vulnerability Michael McLoughlin Gophercon 2019 Lightning Talks Uber Advanced Technologies Group 8,140 lines of amd64 assembly in crypto 10,474 lines of amd64 assembly assembly in golang.org/x/crypto Fuzzing Fuzzing is an automated testing technique for hardening safety-critical software Typically used where code must handle untrusted inputs or correctness is paramount: 0 }  crypto/aes (GCM mode)  crypto/elliptic (P256)  crypto/sha1  crypto/sha256  crypto/sha512  x/crypto/chacha20poly1305  x/crypto/sha3  x/crypto/blake2b  x/crypto/blake2s  x/crypto/argon2
    0 码力 | 74 页 | 2.99 MB | 1 年前
    3
  • pdf文档 Better x86 Assembly Generation with Go

    Better x86 Assembly Generation with Go Michael McLoughlin Gophercon 2019 Uber Advanced Technologies Group Assembly Language Go provides the ability to write functions in assembly language. Assembly Product SHA-1 Future Go Assembly Primer Hello, World! package add // Add x and y. func Add(x, y uint64) uint64 { return x + y } Go Disassembler The Go disassembler may be used to inspect generated ... add.go:5 0x2e7 488b442410 MOVQ 0x10(SP), AX add.go:5 0x2ec 488b4c2408 MOVQ 0x8(SP), CX add.go:5 0x2f1 4801c8 ADDQ CX, AX add.go:5 0x2f4 4889442418 MOVQ AX, 0x18(SP) add.go:5 0x2f9 c3 RET TEXT
    0 码力 | 155 页 | 13.54 MB | 1 年前
    3
  • pdf文档 Golang Manual By AstaXie-20120522

    distributions are available for the FreeBSD, Linux, Mac OS X (Snow Leopard/Lion), and Windows operating systems and the 32-bit (386) and 64-bit (amd64) x86 processor architectures. If a binary distribution /etc/profile (for a system-wide installation) or $HOME/.profile: export PATH=$PATH:/usr/local/go/bin Mac OS X Open the package file and follow the prompts to install the Go tools. The package installs the Go distribution convention is that the package name is the last element of the import path: the package imported as "crypto/rot13" should be named rot13. There is no requirement that package names be unique across all packages
    0 码力 | 6205 页 | 12.83 MB | 1 年前
    3
  • pdf文档 Build web application with Golang

    it will show you some useful system information. Find the line that says "system type" -if you see "x64-based PC" that means your operating system is 64-bit, 32-bit otherwise. I strongly recommend downloading system will show the following: x86_64 x86_64 x86_64 GNU/Linux // some machines such as Ubuntu 10.04 will show as following x86_64 GNU/Linux 32-bit operating systems instead show: $GOPATH/src/mymath/sqrt.go package mymath func Sqrt(x float64) float64 { z := 0.0 for i := 0; i < 1000; i++ { z -= (z*z - x) / (2 * x) } return z } Now my package directory
    0 码力 | 327 页 | 1.63 MB | 1 年前
    3
  • pdf文档 Go Web编程

    型”一行中,若显示“x64-based PC”,即为64位系统;若显示“X86-based PC”,则为32位系统。 Mac系统用户建议直接使用64位的,因为Go所支持的Mac OS X版本已经不支持纯32位处理器了。 8 Linux系统用户可通过在Terminal中执行命令uname -a来查看系统信息: 64位系统显示 <一段描述> x86_64 x86_64 x86_64 GNU/Linux GNU/Linux //有些机器显示如下,例如ubuntu10.04 x86_64 GNU/Linux 32位系统显示 <一段描述> i686 i686 i386 GNU/Linux Mac 安装 Mac 安装 访问下载地址,32位系统下载go1.0.3.darwin-386.pkg,64位系统下载go1.0.3.darwin-amd64.pkg,双击下载文件, 一路默认安装点击下一步 $GOPATH/src/mymath/sqrt.go源码如下: package mymath func Sqrt(x float64) float64 { z := 0.0 for i := 0; i < 1000; i++ { z -= (z*z - x) / (2 * x) } return z } ``` 这样我的应用包目录和代码已经新建完毕,注意:
    0 码力 | 295 页 | 5.91 MB | 1 年前
    3
  • mobi文档 Go 101 (Golang 101) v1.21.0

    consistent with the highest Go language version the release supports. For example, Go Toolchain 1.21.x supports all Go language versions from 1.0 to Go 1.21. The path to the bin subfolder in Go Toolchain StatRandomNumbers function. 34. x, y := StatRandomNumbers(num) 35. // Call two built-in functions (print and println). 36. print("Result: ", x, " + ", y, " = ", num, "? ") 37. println(x+y == num) 38. } Save line 19, x and y at line 34 are declared with the short variable declaration form. We have specified the type for variables a and b as int. Go compiler will deduce that the types of i, num, x and y are
    0 码力 | 610 页 | 945.17 KB | 1 年前
    3
  • epub文档 Go 101 (Golang 101) v1.21.0

    consistent with the highest Go language version the release supports. For example, Go Toolchain 1.21.x supports all Go language versions from 1.0 to Go 1.21. The path to the bin subfolder in Go Toolchain function. 34 | x, y := StatRandomNumbers(num) 35 | // Call two built-in functions (print and println). 36 | print("Result: ", x, " + ", y, " = ", num, "? ") 37 | println(x+y == num) 38 line 19, x and y at line 34 are declared with the short variable declaration form. We have specified the type for variables a and b as int. Go compiler will deduce that the types of i, num, x and y are
    0 码力 | 880 页 | 833.34 KB | 1 年前
    3
  • pdf文档 Go 101 (Golang 101) v1.21.0

    consistent with the highest Go language version the release supports. For example, Go Toolchain 1.21.x supports all Go language versions from 1.0 to Go 1.21. The path to the bin subfolder in Go Toolchain function. 34| x, y := StatRandomNumbers(num) 35| // Call two built-in functions (print and println). 36| print("Result: ", x, " + ", y, " = ", num, "? ") 37| println(x+y == num) 38| } line 19, x and y at line 34 are declared with the short variable declaration form. We have specified the type for variables a and b as int. Go compiler will deduce that the types of i, num, x and y are
    0 码力 | 630 页 | 3.77 MB | 1 年前
    3
  • pdf文档 Casdoor · An Open Source UI-first Identity Access Management (IAM) / Single-Sign-On (SSO) platform supporting OAuth 2.0, OIDC, SAML and CAS

    supported. En Envir vironment onment • Go 1.17+ • Node.js LTS (18) • Yarn 1.x INFO INFO We strongly suggest using Yarn 1.x to run and build Casdoor frontend. Using NPM might cause UI styling issues account: built-in/admin docker run \ -e driverName=mysql \ -e dataSourceName='user:password@tcp(x.x.x.x:3306)/' \ -p 8000:8000 \ casbin/casdoor:latest docker run -p 8000:8000 -v /folder/of/app.conf:/conf // Example for macOS out/ ├── out/make/zip/darwin/x64/casdoor-electron-example-darwin-x64-1.0.0.zip ├── ... └── out/casdoor-electron-example-darwin-x64/casdoor-electron-example.app/Contents/MacOS/casd
    0 码力 | 825 页 | 58.31 MB | 1 年前
    3
  • pdf文档 The Go Programming Language (Otc 30, 2009)

    Lightweight type system. No implicit conversions: keep things explicit. Untyped unsized constants: no more 0x80ULL. Strict separation of interface and implementation. Run-time: Garbage collection. Strings, maps November 2, 2009 Basics const N = 1024 // just a number const str = “this is a 日本語 string\n” var x, y *float var ch = '\u1234' /* Define and use a type, T. */ type T struct { a, b int } var t0 *T = { X, Y float // Upper case means exported } func (p *Point) Scale(s float) { p.X *= s; p.Y *= s; // p is explicit } func (p *Point) Abs() float { return math.Sqrt(p.X*p.X + p.Y*p.Y) } x := &Point{
    0 码力 | 47 页 | 241.70 KB | 1 年前
    3
共 83 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 9
前往
页
相关搜索词
x/cryptoGoAssemblyGolangManualByAstaXie20120522BuildwebapplicationwithWeb编程101v121.0CasdoorAnOpenSourceUIfirstIdentityAccessManagementIAMSingleSignOnSSOplatformsupportingOAuth2.0OIDCSAMLandCASTheProgrammingLanguage
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩