联合开发网   搜索   要求与建议
                登陆    注册
排序按匹配   按投票   按下载次数   按上传日期
按分类查找All 其他(35) 
按平台查找All GO(35) 

[其他] sdcore-adapter

适配器,用于从以太网配置接收gNMI消息并配置sd核心组件,例如SPGW
Adapter for receiving gNMI messages from aether-config and configuring sd-core components, e.g. SPGW (2024-05-17, GO, 0KB, 下载0次)

http://www.pudn.com/Download/item/id/1716125753376769.html

[其他] go-swpx

一个基于插件的go应用程序,旨在以快速和分布式的方式简化与网元的对话。
A plugin based go application built with the purpose to simplify talking to network elements in a fast and distributed way. (2024-04-25, GO, 0KB, 下载0次)

http://www.pudn.com/Download/item/id/1714071171526992.html

[其他] edge-tts-go

基于微软 edge 浏览器的大声朗读接口,开发的TTS 文字转语音 Golang 工具,包含晓晓、云扬、云希等“网红主播”
Based on the loud reading interface of Microsoft edge browser, the TTS text to speech Golang tool developed includes "Internet celebrity anchors" such as Xiaoxiao, Yunyang, Yunxi, etc (2024-04-19, GO, 0KB, 下载0次)

http://www.pudn.com/Download/item/id/1713570770338419.html

[其他] GoLang_car_management

该项目演示了如何使用GoFr框架构建简单的HTTPAPI。GoFr是一种轻量级、灵活的围棋网...
This project serves as a demonstration of building a simple HTTP API using the GoFr framework. GoFr is a lightweight and flexible Go web framework that enables developers to build robust and scalable web applications. The main features showcased in this project include CRUD (Create, Read, Update, Delete) operations and database . (2023-12-17, GO, 0KB, 下载0次)

http://www.pudn.com/Download/item/id/1702839411109905.html

[其他] metamodel-polyglot

在Go、Js和Lua中构建petri网
Build petri-nets in Go, Js and Lua (2023-12-16, GO, 0KB, 下载0次)

http://www.pudn.com/Download/item/id/1702762874263007.html

[其他] hydra

没什么用,外网扫描出来的概率太小了,得不偿失,先分出来,后续再看看加不加入吧
It s of no use. The probability of being scanned by the Internet is too small. It s not worth the loss. First, let s divide it out, and then see if we can add it later (2023-06-01, GO, 0KB, 下载0次)

http://www.pudn.com/Download/item/id/1700790133843635.html

[其他] libnasp

Nasp是一个轻量级库,用于将服务网格功能扩展到非云环境
Nasp is a lightweight library to expand service mesh capabilities to non-cloud environments (2023-10-25, GO, 0KB, 下载0次)

http://www.pudn.com/Download/item/id/1700281326759251.html

[其他] MusicDownloader

它是一个从网易云下载.mp3等音乐文件的工具
It is a tool to download the music files such as .mp3 from netease cloud (2017-08-21, GO, 0KB, 下载0次)

http://www.pudn.com/Download/item/id/1700281223682763.html

[其他] NeteaseCloudMusicFlac

根据网易云音乐的歌单, 下载flac无损音乐到本地.。
Download flac lossless music locally according to the song list of Netease Cloud Music. (2018-12-01, GO, 0KB, 下载0次)

http://www.pudn.com/Download/item/id/1700281046780433.html

[其他] tikuAdapter

大学生网课题库接口适配器:将不同的题库整合为一个API接口。
Interface adapter of online course question bank for college students: integrate different question banks into one API interface. (2023-11-05, GO, 0KB, 下载0次)

http://www.pudn.com/Download/item/id/1699294462713202.html

[其他] myblog_article_code

Go语言中文网博客中文章实例的源代码
Source code of article instance in Go language Chinese website blog (2017-10-24, GO, 0KB, 下载0次)

http://www.pudn.com/Download/item/id/1698593450958179.html

[其他] wgmesh

使用wireguard和serf.io自动构建专用网状网络,
Automatically build private mesh networks using wireguard and serf.io, (2021-04-11, GO, 0KB, 下载0次)

http://www.pudn.com/Download/item/id/1696778766838405.html

[其他] lekima

网易云音乐为VIMer,以台风lekima.命名。,
netease cloud music for VIMer, named after the typhoon, lekima., (2022-12-02, GO, 0KB, 下载0次)

http://www.pudn.com/Download/item/id/1689364629665419.html

[其他] ndn-dpdk

NDN-DPDK:高速命名数据网络转发器,
NDN-DPDK: High-Speed Named Data Networking Forwarder, (2023-06-06, GO, 0KB, 下载0次)

http://www.pudn.com/Download/item/id/1688759060944674.html

[其他] go

三天学会,五天精通,Go的语法接近C语言,但对于变量的声明有所不同。Go支持垃圾回收功能。Go的并行模型是以东尼·霍尔的通信顺序进程(CSP)为基础,采取类似模型的其他语言包括Occam和Limbo,但它也具有Pi运算的特征,比如通道传输。在1.8版本中开放插件(Plugin)的支持,这意味着现在能从Go中动态加载部分函数。 与C++相比,Go并不包括如枚举、异常处理、继承、泛型、断言、虚函数等功能,但增加了 切片(Slice) 型、并发、管道、垃圾回收、接口(Interface)等特性的语言级支持。Go 2.0版本将支持泛型,对于断言的存在,则持负面态度,同时也为自己不提供类型继承来辩护。 不同于Java,Go内嵌了关联数组(也称为哈希表(Hashes)或字典(Dictionaries)),就像字符串类型一样。
The syntax of go is close to C language, but the declaration of variables is different. Go supports garbage collection. Go's parallel model is based on Tony Hall's communication sequential process (CSP), which adopts other languages similar to the model, including Occam and limbo, but it also has the characteristics of PI operation, such as channel transmission. In version 1.8, plug-in support was opened, which means that some functions can now be loaded dynamically from go. Compared with C + +, go does not include functions such as enumeration, exception handling, inheritance, generics, assertion and virtual functions, but adds language level support for slice, concurrency, pipeline, garbage collection, interface and other features. Go 2.0 will support generics, take a negative attitude towards the existence of assertions, and defend itself against providing type inheritance. Unlike Java, go embeds associative arrays (also known as hashes or dictionaries), just like string types. (2020-11-25, GO, 20021KB, 下载0次)

http://www.pudn.com/Download/item/id/1606275801813056.html
12
总计:35