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

无数据

分类

全部后端开发(381)Python(236)综合其他(180)Weblate(153)Java(61)Spring(61)Django(45)PyWebIO(43)区块链(32)Jupyter(31)

语言

全部英语(508)中文(简体)(116)法语(1)日语(1)韩语(1)英语(1)

格式

全部其他文档 其他(628)
 
本次搜索耗时 0.135 秒,为您找到相关结果约 628 个.
  • 全部
  • 后端开发
  • Python
  • 综合其他
  • Weblate
  • Java
  • Spring
  • Django
  • PyWebIO
  • 区块链
  • Jupyter
  • 全部
  • 英语
  • 中文(简体)
  • 法语
  • 日语
  • 韩语
  • 英语
  • 全部
  • 其他文档 其他
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • epub文档 Cilium v1.6 Documentation

    Cilium? Cilium is open source software for transparently securing the network connectivity between application services deployed using Linux container management platforms like Docker and Kubernetes. At the the Linux kernel, Cilium security policies can be applied and updated without any changes to the application code or container configuration. Why Cilium? The development of modern datacenter applications shifted to a service-oriented architecture often referred to as microservices, wherein a large application is split into small independent services that communicate with each other via APIs using lightweight
    0 码力 | 734 页 | 11.45 MB | 1 年前
    3
  • mobi文档 Go 101 (Golang 101) v1.21.0

    values n memory are implementation-specific. Generally, The size of int and uint values are 4 on 32-bit architectures, and 8 on 64- bit architectures. The size of uintptr value must be large enough to OSes, but invalid on 32- bit OSes. For each uint value has only 32 bits on 32-bit OSes. (1 << 64) - 1 is not representable as 32-bit values. (Here, << is bitwise-left-shift operator.) const MaxUint uint = similar method can be used to get the number of bits of a native word, and check the current OS is 32-bit or 64-bit. // NativeWordBits is 64 or 32. const NativeWordBits = 32 << (^uint(0) >> 63) const Is64bitOS
    0 码力 | 610 页 | 945.17 KB | 1 年前
    3
  • epub文档 Go 101 (Golang 101) v1.21.0

    values n memory are implementation-specific. Generally, The size of int and uint values are 4 on 32-bit architectures, and 8 on 64-bit architectures. The size of uintptr value must be large enough to OSes, but invalid on 32- bit OSes. For each uint value has only 32 bits on 32-bit OSes. (1 << 64) - 1 is not representable as 32-bit values. (Here, << is bitwise-left-shift operator.) 1| const MaxUint uint similar method can be used to get the number of bits of a native word, and check the current OS is 32-bit or 64-bit. 1| // NativeWordBits is 64 or 32. 2| const NativeWordBits = 32 << (^uint(0) >> 63)
    0 码力 | 880 页 | 833.34 KB | 1 年前
    3
  • epub文档 PyArmor Documentation v6.2.7

    information of one obfuscated package How to protect data files Examples Obfuscating and Packing PyQt Application Running obfuscated Django site with Apache and mod_wsgi Using Project Managing Obfuscated Scripts dist/license.lic The special key 1 means current Python interpreter. Note Do not use this feature in 32-bit Windows, because the bind key is different in different machine, it may be changed even if python build_data_module.py data.txt > data.py Examples Here are some examples. Obfuscating and Packing PyQt Application There is a tool easy-han based on PyQt. Here list the main files: config.json main.py ui_main
    0 码力 | 159 页 | 123.91 KB | 1 年前
    3
  • epub文档 PyArmor Documentation v6.3.1

    information of one obfuscated package How to protect data files Examples Obfuscating and Packing PyQt Application Running obfuscated Django site with Apache and mod_wsgi Using Project Managing Obfuscated Scripts dist/license.lic The special key 1 means current Python interpreter. Note Do not use this feature in 32-bit Windows, because the bind key is different in different machine, it may be changed even if python build_data_module.py data.txt > data.py Examples Here are some examples. Obfuscating and Packing PyQt Application There is a tool easy-han based on PyQt. Here list the main files: config.json main.py ui_main
    0 码力 | 161 页 | 124.89 KB | 1 年前
    3
  • mobi文档 Computer Programming with the Nim Programming Language

    "Learning by doing" is not bad. However, in computer science, starting with a larger example application can be overwhelming, as you have to learn a lot of things simultaneously. It may work for you only examples in which you may not be really interested: Of course, we can create a simple chat application, a simple Twitter clone, and do some basic web scraping using async/await. Or create a basic development of web-based software using the Nim programming language, including a simple chat application and the foundation of a microblogging and social networking service. You may also consult the
    0 码力 | 865 页 | 7.45 MB | 1 年前
    3
  • epub文档 Computer Programming with the Nim Programming Language

    "Learning by doing" is not bad. However, in computer science, starting with a larger example application can be overwhelming, as you have to learn a lot of things simultaneously. It may work for you only examples in which you may not be really interested: Of course, we can create a simple chat application, a simple Twitter clone, and do some basic web scraping using async/await. Or create a basic development of web-based software using the Nim programming language, including a simple chat application and the foundation of a microblogging and social networking service. You may also consult the
    0 码力 | 784 页 | 2.13 MB | 1 年前
    3
  • epub文档 Cilium v1.7 Documentation

    Cilium? Cilium is open source software for transparently securing the network connectivity between application services deployed using Linux container management platforms like Docker and Kubernetes. At the the Linux kernel, Cilium security policies can be applied and updated without any changes to the application code or container configuration. Why Cilium? The development of modern datacenter applications shifted to a service-oriented architecture often referred to as microservices, wherein a large application is split into small independent services that communicate with each other via APIs using lightweight
    0 码力 | 885 页 | 12.41 MB | 1 年前
    3
  • epub文档 Cilium v1.5 Documentation

    kube-system You should see that nodes are in Ready state and Cilium pods are in Running state Demo Application Follow this link [h�ps://cilium.readthedocs.io/en/stable/ge�ngstarted/minikube/#step-2- deplo Using Minikube as the simplest way to set up a Kubernetes cluster with Cilium. Deploy the Demo Application Now that we have Cilium deployed and kube-dns opera�ng correctly we can deploy our demo applica�on Using Minikube as the simplest way to set up a Kubernetes cluster with Cilium. Deploy the Demo Application DNS-based policies are very useful for controlling access to services running outside the Kubernetes
    0 码力 | 740 页 | 12.52 MB | 1 年前
    3
  • epub文档 PyArmor Documentation v5.5.7

    init config build info check banchmark register download Examples Obfuscating and Packing PyQt Application When Things Go Wrong Segment fault Could not find _pytransform The license.lic generated doesn’t to one file and in advanced mode: pyarmor pack -e " --onefile" -x " --advanced" foo.py If the application name is changed by passing option -n of PyInstaller, the option -s must be specified at the same pyarmor download --list linux32 Examples Here are some examples. Obfuscating and Packing PyQt Application There is a tool easy-han based on PyQt. Here list the main files: config.json main.py ui_main
    0 码力 | 104 页 | 85.70 KB | 1 年前
    3
共 628 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 63
前往
页
相关搜索词
Ciliumv1DocumentationGo101Golang21.0PyArmorv62.73.1ComputerProgrammingwiththeNimLanguagev55.7
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩