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

无数据

分类

全部后端开发(2046)Python(544)综合其他(514)云计算&大数据(467)C++(411)Java(403)数据库(334)Spring(318)Weblate(302)系统运维(189)

语言

全部英语(2586)中文(简体)(841)中文(繁体)(36)日语(24)法语(21)西班牙语(20)俄语(19)德语(18)英语(17)韩语(15)

格式

全部PDF文档 PDF(2826)其他文档 其他(655)TXT文档 TXT(79)PPT文档 PPT(52)DOC文档 DOC(14)
 
本次搜索耗时 0.015 秒,为您找到相关结果约 1000 个.
  • 全部
  • 后端开发
  • Python
  • 综合其他
  • 云计算&大数据
  • C++
  • Java
  • 数据库
  • Spring
  • Weblate
  • 系统运维
  • 全部
  • 英语
  • 中文(简体)
  • 中文(繁体)
  • 日语
  • 法语
  • 西班牙语
  • 俄语
  • 德语
  • 英语
  • 韩语
  • 全部
  • PDF文档 PDF
  • 其他文档 其他
  • TXT文档 TXT
  • PPT文档 PPT
  • DOC文档 DOC
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 Multi Producer, Multi Consumer, Lock Free, Atomic Queue

    template class QueueSchedulerIssue { std::atomic writeIndex; std::atomic readIndex; std::unique_ptr<std::pair> elements; bool try_push(T&& try_push(T&& value) { auto my_entry = writeIndex.fetch_add(1); elements[my_entry].first = std::move(value); // No code, does not mean no-time. // scheduler will hit here, and // block the queue while (elements[my_entry].second != my_entry) ; // spin and wait, maybe with pause(); value = std::move(elements[my_entry].first); return true; } }; Lockfree, MPMC Queue - Scheduler InteractionLockfree
    0 码力 | 54 页 | 886.12 KB | 6 月前
    3
  • pdf文档 JAVA 应用与开发 - 集合与映射

    November 4, 2019 ���� �����List����Set�����Map�的������� ���������� ������iterator��Enumeration ��������� API ������的������������ 1 28 �� 1 ������� 2 Collection � Map �� 3 �� 4 Iterator �� 5 � 6 集合�����用���������������合����� �� O 集合类型分类 � Set ��������的������������� ������������的��� �� List ������的��������������� ������的���������������� �������� �� Map �����的��¡���Key-Value������ �������的��������������� 集合�����用���������������合����� �� O 集合类型分类 � Set ��������的������������� ������������的��� �� List ������的��������������� ������的���������������� �������� �� Map �����的��¡���Key-Value������ �������的���������������
    0 码力 | 66 页 | 713.79 KB | 1 年前
    3
  • pdf文档 Limitations and Problems in std::function and Similar

    Limitations and Problems in std::function and similar constructs Amandeep Chawla | Sr. Computer Scientist II amandeep@adobe.com | adchawla@gmail.com Image by Bruno Tornielli© 2024 Adobe. All Rights whose type we can control. ▪ std::function© 2024 Adobe. All Rights Reserved. Adobe Confidential. Task Based Mechanism© 2024 Adobe. All Rights Reserved. Adobe Confidential. std::function ▪ Is a class template template ▪ It is a general-purpose polymorphic function wrapper ▪ Instances of std::function can store, copy, and invoke any CopyConstructible Callable target ▪ Uses type-erasure under the hood to gain
    0 码力 | 62 页 | 3.57 MB | 6 月前
    3
  • pdf文档 Spanny 2: Rise of std::mdspan

    https://github.com/kokkos/mdspangithub.com/griswaldbrooks/spanny2 goals ● deeper understanding of std::mdspan layouts and accessors ● how to write custom layouts and accessors ● dispel common misconceptions memory accessor ● improving memory access using asynchronicity 4 ● motivations for std::mdspan ● review std::mdspan declarationgithub.com/griswaldbrooks/spanny2 how ● layouts and their requirements memory accessor ● improving memory access using asynchronicity 5 ● motivations for std::mdspan ● review std::mdspan declarationgithub.com/griswaldbrooks/spanny2 how ● layouts and their requirements
    0 码力 | 117 页 | 2.02 MB | 6 月前
    3
  • pdf文档 Set Sail for a Ship-Shape Istio Release

    #IstioCon Set Sail for a Ship-Shape Istio Release Brian Avery / twitter: @briansvgs / Red Hat Senior Software Engineer Eric Van Norman / twitter: @kf0s / IBM Senior Software Engineer #IstioCon First
    0 码力 | 18 页 | 199.43 KB | 1 年前
    3
  • pdf文档 How HP set up secure and wise platform with Istio

    #IstioCon How HP set up secure and wise platform with Istio John Zheng/ john.zheng@hp.com #IstioCon Agenda ➢ HP Horizon platform design with Istio ➢ Secure Platform ➢ Wise Platform ➢ Excellent • Project runs as tenant, need control rights Solution cluster connect core cluster with Istio multi-cluster - Replicated control planes Some standalone cluster without Istio can access core cluster level, reduces application workload. Intelligence Platform for Multiple Tenant Support • Support multi-tenants (Add extra http header/ logs wisely) • Verify whether JWT token in blacklist or not • Different
    0 码力 | 23 页 | 1.18 MB | 1 年前
    3
  • pdf文档 A Long Journey of Changing std::sort Implementation at Scale

    elements std::sort, std::stable_sort, ranges::sort, etc std::sort(begin, end); std::ranges::sort(cont); 4REMINDERS Sorting is the ordering of elements std::sort, std::stable_sort std::stable_sort, ranges::sort, etc std::sort(begin, end, comp); std::ranges::sort(cont, comp); 5QUICKSORT 6QUICKSORT Quick sort 6.1QUICKSORT Quick sort Take any element 6.2QUICKSORT __quick_sort_loop(first, last); 4 } 5 9Quick sort (STL version) 10STANDARD LIBRARY EVOLVED FROM STL 11STD::SORT 12STD::SORT 12.1Quicksort's worst case is Just pick the worst element 13GCC libstdc++ template
    0 码力 | 182 页 | 7.65 MB | 6 月前
    3
  • ppt文档 Bringing Existing Code to CUDA Using constexpr and std::pmr

    Allocation // cpu std::vector x(N); std::vector y(N); // … // gpu // ??? // ??? // … 15 |• Added in C++17: • std::pmr::memory_resource • std::pmr::polymorphic_allocator • std::pmr::vector std::pmr::vector • std::pmr::monotonic_buffer_resource • … std::pmr 16 |// gpu unified_memory_resource mem; std::pmr::vector x(N, &mem); std::pmr::vector y(N, &mem); // … Memory Allocation 17 |struct rce : std::pmr::memory_resource { void* do_allocate(std::size_t, std::size_t); void do_deallocate( void* p, std::size_t, std::size_t); bool do_is_equal( const std::pmr::memory_resource&
    0 码力 | 51 页 | 3.68 MB | 6 月前
    3
  • pdf文档 多租户Kubernetes VM Solutions for Multi-Tenant Applications

    Kubernetes VM Solutions for Multi-Tenant Applications Guangxu Li, Senior Software Engineer, ZTE li.guangxu@zte.com.cn Container and VM Ecosystem Kubernetes Docker Swarm Marathon Nomad Container
    0 码力 | 33 页 | 3.34 MB | 1 年前
    3
  • pdf文档 Vectorizing a CFD Code With std::simd Supplemented by Transparent Loading and Storing

    Center (DLR) Institute of Software Methods for Product Virtualization VECTORIZING A CFD CODE WITH STD::SIMD SUPPLEMENTED BY (ALMOST) TRANSPARENT LOADING AND STORINGMotivation: The Origin of the Talk deduction to load and store std::simd and scalar variables ▪ syntactically equalize scalar and vectorized code The talk: ▪ share experience with vectorization using std::simd ▪ introduce the SIMD_ACCESS instruction adds/multiplies/… multiple set of operands at once → Single Instruction Multiple Data (SIMD) For more details Matthias Kretz‘ Cppcon talk about std::simd: https://youtu.be/LAJ_hywLtMA
    0 码力 | 58 页 | 2.68 MB | 6 月前
    3
共 1000 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 100
前往
页
相关搜索词
MultiProducerConsumerLockFreeAtomicQueueSetlistmappdfLimitationsandProblemsinstdfunctionSimilarSpannyRiseofmdspanSailforShipShapeIstioReleaseHowHPsetupsecurewiseplatformwithLongJourneyChangingsortImplementationatScaleBringingExistingCodetoCUDAUsingconstexprpmr租户KubernetesVMSolutionsTenantApplicationsVectorizingCFDWithsimdSupplementedbyTransparentLoadingStoring
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩