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

无数据

分类

全部后端开发(76)Python(76)Django(30)Tornado(2)

语言

全部英语(73)中文(简体)(2)

格式

全部PDF文档 PDF(51)其他文档 其他(24)DOC文档 DOC(1)
 
本次搜索耗时 0.035 秒,为您找到相关结果约 76 个.
  • 全部
  • 后端开发
  • Python
  • Django
  • Tornado
  • 全部
  • 英语
  • 中文(简体)
  • 全部
  • PDF文档 PDF
  • 其他文档 其他
  • DOC文档 DOC
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • word文档 python3学习手册

    def icmp_checksum(packet): # input if len(packet) & 1: # 长度的末位为1表示:长度不为2的倍数 (即末位不为0) packet = packet + b'\x00' # 0填充 words = array.array('h', packet) sum = 0 sum = (sum >> 16) + (sum & 0xffff) return (~sum) & 0xffff # 反回2字节校验和的反码 def generate_icmp_packet(icmp_data): # input icmp_type = 8 # echo_request icmp_code = 0 icmp_type, icmp_code, icmp_checkum, icmp_id, icmp_sequence) icmp_packet = icmp_header + icmp_data icmp_checkum = icmp_checksum(icmp_packet) icmp_header = struct.pack('bbHHh', icmp_type, icmp_code,
    0 码力 | 213 页 | 3.53 MB | 1 年前
    3
  • pdf文档 05. 李枫 用于 Linux 内核调试的 Python

    2) eBPF 2.1 BPF (Berkeley Packet Filter, aka cBPF)  https://en.wikipedia.org/wiki/Berkeley_Packet_Filter  http://www.tcpdump.org/papers/bpf-usenix93.pdf  History introduced in LLVM 3.7 release  http://llvm.org/docs/CodeGenerator.html#the-extended- berkeley-packet-filter-ebpf-backend  o  $LLVM_SRC/lib/Target/BPF  http://cilium.readthedocs
    0 码力 | 63 页 | 4.07 MB | 1 年前
    3
  • epub文档 PyArmor Documentation v5.6.5

    object xxxx isn’t wrapped Error: Try to run unauthorized function Check license failed: Invalid input packet. ‘XXX’ codec can’t decode byte 0xXX /lib64/libc.so.6: version ‘GLIBC_2.14’ not found License Purchase obfuscated scripts. In this case, try to run obfuscated scripts, it will report this error: Invalid input packet. Check license failed. Two types of license.lic In PyArmor, there are 2 types of license.lic license files, the other solution to upgrade PyArmor to v5.4.5 later. Check license failed: Invalid input packet. If print this error as running the obfuscated scripts, check if there is any of license.lic or
    0 码力 | 103 页 | 86.97 KB | 1 年前
    3
  • epub文档 PyArmor Documentation v5.5.7

    object xxxx isn’t wrapped Error: Try to run unauthorized function Check license failed: Invalid input packet. License Purchase Support Platfroms Change Logs 5.5.7 5.5.6 5.5.5 5.5.4 5.5.3 5.5.2 5.5.1 5.5 obfuscated scripts. In this case, try to run obfuscated scripts, it will report this error: Invalid input packet. Check license failed. Two types of license.lic In PyArmor, there are 2 types of license.lic license files, the other solution to upgrade PyArmor to v5.4.5 later. Check license failed: Invalid input packet. If print this error as running the obfuscated scripts, check if there is any of license.lic or
    0 码力 | 104 页 | 85.70 KB | 1 年前
    3
  • epub文档 PyArmor Documentation v5.6.0

    object xxxx isn’t wrapped Error: Try to run unauthorized function Check license failed: Invalid input packet. License Purchase Support Platfroms Change Logs 5.6.0 5.5.7 5.5.6 5.5.5 5.5.4 5.5.3 5.5.2 5.5 obfuscated scripts. In this case, try to run obfuscated scripts, it will report this error: Invalid input packet. Check license failed. Two types of license.lic In PyArmor, there are 2 types of license.lic license files, the other solution to upgrade PyArmor to v5.4.5 later. Check license failed: Invalid input packet. If print this error as running the obfuscated scripts, check if there is any of license.lic or
    0 码力 | 103 页 | 85.82 KB | 1 年前
    3
  • pdf文档 PyArmor Documentation v5.6.0

    . . . . . . . . . . . . . . . . . . . . . . . . . 68 15.11 Check license failed: Invalid input packet. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 68 16 License 69 16.1 Purchase obfuscated scripts. In this case, try to run obfuscated scripts, it will report this error: Invalid input packet. Check license failed. 6.9 Two types of license.lic In PyArmor, there are 2 types of license.lic the other solution to upgrade PyArmor to v5.4.5 later. 15.11 Check license failed: Invalid input packet. If print this error as running the obfuscated scripts, check if there is any of license.lic or
    0 码力 | 107 页 | 352.50 KB | 1 年前
    3
  • pdf文档 PyArmor Documentation v5.5.4

    . . . . . . . . . . . . . . . . . . . . . . . . . 68 15.11 Check license failed: Invalid input packet. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 68 16 License 69 16.1 Purchase obfuscated scripts. In this case, try to run obfuscated scripts, it will report this error: Invalid input packet. Check license failed. 6.9 Two types of license.lic In PyArmor, there are 2 types of license.lic the other solution to upgrade PyArmor to v5.4.5 later. 15.11 Check license failed: Invalid input packet. If print this error as running the obfuscated scripts, check if there is any of license.lic or
    0 码力 | 107 页 | 348.47 KB | 1 年前
    3
  • pdf文档 PyArmor Documentation v5.9.5

    Problem 83 PyArmor Documentation, Release 5.9.0 14.4.7 Run obfuscated scripts reports: Invalid input packet If the scripts are obfuscated in different platform, check the notes in Distributing Obfuscated • Fix help message errors in command obfuscate 16.29 5.6.7 • Fix issue (#129): “Invalid input packet” on raspberry pi (armv7) • Add new obfuscation mode: obf_code == 2 16.30 5.6.6 • Remove unused mode is enabled in some MacOS machines 16.41 5.5.3 • Fix issue: it will raise error “Invalid input packet” to import 2 independent obfuscated packages in 64-bit Windows. 16.42 5.5.2 • Fix bug of command
    0 码力 | 131 页 | 428.65 KB | 1 年前
    3
  • epub文档 PyArmor Documentation v6.2.7

    information, refer to Special Handling of Entry Script Run obfuscated scripts reports: Invalid input packet If the scripts are obfuscated in different platform, check the notes in Distributing Obfuscated command obfuscate Fix help message errors in command obfuscate 5.6.7 Fix issue (#129): “Invalid input packet” on raspberry pi (armv7) Add new obfuscation mode: obf_code == 2 5.6.6 Remove unused exported symbols advanced mode is enabled in some MacOS machines 5.5.3 Fix issue: it will raise error “Invalid input packet” to import 2 independent obfuscated packages in 64-bit Windows. 5.5.2 Fix bug of command pack:
    0 码力 | 159 页 | 123.91 KB | 1 年前
    3
  • epub文档 PyArmor Documentation v6.3.1

    information, refer to Special Handling of Entry Script Run obfuscated scripts reports: Invalid input packet If the scripts are obfuscated in different platform, check the notes in Distributing Obfuscated command obfuscate Fix help message errors in command obfuscate 5.6.7 Fix issue (#129): “Invalid input packet” on raspberry pi (armv7) Add new obfuscation mode: obf_code == 2 5.6.6 Remove unused exported symbols advanced mode is enabled in some MacOS machines 5.5.3 Fix issue: it will raise error “Invalid input packet” to import 2 independent obfuscated packages in 64-bit Windows. 5.5.2 Fix bug of command pack:
    0 码力 | 161 页 | 124.89 KB | 1 年前
    3
共 76 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 8
前往
页
相关搜索词
python3学习手册05李枫用于Linux内核调试PythonPyArmorDocumentationv56.55.76.05.49.5v62.73.1
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩