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

无数据

分类

全部后端开发(144)Java(139)Spring(139)综合其他(35)Blender(33)数据库(29)PostgreSQL(16)数据库工具(13)DBeaver(13)系统运维(7)

语言

全部英语(188)中文(简体)(17)中文(繁体)(10)英语(3)法语(1)

格式

全部PDF文档 PDF(199)其他文档 其他(21)
 
本次搜索耗时 0.022 秒,为您找到相关结果约 220 个.
  • 全部
  • 后端开发
  • Java
  • Spring
  • 综合其他
  • Blender
  • 数据库
  • PostgreSQL
  • 数据库工具
  • DBeaver
  • 系统运维
  • 全部
  • 英语
  • 中文(简体)
  • 中文(繁体)
  • 英语
  • 法语
  • 全部
  • PDF文档 PDF
  • 其他文档 其他
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 Iteration Revisited

    Idea: generalise iteration by index, rather than by pointer 24ITERATION REVISITED FLUX ▸ Flux (github.com/tcbrindle/flux) is a C++20 library exploring these ideas ▸ Aims: ▸ Much improved safety by default ITERATION OPERATIONS WITH FLUX ▸ flux�::first(seq) returns a cursor, which represents a sequence position ▸ For contiguous sequences, this is just an integer index ▸ flux�::is_last(seq, cur) returns the cursor is past-the-end ▸ flux�::read_at(seq, cur) accesses the element at the cursor position ▸ flux�::inc(seq, cur) increments the cursor 26ITERATION REVISITED FLUX CONCEPTS ▸ A type which provides
    0 码力 | 56 页 | 5.27 MB | 6 月前
    3
  • pdf文档 Spring Framwork Web on Reactive Stack v5.3.36 SNAPSHOT

    reactive library of choice for Spring WebFlux. It provides the Mono and Flux API types to work on data sequences of 0..1 (Mono) and 0..N (Flux) through a rich set of operators aligned with the ReactiveX vocabulary plain Publisher as input, adapts it to a Reactor type internally, uses that, and returns either a Flux or a Mono as output. So, you can pass any Publisher as input and you can apply operations on the ServerCodecConfigurer bean (see the Web Handler API). To parse multipart data in streaming fashion, you can use the Flux returned from an HttpMessageReader instead. For example, in an annotated controller,
    0 码力 | 182 页 | 2.52 MB | 1 年前
    3
  • pdf文档 The Path to GitOps

    Code Challenges of Infrastructure as Code Containers Change the Game Argo CD Flux Open Cluster Management Other GitOps Tools PipeCD Keptn Pulumi Kubernetes OpenGitOps Sandbox project. The next chapter introduces the basic tools for GitOps, notably Argo CD and Flux. References [1.1] https://developers.redhat.com/topics/devops [1.2] https://developers.redhat status in the CNCF. Flux In the chapter What is GitOps? I told the story of how Weaveworks recovered from an outage, inspiring cofounder Alexis Richardson to coin the term “GitOps.” Flux (and Flagger) were
    0 码力 | 45 页 | 1.09 MB | 1 年前
    3
  • pdf文档 Spring Framwork RSocket v5.3.36 SNAPSHOT

    Reactor simplifies the job of implementing the protocol. For applications it is a natural fit to use Flux and Mono with declarative operators and transparent back pressure support. The API in RSocket Java models the four request interaction types with Mono representing a promise for a single message, Flux a stream of messages, and io.rsocket.Payload the actual message with access to data and metadata have a client or server requester, you can make requests as follows: Java ViewBox viewBox = ... ; Flux locations = requester.route("locate.radars.within") ① .data(viewBox) ②
    0 码力 | 19 页 | 279.85 KB | 1 年前
    3
  • pdf文档 《Slides Dev Web》 08 . RSS

    plusieurs médias • Dans les journaux : dépêches, bandes dessinées, … • Télévision : jeux, séries • Web : Flux RSS / Atom – 1 source de donnée, plusieurs abonnés – Contenu : news, blogs, podcast, … – Accès unique unique à plusieurs sources d’informations – Mises à jour fréquentes Historique • Feed (fil ou flux) RSS • Format d’échange de données en XML – fournir ou recueillir des données structurées • Utilisation wikipedia.org/wiki/Comparison_of_feed_aggregators 2 Générer un flux RSS • Fichier XML : – Canal / Items (RSS) – Entrées (Atom) • Indiquer le flux au navigateur • Permettre l’abonnement : logo visible dans
    0 码力 | 7 页 | 52.98 KB | 1 年前
    3
  • pdf文档 C++20 Modules: The Packaging and Binary Redistribution Story

    of the importers import fmt; fmt.cxx fmt.pcm fmt.oCompilation time #include <flux.hpp> took 319 ms import flux; took 14 msYour imports (can) have imports export module foo; import bar; the gate for a mechanical issue compilation terminated.BMI compatibility (cont’d) add_subdirectory(flux) add_subdirectory(fmt) add_subdirectory(argparse) add_library(foo) target_sources(foo PUBLIC foo fmt::fmt flux::flux argparse::argparse) /lib/llvm-16/bin/clang++ -I/usr/lib/gcc/aarch64-linux-gnu/12/include -I/cxx-modules/cmake-example/fmt/include -I/cxx-modules/cmake-example/flux/include -O3
    0 码力 | 76 页 | 2.09 MB | 6 月前
    3
  • pdf文档 THE GITOPS GUIDE TO BUILDING & MANAGING INTERNAL PLATFORMS

    Flagger to automate canary releases in a GitOps pipeline. Whenever the GitOps operator, in their case, Flux, detects a new version, Flagger spins up a new canary release and shifts traffic gradually over from to Git. Leverage open source tools like Flux & Flagger as a POC GitOps is powered by open source tools that are backed by large developer communities. Flux and Flagger are two key open source tools delivered a transformative open source tool with Flux; managing Kubernetes deployments at scale is now easy and fast.” — Nicolas Chaillan, DoD Along with Flux and Flagger, leveraging open source tools like
    0 码力 | 15 页 | 623.52 KB | 1 年前
    3
  • pdf文档 React Native Tutorial

    We will use the React Native Router Flux in this chapter. You can run the following command in terminal, from the project folder. npm i react-native-router-flux --save Step 2 Since we want our router Native – Router React Native 68 import { Router, Scene } from 'react-native-router-flux' import Home from './Home.js' import About from './About.js' const Routes = () => ( import { TouchableOpacity, Text } from 'react-native'; import { Actions } from 'react-native-router-flux'; const Home = () => { const goToAbout = () => { Actions.about() } return
    0 码力 | 117 页 | 2.60 MB | 1 年前
    3
  • pdf文档 Spring Framwork Language Support v6.0.0-M2

    experience overall. To retrieve a list of User objects in Java, you would normally write the following: Flux users = client.get().retrieve().bodyToFlux(User.class) With Kotlin and the Spring Framework following: val users = client.get().retrieve().bodyToFlux() // or (both are equivalent) val users : Flux = client.get().retrieve().bodyToFlux() As in Java, users in Kotlin is strongly typed, but Kotlin’s the Mono can be empty or not (with the advantage of being more statically typed) • fun handler(): Flux becomes fun handler(): Flow For input parameters: • If laziness is not needed, fun handler(mono:
    0 码力 | 42 页 | 602.76 KB | 1 年前
    3
  • pdf文档 Spring Framwork Language Support v5.3.36 SNAPSHOT

    experience overall. To retrieve a list of User objects in Java, you would normally write the following: Flux users = client.get().retrieve().bodyToFlux(User.class) With Kotlin and the Spring Framework following: val users = client.get().retrieve().bodyToFlux() // or (both are equivalent) val users : Flux = client.get().retrieve().bodyToFlux() As in Java, users in Kotlin is strongly typed, but Kotlin’s the Mono can be empty or not (with the advantage of being more statically typed) • fun handler(): Flux becomes fun handler(): Flow For input parameters: • If laziness is not needed, fun handler(mono:
    0 码力 | 42 页 | 603.79 KB | 1 年前
    3
共 220 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 22
前往
页
相关搜索词
IterationRevisitedSpringFramworkWebonReactiveStackv53.36SNAPSHOTThePathtoGitOpsRSocketSlidesDev08RSSC++20ModulesPackagingandBinaryRedistributionStoryTHEGITOPSGUIDETOBUILDINGMANAGINGINTERNALPLATFORMSReactNativeTutorialLanguageSupportv60.0M2
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩