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

无数据

分类

全部后端开发(42)C++(30)Julia(10)Python(2)Tornado(2)系统运维(1)网络与安全(1)

语言

全部英语(33)中文(繁体)(10)

格式

全部PDF文档 PDF(38)PPT文档 PPT(3)DOC文档 DOC(1)其他文档 其他(1)
 
本次搜索耗时 0.033 秒,为您找到相关结果约 43 个.
  • 全部
  • 后端开发
  • C++
  • Julia
  • Python
  • Tornado
  • 系统运维
  • 网络与安全
  • 全部
  • 英语
  • 中文(繁体)
  • 全部
  • PDF文档 PDF
  • PPT文档 PPT
  • DOC文档 DOC
  • 其他文档 其他
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • ppt文档 C++20's

    Review Videos! • clocks, clock_cast, leap_seconds (https://youtu.be/WX3OmVu4lAs) • time_zone and time_zone_link (https://youtu.be/MODhhr7m-5s) • system_clock::now(), file_clock, leap second awareness (https://youtu Plus, the types often end up boiling down to constants anyway!18 Part III: Clocks19 What is a clock? #include #include using namespace std::chrono; class MyClock { public: is_steady = false; static time_point now() {} }; static_assert(is_clock_v); For a type T to qualify as a Clock, it must satisfy each of the following conditions: • The following qualified-ids
    0 码力 | 55 页 | 8.67 MB | 5 月前
    3
  • ppt文档 A Crash Course in Calendars, Dates, Time, and Time Zones

    in :  std::system_clock: wall clock time from system-wide real-time clock  std::steady_clock: guarantees it never goes backwards  std::high_resolution_clock: has shortest possible tick C++20 adds:  utc_clock, tai_clock, gps_clock, and file_clock  Every clock has a now() method21 Clocks – Examples  Example: // Get current time as a time_point. system_clock::time_point tpoint tpoint { system_clock::now() }; // Or: auto tpoint { system_clock::now() }; // Convert to a time_t. time_t tt { system_clock::to_time_t(tpoint) }; // Convert to local time. tm* t { localtime(&tt) }; // Write
    0 码力 | 43 页 | 551.60 KB | 5 月前
    3
  • pdf文档 Au Units

    uint64_t CPU_CLOCK_HZ = 400'000'000; // API to implement: std::chrono::nanoseconds elapsed_time(uint64_t num_cpu_ticks); 1 2 3 4 8Example: “CPU ticks” time units constexpr uint64_t CPU_CLOCK_HZ = 400'000'000; nds elapsed_time(uint64_t num_cpu_ticks) { using NS_PER_TICK = std::ratio<1'000'000'000, CPU_CLOCK_HZ>; return std::chrono::nanoseconds{ num_cpu_ticks * NS_PER_TICK::num / NS_PER_TICK::den NS_PER_TICK::den }; } 1 2 3 4 5 6 8.1Example: “CPU ticks” time units constexpr uint64_t CPU_CLOCK_HZ = 400'000'000; // API to implement: std::chrono::nanoseconds elapsed_time(uint64_t num_cpu_ticks); 1 2
    0 码力 | 191 页 | 22.37 MB | 5 月前
    3
  • ppt文档 C++20: An (Almost) Complete Overview

    (int i { startValue }; i < startValue + numberOfValues; ++i) { time_t t { system_clock::to_time_t(system_clock::now()) }; cout << std::ctime(&t); co_yield i; } } int main() { auto gen 1 week into days62 Calendars & Timezones  New clocks (besides system_clock, steady_clock, high_resolution_clock):  utc_clock: represents Coordinated Universal Time (UTC), measures time since 00:00:00 00:00:00 UTC, Thursday, 1 January 1970, including leap seconds  tai_clock: represents International Atomic Time (TAI), measures time since 00:00:00, 1 January 1958, and was offseted 10 seconds ahead of
    0 码力 | 85 页 | 512.18 KB | 5 月前
    3
  • pdf文档 Optimizing Away Virtual Functions May Be Pointless

    auto start = Clock::now(); for( size_t i=0; iconcrete(); } auto end = Clock::now(); auto concrete_duration = end-start; start = Clock::now(); for( for( size_t i=0; ivirt(); } end = Clock::now(); auto virt_duration = end-start;There are interesting technical details and surprising conclusions that virtual
    0 码力 | 20 页 | 1.19 MB | 5 月前
    3
  • pdf文档 Tornado 6.5 Documentation

    above: async def minute_loop2(): while True: nxt = gen.sleep(60) # Start the clock. await do_something() # Run while the clock is ticking. await nxt # Wait for the timer to run out. 6.1.4 Queue example request. • start_time: Time at which the HTTP operation started, based on time.time (not the monotonic clock used by IOLoop.time). May be None if the request timed out while in the queue. • time_info: dictionary implementa- tions. request_time is now more accurate for curl_httpclient because it uses a monotonic clock when available. rethrow() → None If there was an error on the request, raise an HTTPError. Exceptions
    0 码力 | 272 页 | 1.12 MB | 2 月前
    3
  • pdf文档 Blazing Trails: Building the World's Fastest CameBoy Emulator in Modern C++

    in the Game Boy's CPU, typically corresponding to one clock tick of the CPU. Emulators with T-cycle accuracy simulate the exact number of clock ticks for every instruction, providing the highest level in the Game Boy's CPU, typically corresponding to one clock tick of the CPU. Emulators with T-cycle accuracy simulate the exact number of clock ticks for every instruction, providing the highest level
    0 码力 | 91 页 | 8.37 MB | 5 月前
    3
  • pdf文档 Balancing Efficiency and Flexibility: Cost of Abstractions in Embedded Systems

    63Modules Timer Clock & Oscillator SysTick UART ADC GPIO Delays (us, ms) PWM Time measurement Communication with PC Analog input LEDs Clock configuration C 64Modules Timer Clock & Oscillator Oscillator SysTick UART ADC GPIO C++ C 65 PWM Time measurement Analog input Clock configuration Delays (us, ms) LEDs Communication with PCEnumerations enum class modes : std::uint32_t { input = 0b00
    0 码力 | 75 页 | 2.12 MB | 5 月前
    3
  • epub文档 Tornado 6.5 Documentation

    minute_loop2(): while True: nxt = gen.sleep(60) # Start the clock. await do_something() # Run while the clock is ticking. await nxt # Wait for the timer to run out started, based on time.time [https://docs.python.org/3/library/time.html#time.time] (not the monotonic clock used by IOLoop.time). May be None if the request timed out while in the queue. time_info: dictionary implementations. request_time is now more accurate for curl_httpclient because it uses a monotonic clock when available. rethrow() → None [https://docs.python.org/3/library/constants.html#None] If there
    0 码力 | 437 页 | 405.14 KB | 2 月前
    3
  • pdf文档 Tracy: A Profiler You Don't Want to Miss

    TracyPlot(name, tick); // ... activity ... TracyPlot(name, baseline); baseline up-tick down-tick clock (sustain) plots baseline up-tick down-tick pulse (heartbeat) plots TracyPlot(name, tick); TracyPlot(name palliative workarounds: • Use FrameMarkStart and FrameMarkEnd • Use “matching” TracyMessage’s • Use clock/sustain TracyPlot • Assign unique ZoneColor to each task • My recommendation: use TracyAlloc and (it’s basically a stackable clock/sustain plot!) 87 e.g.: task starts in main thread, moves between worker threads, and gets retired
    0 码力 | 84 页 | 8.70 MB | 5 月前
    3
共 43 条
  • 1
  • 2
  • 3
  • 4
  • 5
前往
页
相关搜索词
C++20ChronoCrashCourseinCalendarsDatesTimeandZonesAuUnitsAnAlmostCompleteOverviewOptimizingAwayVirtualFunctionsMayBePointlessTornado6.5DocumentationBlazingTrailsBuildingtheWorldFastestCameBoyEmulatorModernBalancingEfficiencyFlexibilityCostofAbstractionsEmbeddedSystemsTracyProfilerYouDonWanttoMiss
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩