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

无数据

分类

全部后端开发(478)Python(478)Django(85)PyWebIO(76)Jupyter(62)Scrapy(62)Celery(51)Tornado(20)ORM(16)Conda(16)

语言

全部英语(423)中文(简体)(50)法语(1)英语(1)

格式

全部PDF文档 PDF(271)其他文档 其他(207)
 
本次搜索耗时 0.612 秒,为您找到相关结果约 478 个.
  • 全部
  • 后端开发
  • Python
  • Django
  • PyWebIO
  • Jupyter
  • Scrapy
  • Celery
  • Tornado
  • ORM
  • Conda
  • 全部
  • 英语
  • 中文(简体)
  • 法语
  • 英语
  • 全部
  • PDF文档 PDF
  • 其他文档 其他
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 PyConChina2022-深圳-大规模生产环境下的Faster CPython-王文洋

    function calls • PEP 659: Specializing Adaptive Interpreter 动态语言的虚拟机可以根据执行中出现过的类型和值对代码进行特化,以提高运行效率。这种特化通常与 “JIT ”编译 器联系在一起。但即使没有编译成机器代码,这种优化也是有益的。 Execution Quicken Adaptive Instruction Specialization Deopt Deopt def get_url(path): return "https://example.com" + path print(dis.dis(get_url, adaptive=True)) 3 0 RESUME 0 4 2 LOAD_CONST 1 ('https://example.com') 4 LOAD_FAST 4 LOAD_FAST 0 (path) 6 BINARY_OP_ADAPTIVE 0 (+) 10 RETURN_VALUE PEP 659: Specializing Adaptive Interpreter 3 0 RESUME_QUICK 0 4 2 LOAD_CONST__LOAD_FAST
    0 码力 | 31 页 | 2.47 MB | 1 年前
    3
  • pdf文档 Python 标准库参考指南 3.13

    executemany("INSERT INTO lang VALUES(:name, :year)", data) # This is the qmark style used in a SELECT query: params = (1972,) cur.execute("SELECT * FROM lang WHERE first_appeared = ?", params) print(cur.fetchall()) If group is not None, the setregid() system call will be made in the child process prior to the execution of the subprocess. If the provided value is a string, it will be looked up via grp.getgrnam() and extra_groups is not None, the setgroups() system call will be made in the child process prior to the execution of the subprocess. Strings provided in extra_groups will be looked up via grp.getgrnam() and the
    0 码力 | 2246 页 | 11.74 MB | 9 月前
    3
  • pdf文档 Python 标准库参考指南 3.13

    executemany("INSERT INTO lang VALUES(:name, :year)", data) # This is the qmark style used in a SELECT query: params = (1972,) cur.execute("SELECT * FROM lang WHERE first_appeared = ?", params) print(cur.fetchall()) If group is not None, the setregid() system call will be made in the child process prior to the execution of the subprocess. If the provided value is a string, it will be looked up via grp.getgrnam() and extra_groups is not None, the setgroups() system call will be made in the child process prior to the execution of the subprocess. Strings provided in extra_groups will be looked up via grp.getgrnam() and the
    0 码力 | 2242 页 | 11.73 MB | 9 月前
    3
  • pdf文档 Python 标准库参考指南 3.12

    12 Chapter 2. 内置函数 The Python Library Reference, 发行版本 3.12.7 This function supports dynamic execution of Python code. object must be either a string or a code object. If it is a string, the string is executemany("INSERT INTO lang VALUES(:name, :year)", data) # This is the qmark style used in a SELECT query: params = (1972,) cur.execute("SELECT * FROM lang WHERE first_appeared = ?", params) print(cur.fetchall()) If group is not None, the setregid() system call will be made in the child process prior to the execution of the subprocess. If the provided value is a string, it will be looked up via grp.getgrnam() and
    0 码力 | 2253 页 | 11.81 MB | 9 月前
    3
  • pdf文档 Python 标准库参考指南 3.12

    12 Chapter 2. 内置函数 The Python Library Reference, 发行版本 3.12.7 This function supports dynamic execution of Python code. object must be either a string or a code object. If it is a string, the string is executemany("INSERT INTO lang VALUES(:name, :year)", data) # This is the qmark style used in a SELECT query: params = (1972,) cur.execute("SELECT * FROM lang WHERE first_appeared = ?", params) print(cur.fetchall()) If group is not None, the setregid() system call will be made in the child process prior to the execution of the subprocess. If the provided value is a string, it will be looked up via grp.getgrnam() and
    0 码力 | 2253 页 | 11.81 MB | 9 月前
    3
  • pdf文档 1_当Python遇上FPGA_PYNQ开源项目的实践与体会_陆佳华

    MPSoC & RFSoC ACAP First Virtex FPGA Virtex-2 Pro Page 7 Driving Adaptive Computing with Versal The World’s First Adaptive Compute Acceleration Platform Scalar Processing Engines Adaptable Hardware
    0 码力 | 9 页 | 3.42 MB | 1 年前
    3
  • pdf文档 Python 标准库参考指南 3.11.10

    progress_handler。 Returning a non-zero value from the handler function will terminate the currently executing query and cause it to raise an OperationalError exception. set_trace_callback(trace_callback) 注册callable executemany("INSERT INTO lang VALUES(:name, :year)", data) # This is the qmark style used in a SELECT query: params = (1972,) cur.execute("SELECT * FROM lang WHERE first_appeared = ?", params) print(cur.fetchall()) 上,可执行文件可能是包含多种架构的通用文件。 To get at the ”64-bitness” of the current interpreter, it is more reliable to query the sys.maxsize attribute: is_64bits = sys.maxsize > 2**32 platform.machine() 返回机器类型,例如 'AMD64'
    0 码力 | 2248 页 | 11.10 MB | 9 月前
    3
  • pdf文档 Python 标准库参考指南 3.11.10

    progress_handler。 Returning a non-zero value from the handler function will terminate the currently executing query and cause it to raise an OperationalError exception. set_trace_callback(trace_callback) 注册callable executemany("INSERT INTO lang VALUES(:name, :year)", data) # This is the qmark style used in a SELECT query: params = (1972,) cur.execute("SELECT * FROM lang WHERE first_appeared = ?", params) print(cur.fetchall()) 上,可执行文件可能是包含多种架构的通用文件。 To get at the ”64-bitness” of the current interpreter, it is more reliable to query the sys.maxsize attribute: is_64bits = sys.maxsize > 2**32 platform.machine() 返回机器类型,例如 'AMD64'
    0 码力 | 2399 页 | 11.19 MB | 9 月前
    3
  • pdf文档 PyConChina2022-上海-Python启动加速探索及实践-严懿宸

    faster-cpython • MS & Guido • Startup performance & runtime performance • Deep-freeze •Specializing Adaptive Interpreter •Inline cache Cinder • Cinder JIT • Lazy import nogil • FAIR Thanks! 感谢观看
    0 码力 | 21 页 | 3.18 MB | 1 年前
    3
  • pdf文档 Python 标准库参考指南 2.7.18

    . . . . . . . . . . . . . . . . . . . . . . 1206 26.7 trace —Trace or track Python statement execution . . . . . . . . . . . . . . . . . . . . . . . . . . 1210 27 软件打包和分发 1213 27.1 distutils —构建和安装 . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1267 30 Restricted Execution 1269 30.1 rexec —Restricted execution framework . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1270 不是字符串。如果编译该对象时的 mode 实参是 'exec' 那么eval() 返回值为 None 。 Hints: dynamic execution of statements is supported by the exec statement. Execution of statements from a file is supported by the execfile() function
    0 码力 | 1552 页 | 7.42 MB | 9 月前
    3
共 478 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 48
前往
页
相关搜索词
PyConChina2022深圳大规规模大规模生产环境FasterCPython王文洋Python标准参考指南3.133.12遇上FPGAPYNQ开源项目实践体会陆佳华3.1110上海启动加速探索严懿宸2.718
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩