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

无数据

分类

全部后端开发(825)Python(269)Java(217)Spring(213)Julia(87)C++(85)Conan(74)Jupyter(62)Scrapy(62)Celery(47)

语言

全部英语(785)中文(简体)(20)中文(繁体)(11)韩语(2)西班牙语(1)法语(1)日语(1)葡萄牙语(1)中文(繁体)(1)

格式

全部PDF文档 PDF(591)其他文档 其他(219)TXT文档 TXT(13)PPT文档 PPT(2)
 
本次搜索耗时 0.069 秒,为您找到相关结果约 825 个.
  • 全部
  • 后端开发
  • Python
  • Java
  • Spring
  • Julia
  • C++
  • Conan
  • Jupyter
  • Scrapy
  • Celery
  • 全部
  • 英语
  • 中文(简体)
  • 中文(繁体)
  • 韩语
  • 西班牙语
  • 法语
  • 日语
  • 葡萄牙语
  • 中文(繁体)
  • 全部
  • PDF文档 PDF
  • 其他文档 其他
  • TXT文档 TXT
  • PPT文档 PPT
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 Back to Basics: Concurrency

    std::vector tokens_; Token getToken() { mtx_.lock(); if (tokens_.empty()) tokens_.push_back(Token::create()); Token t = std::move(tokens_.back()); tokens_.pop_back(); facilities of the bathroom itself. TokenPool’s mtx_ protects its vector tokens_. Every access (read or write) to tokens_ must be done under a lock on mtx_. This is an invariant that must be preserved getToken() { mtx_.lock(); if (tokens_.empty()) tokens_.push_back(Token::create()); Token t = std::move(tokens_.back()); tokens_.pop_back(); mtx_.unlock();
    0 码力 | 58 页 | 333.56 KB | 6 月前
    3
  • pdf文档 MoonBit月兔编程语言 现代编程思想 第十一课 案例:语法解析器与Tagless Final

    在单词之间可能存在空格 1. let tokens: Lexer[List[Token]] = 2. number.or(symbol).and(whitespace.many()) 3. .map(fn { (symbols, _) => symbols }) // 忽略空格 4. .many() 5. 6. fn init { 7. debug(tokens.parse("-10123-+-523 -> Option[(V, List[Token])] 2. 3. fn parse[V](self : Parser[V], tokens : List[Token]) -> Option[(V, List[Token])] { 4. (self.0)(tokens) 5. } ⼤部分组合⼦与 Lexer[V] 类似 递归组合: atomic = Value / "(" expression -> Parser[Expression] { 2. // 定义互递归函数 3. // atomic = Value / "(" expression ")" 4. fn atomic(tokens: List[Token]) -> Option[(Expression, List[Token])] { 5. lparen.and( 6. Parser(expression)
    0 码力 | 25 页 | 400.29 KB | 1 年前
    3
  • pdf文档 The Lean Reference Manual Release 3.3.0

    readers will want to skip this section on a first reading. Lean input is processed into a stream of tokens by its scanner, using the UTF-8 encoding. The next token is the longest matching prefix of the remaining string | char | numeral | decimal | quoted_symbol | doc_comment | mod_doc_comment | field_notation Tokens can be separated by the whitespace characters space, tab, line feed, and carriage return, as well are static tokens that are used in term notations and commands. They can be both keyword-like (e.g. the have keyword) or use arbitrary Unicode characters. Command tokens are static tokens that prefix
    0 码力 | 67 页 | 266.23 KB | 1 年前
    3
  • pdf文档 Comprehensive Rust(Ukrainian) 202412

    parse(input: &str) -> Expression { let mut tokens = tokenize(input); fn parse_expr<'a>(tokens: &mut Tokenizer<'a>) -> Expression { let Some(tok) = tokens.next() else { panic!("Неочікуваний кінець вводу"); операцію, якщо вона присутня. match tokens.next() { None => expr, Some(Token::Operator(op)) => Expression::Operation( Box::new(expr), op, Box::new(parse_expr(tokens)), ), Some(tok) => panic!("Неочікуваний ("Неочікуваний токен {tok:?}"), } } parse_expr(&mut tokens) } fn main() { let expr = parse("10+foo+20-30"); println!("{expr:?}"); } 29.8.1 Рішення use thiserror::Error; use std::iter::Peekable; use std::str::Chars;
    0 码力 | 396 页 | 1.08 MB | 11 月前
    3
  • pdf文档 Reference guide for Free Pascal, version 3.2.2

    Free Pascal, version 3.2.2 Document version 3.2.2 May 2021 Michaël Van Canneyt Contents 1 Pascal Tokens 12 1.1 Symbols . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . manual. 11 Chapter 1 Pascal Tokens Tokens are the basic lexical building blocks of source code: they are the “words” of the language: characters are combined into tokens according to the rules of the the programming language. There are five classes of tokens: reserved words These are words which have a fixed meaning in the language. They cannot be changed or redefined. identifiers These are names of
    0 码力 | 268 页 | 700.37 KB | 1 年前
    3
  • pdf文档 Haskell 2010 Language Report

    shown below. This Lexes as this f.g f . g (three tokens) F.g F.g (qualified ‘g’) f.. f .. (two tokens) F.. F.. (qualified ‘.’) F. F . (two tokens) The qualifier does not change the syntactic treatment lexemes as specified by the lexical syntax in the Haskell report, with the following addi- tional tokens: – If a let, where, do, or of keyword is not followed by the lexeme {, the token {n} is inserted (i.e. the programmer supplied the open- ing brace). If the innermost context is 0, then no layout tokens will be inserted until either the enclosing context ends or a new context is pushed. – A positive
    0 码力 | 329 页 | 1.43 MB | 1 年前
    3
  • epub文档 Agda User Manual v2.5.3

    let-expressions where-blocks Proving properties More Examples (for Beginners) Lexical Structure Tokens Layout Literate Agda Literal Overloading Natural numbers Negative numbers Strings Other types unicode characters can be used in identifiers and whitespace is important, see Names and Layout below. Tokens Keywords and special symbols Most non-whitespace unicode can be used as part of an Agda name, but less lies outside the block. data Nat : Set where -- starts a layout block -- comments are not tokens zero : Nat -- statement 1 suc : Nat → -- statement 2 Nat -- also statement
    0 码力 | 185 页 | 185.00 KB | 1 年前
    3
  • pdf文档 Comprehensive Rust(Persian ) 202412

    parse(input: &str) -> Expression } let mut tokens = tokenize(input ( ; fn parse_expr<'a>(tokens: &mut Tokenizer<'a>) -> Expression } let Some(tok) = tokens.next() else } panic ! ) " � � � � � � � � operation if present . match tokens.next ) ( } None => expr , Some(Token::Operator(op)) => Expression::Operation ) Box::new(expr ( , op , Box::new(parse_expr(tokens ( ( , ( , Some(tok) => panic panic ! ) " � � � � � � � � � � � � � } tok : ? { " ( , { 190 { parse_expr(&mut tokens ( { fn main ) ( } let expr = parse("10+foo+20-30 " ( ; println!("{expr : ? { " ( ; { 29.7.1 � � � � � use thiserror::Error
    0 码力 | 393 页 | 987.97 KB | 11 月前
    3
  • pdf文档 The Swift Programming Language

    The lexical structure of Swift describes what sequence of characters form valid tokens of the language. These valid tokens form the lowest-level building blocks of the language and are used to describe describe the rest of the language in subsequent chapters. In most cases, tokens are generated from the characters of a Swift source file by considering the longest possible substring from the input text, within longest match or maximal munch. ​ Whitespace and Comments Whitespace has two uses: to separate tokens in the source file and to help determine whether an operator is a prefix or postfix (see Operators)
    0 码力 | 525 页 | 4.68 MB | 1 年前
    3
  • pdf文档 Reflection Is Not Contemplation

    Sequences Status: prototype implementation constexpr auto t1 = ^^{ a + /* hi! */ b }; // three tokens static_assert(std::is_same_v); constexpr auto t2 = ^^{ a += ( }; constexpr auto strings and integrals, creates an identifier • \tokens( expr ) expands another token sequence •Inside any consteval function: • queue_injection( tokens_expr ) injects a token sequence into the current // Same as: int x = 42; typename[:^char:] c = '*'; // Same as: char c = '*';Angle of Attack Tokens, tokens everywhere… •P3294 (Injection with Token Sequences) a game changer for generation • Lennon/McCartney
    0 码力 | 45 页 | 2.45 MB | 6 月前
    3
共 825 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 83
前往
页
相关搜索词
BacktoBasicsConcurrencyMoonBit编程语言编程语言现代思想第十十一第十一案例语法解析解析器TaglessFinalTheLeanReferenceManualRelease3.3ComprehensiveRustUkrainian202412guideforFreePascalversion3.2Haskell2010AgdaUserv25.3PersianSwiftProgrammingLanguageReflectionIsNotContemplation
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩