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

无数据

分类

全部后端开发(158)Python(158)Scrapy(54)Django(44)Tornado(20)PyMuPDF(6)ORM(3)

语言

全部英语(150)中文(简体)(7)英语(1)

格式

全部PDF文档 PDF(95)其他文档 其他(63)
 
本次搜索耗时 0.301 秒,为您找到相关结果约 158 个.
  • 全部
  • 后端开发
  • Python
  • Scrapy
  • Django
  • Tornado
  • PyMuPDF
  • ORM
  • 全部
  • 英语
  • 中文(简体)
  • 英语
  • 全部
  • PDF文档 PDF
  • 其他文档 其他
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 Jinja2 Documentation Release 2.10

    configured with the policies attribute. Example: env.policies['urlize.rel'] = 'nofollow noopener' compiler.ascii_str: This boolean controls on Python 2 if Jinja2 should store ASCII only literals as bytestring unicode strings is that Python 2.x is not using unicode for exceptions and tracebacks as well as the compiler. This will change with Python 3. exception jinja2.TemplateRuntimeError(message=None) A generic autoescape True or False depending on if autoescaping is active or not. volatile True if the compiler cannot evaluate some expressions at compile time. At runtime this should always be False. 2.16
    0 码力 | 148 页 | 475.08 KB | 1 年前
    3
  • pdf文档 理解Python中的AST 何翔宇

    ⽬目录 CONTENTS Intro CPython’s Compiler How to Use AST Library Use AST to Solve Problems Suggestion and Reference Intro CPython’s Compiler Intro CPython’s Compiler - From source code to bytecode AST: 对语法的⾼高度抽象,不不会保留留细节 CFG: 记录着程序流程的有向图 bytecode: 能够被 Python 解释器器使⽤用的源码 Intro CPython’s Compiler - parser source code parse tree parse - 解码 - PEP 263 -- Defining Python Source Code Encodings Identifiers - 解析 - 根据词法分析的结果和语法⽂文件,⽣生成解析树 - 分词器器(Tokenize) - keyword - tokenize Intro CPython’s Compiler - transform and emit Transform: - 使⽤用 Python/ast.c 中的 PyAST_FromNode() 从解析树中读取 - 根据转换规则 Parser/Python
    0 码力 | 39 页 | 6.95 MB | 1 年前
    3
  • pdf文档 Python 标准库参考指南 2.7.18

    . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1295 32.3 symtable —Access to the compiler’s symbol tables . . . . . . . . . . . . . . . . . . . . . . . . . 1301 vi 32.4 symbol —与 Python pickletools —pickle 开发者工具集 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1320 33 Python compiler package 1321 33.1 The basic interface . . . . . . . . . . . . . . . . . . . . . . . . . . . . compile are ignored. Future 语句使用比特位来指定,多个语句可以通过按位或来指定。具体特性的比特位可以通 过__future__ 模块中的 _Feature 类的实例的 compiler_flag 属性来获得。 7 The Python Library Reference, 发布 2.7.18 This function raises SyntaxError if the
    0 码力 | 1552 页 | 7.42 MB | 10 月前
    3
  • pdf文档 Python 标准库参考指南 2.7.18

    . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1295 32.3 symtable —Access to the compiler’s symbol tables . . . . . . . . . . . . . . . . . . . . . . . . . 1301 vi 32.4 symbol —与 Python pickletools —pickle 开发者工具集 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1320 33 Python compiler package 1321 33.1 The basic interface . . . . . . . . . . . . . . . . . . . . . . . . . . . . compile are ignored. Future 语句使用比特位来指定,多个语句可以通过按位或来指定。具体特性的比特位可以通 过__future__ 模块中的 _Feature 类的实例的 compiler_flag 属性来获得。 7 The Python Library Reference, 发布 2.7.18 This function raises SyntaxError if the
    0 码力 | 1552 页 | 7.42 MB | 10 月前
    3
  • pdf文档 Python 标准库参考指南 2.7.18

    . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1295 32.3 symtable —Access to the compiler’s symbol tables . . . . . . . . . . . . . . . . . . . . . . . . . 1301 vi 32.4 symbol —与 Python pickletools —pickle 开发者工具集 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1320 33 Python compiler package 1321 33.1 The basic interface . . . . . . . . . . . . . . . . . . . . . . . . . . . . compile are ignored. Future 语句使用比特位来指定,多个语句可以通过按位或来指定。具体特性的比特位可以通 过__future__ 模块中的 _Feature 类的实例的 compiler_flag 属性来获得。 7 The Python Library Reference, 发布 2.7.18 This function raises SyntaxError if the
    0 码力 | 1552 页 | 7.42 MB | 10 月前
    3
  • epub文档 PyArmor Documentation v8.1.9

    be comipled to machine instructions directly, then called by obfuscated scripts. It requires c compiler. In Linux and Darwin, gcc and clang is OK. In Windows, only clang.exe works. It could be configured home path of current logon user, check the environment variable HOME to get the real path. After compiler works, using --enable-bcc to enable BCC mode [3]: $ pyarmor gen --enable-bcc foo.py All the source mainly used in some platforms Pyarmor could not tell right but still works. PYARMOR_CC Specify C compiler for bccmode PYARMOR_CLI Only for compatible with old Pyarmor, ignore this if you don’t use old
    0 码力 | 131 页 | 111.00 KB | 1 年前
    3
  • pdf文档 2 使用Python训练和部署低精度模型 张校捷

    TensorFlow中使用TensorRT 1. SavedModel使用TensorRT import tensorflow as tf from tensorflow.python.compiler.tensorrt import trt_convert as trt converter = trt.TrtGraphConverter( input_saved_model_dir=i TensorFlow模型使用TensorRT 2. Frozen Graph使用TensorRT import tensorflow as tf from tensorflow.python.compiler.tensorrt import trt_convert as trt with tf.Session() as sess: # First deserialize your frozen graph: as_graph_def(), output_node_names=['logits', 'classes']) TensorFlow导出低精度模型 from tensorflow.python.compiler.tensorrt import trt_convert as trt converter = trt.TrtGraphConverter( input_graph_def=frozen_graph
    0 码力 | 24 页 | 981.45 KB | 1 年前
    3
  • epub文档 PyArmor Documentation v8.5.10

    be compiled to machine instructions directly, then called by obfuscated scripts. It requires c compiler. In Linux and Darwin, gcc and clang is OK. In Windows, only clang.exe works. It could be configured home path of current logon user, check the environment variable HOME to get the real path. After compiler works, using --enable-bcc to enable BCC mode [3]: $ pyarmor gen --enable-bcc foo.py All the source scripts: $ pyarmor cfg optimize 2 The argument optimize specifies the optimization level of the compiler; the default value of -1 selects the optimization level of the interpreter as given by -O options
    0 码力 | 193 页 | 154.05 KB | 1 年前
    3
  • pdf文档 Django 1.8.x Documentation

    gettext. You can also run django-admin compilemessages --settings=path.to.settings to make the compiler process all the directories in your LOCALE_PATHS setting. 3.15.2 Format localization Overview NotEqual(Lookup): lookup_name = 'ne' def as_sql(self, compiler, connection): lhs, lhs_params = self.process_lhs(compiler, connection) rhs, rhs_params = self.process_rhs(compiler, connection) params = lhs_params + rhs_params the string __. We then need to define the as_sql method. This takes a SQLCompiler object, called compiler, and the active database connection. SQLCompiler objects are not documented, but the only thing
    0 码力 | 1685 页 | 6.01 MB | 1 年前
    3
  • epub文档 Django 1.8.x Documentation

    gettext. You can also run django-admin compilemessages --settings=path.to.settings to make the compiler process all the directories in your LOCALE_PATHS setting. Format localization Overview Django’s lookup_name = 'ne' def as_sql(self, compiler, connection): lhs, lhs_params = self.process_lhs(compiler, connection) rhs, rhs_params = self.process_rhs(compiler, connection) params = lhs_params the string __. We then need to define the as_sql method. This takes a SQLCompiler object, called compiler, and the active database connection. SQLCompiler objects are not documented, but the only thing
    0 码力 | 2454 页 | 2.85 MB | 1 年前
    3
共 158 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 16
前往
页
相关搜索词
Jinja2DocumentationRelease2.10理解PythonAST翔宇标准参考指南2.718PyArmorv81.9使用训练部署精度模型张校5.10Django1.8
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩