积分充值
 首页
前端开发
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文库
  • 综合
  • 文档
  • 文章

无数据

分类

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

语言

全部中文(简体)(42)英语(31)zh(1)中文(繁体)(1)

格式

全部PDF文档 PDF(68)其他文档 其他(4)PPT文档 PPT(3)
 
本次搜索耗时 0.076 秒,为您找到相关结果约 75 个.
  • 全部
  • 后端开发
  • Go
  • 全部
  • 中文(简体)
  • 英语
  • zh
  • 中文(繁体)
  • 全部
  • PDF文档 PDF
  • 其他文档 其他
  • PPT文档 PPT
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 Casdoor · An Open Source UI-first Identity Access Management (IAM) / Single-Sign-On (SSO) platform supporting

    Ov Over erview view Casdoor is a UI-first Identity Access Management (IAM) / Single-Sign-On (SSO) platform based on OAuth 2.0, OIDC, SAML, and CAS. Casdoor serves both the web UI and the login requests separate architecture, developed by Golang. It supports high concurrency, provides a web-based UI for management, and supports localization in 10+ languages. 2. Casdoor supports third-party application login and it supports extending third-party login with plugins. 3. Casdoor supports authorization management based on Casbin. It supports ACL, RBAC, ABAC, and RESTful access control models. 4. Casdoor provides
    0 码力 | 825 页 | 58.31 MB | 1 年前
    3
  • pdf文档 Build web application with Golang

    knowledge Hello, Go Go foundation Control statements and functions struct Object-oriented interface Concurrency Summary Web foundation Web working principles Build a simple web server How Go inputs Cross site scripting Duplicate submissions File upload Summary Database database/sql interface How to use MySQL How to use SQLite How to use PostgreSQL How to use beedb ORM NOSQL Summary defaults to $HOME/go on Unix and %USERPROFILE%/go on Windows. Homebrew Homebrew is a software management tool commonly used in Mac to manage packages. Just type the following commands to install Go.
    0 码力 | 327 页 | 1.63 MB | 1 年前
    3
  • pdf文档 Real World Go

    Interfaces specify behaviors. An interface type defines a set of methods: type Abser interface { Abs() float64 } A type that implements those methods implements the interface: func PrintAbs(a Abser) Confidential Interfaces in practice From the io package in the standard library: type Writer interface { Write(p []byte) (n int, err os.Error) } There are many Writer implementations throughout all communicating via channels. – The http and websocket libraries made it easy to write a management UI. • Onward and upward – Beta product now running in multiple call centers. – Predictive dialer
    0 码力 | 49 页 | 595.19 KB | 1 年前
    3
  • pdf文档 The Way To Go - 2012

    .........263 11.1 What is an interface? ...........................................................................................263 11.2 Interface embedding interface(s) .......................... .............................................270 11.3 How to detect and convert the type of an interface variable: type assertions ........270 11.4 The type switch .................................... .....................................................273 11.5 Testing if a value implements an interface ............................................................274 11.6 Using method sets with interfaces
    0 码力 | 629 页 | 4.85 MB | 1 年前
    3
  • mobi文档 Go 101 (Golang 101) v1.21.0

    memory leaking. 4. Views interface values as boxes for wrapping non-interface values. I found thinking interface values as value boxes is very helpful to clear many interface related confusions. 5. Clarifies noticeable lags caused by garbage collecting is a common criticism for languages with automatic memory management. But since Go 1.8, improvements made for the concurrent garbage collection implementation in gc is highly recommended to let your Go projects support the Go modules feature to ease dependency management. For projects supporting Go modules, the go mod init example.com/myproject command is used to
    0 码力 | 610 页 | 945.17 KB | 1 年前
    3
  • epub文档 Go 101 (Golang 101) v1.21.0

    memory leaking. 4. Views interface values as boxes for wrapping non-interface values. I found thinking interface values as value boxes is very helpful to clear many interface related confusions. 5. Clarifies noticeable lags caused by garbage collecting is a common criticism for languages with automatic memory management. But since Go 1.8, improvements made for the concurrent garbage collection implementation in gc is highly recommended to let your Go projects support the Go modules feature to ease dependency management. For projects supporting Go modules, the go mod init example.com/myproject command is used to
    0 码力 | 880 页 | 833.34 KB | 1 年前
    3
  • pdf文档 Go 101 (Golang 101) v1.21.0

    memory leaking. 4. Views interface values as boxes for wrapping non-interface values. I found thinking interface values as value boxes is very helpful to clear many interface related confusions. 5. Clarifies noticeable lags caused by garbage collecting is a common criticism for languages with automatic memory management. But since Go 1.8, improvements made for the concurrent garbage collection implementation in gc is highly recommended to let your Go projects support the Go modules feature to ease dependency management. For projects supporting Go modules, the go mod init example.com/myproject command is used to
    0 码力 | 630 页 | 3.77 MB | 1 年前
    3
  • pdf文档 The Go Programming Language (Otc 30, 2009)

    conversions: keep things explicit. Untyped unsized constants: no more 0x80ULL. Strict separation of interface and implementation. Run-time: Garbage collection. Strings, maps, communication channels. Concurrency (goroutines) with support from the language and run-time. Language takes care of goroutine management, memory management. Growing stacks, multiplexing of goroutines onto threads is done automatically. Concurrency Println(5*HOUR/2); } // Output (two lines) EST +2:30 Monday, November 2, 2009 Interfaces type Magnitude interface { Abs() float; // among other things } var m Magnitude; m = x; // x is type *Point, has method
    0 码力 | 47 页 | 241.70 KB | 1 年前
    3
  • pdf文档 The Expressiveness of Go

    18, 2010 Interfaces 23 Interfaces are just sets of methods; work for any type. type Abser interface { Abs() float } var a Abser a = Point{3, 4} print(a.Abs()) a = Vector{1, 2, 3, 4} structs define data - interfaces define behavior As with methods, now anything can satisfy an interface. type Value float // basic type func (v Value) Abs() float { if v < 0 { v = -v } return 25 Point and Vector satisfied Abser implicitly; other types might too. A type satisfies an interface simply by implementing its methods. There is no "implements" declaration; interfaces are satisfied
    0 码力 | 49 页 | 839.26 KB | 1 年前
    3
  • pdf文档 The Go Handbook

    meant to be a replacement for C and C++ codebases some things simpler, like concurrency or memory management, with garbage collection. Also, it was built to work along with C and C++ codebases, thanks to func (p *Person) Speak() { fmt.Println("Hello from " + p.Name) } 22. Interfaces An interface is a type that defines one or more method signatures. Methods are not implemented, just their signature: Something like this: type Speaker interface { Speak() } Now you could have a function accept any type that implements all the methods defined by the interface: func SaySomething(s Speaker) {
    0 码力 | 44 页 | 4.30 MB | 1 年前
    3
共 75 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 8
前往
页
相关搜索词
CasdoorAnOpenSourceUIfirstIdentityAccessManagementIAMSingleSignOnSSOplatformsupportingOAuth2.0OIDCSAMLandCASBuildwebapplicationwithGolangRealWorldGoTheWayTo2012101v121.0ProgrammingLanguageExpressivenessofHandbook
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩