Falcon v1.4.1-post-1 Documentation
encoded as JSON.', href='http://docs.examples.com/api/json') if req.method in ('POST', 'PUT'): if 'application/json' not in req.content_type: raise falcon.H 'Falcon') resp.status = falcon.HTTP_200 @falcon.before(max_body(64 * 1024)) def on_post(self, req, resp, user_id): try: doc = req.context['doc'] except KeyError: /players/45301f54/achievements the “list of all achievements for the player resource with ID 45301f54”. POST /players/45301f54/achievements └──────┘ └────────────────────────────────┘ Action0 码力 | 229 页 | 273.39 KB | 1 年前3Practices of Go Microservices on Post-Kubernetes-Wei Zheng
Practices of Go Microservices on Post-Kubernetes 郑伟 ⽯墨⽂档 Background in Shimo Language • Go • Node • Rust Background in Shimo Framework • Gin • Echo • gRPC • … Background in Shimo Platform0 码力 | 59 页 | 5.66 MB | 1 年前3Better Code: Contracts
auto old_size = size(); #endif _first.pop_back(); _second.pop_back(); assert("post " && (size() == old_size - 1)); } 40© 2023 Adobe. All Rights Reserved. Maybe someday | C++26 auto old_size = size(); #endif _first.pop_back(); _second.pop_back(); assert("post " && (size() == old_size - 1)); }© 2023 Adobe. All Rights Reserved. Maybe someday | C++26? auto old_size = size(); #endif _first.pop_back(); _second.pop_back(); assert("post " && (size() == old_size - 1)); }© 2023 Adobe. All Rights Reserved. Maybe someday | C++26?0 码力 | 204 页 | 4.46 MB | 5 月前3Conda 23.3.x Documentation
conda Documentation Release 23.3.1.post2+bdcba5dd0 Anaconda, Inc Jul 17, 2023 CONTENTS 1 User guide 3 2 Conda configuration 117 3 Conda Python API 129 4 Command reference 137 5 Glossary 165 6 Release notes 229 Python Module Index 363 Index 365 i ii conda Documentation, Release 23.3.1.post2+bdcba5dd0 Package, dependency and environment management for any language---Python, R, Ruby, Lua PyPI, but that approach may not be as up to date. CONTENTS 1 conda Documentation, Release 23.3.1.post2+bdcba5dd0 2 CONTENTS CHAPTER ONE USER GUIDE 1.1 Concepts Explore the links to learn more about0 码力 | 370 页 | 2.94 MB | 7 月前3CakePHP Cookbook 2.x
Configuration A Note on mod_rewrite Blog Tutorial - Adding a layer Create a Post Model Create a Posts Controller Creating Post Views Adding Posts Data Validation Editing Posts Deleting Posts Routes Conclusion Configuration A Note on mod_rewrite Blog Tutorial - Adding a layer Create a Post Model Create a Posts Controller Creating Post Views Adding Posts Data Validation Editing Posts Deleting Posts Routes Conclusion created) VALUES ('The title', 'This is the post body.', NOW()); INSERT INTO posts (title, body, created) VALUES ('A title once again', 'And the post body follows.', NOW()); INSERT INTO posts (title0 码力 | 1096 页 | 958.62 KB | 1 年前3Falcon v1.4.1 Documentation
Falcon Documentation Release 1.4.1.post-1 Kurt Griffiths et al. Aug 08, 2018 Contents 1 What People are Saying 3 2 Quick Links 5 3 Features 7 4 Who’s Using Falcon? 9 5 Documentation 11 5.1 User . . . . . . . . . . . . 137 Python Module Index 149 i ii Falcon Documentation, Release 1.4.1.post-1 Release v1.4 (Installation) Falcon is a minimalist WSGI library for building speedy web APIs and serialize]) app.add_route('/items/{id}', CatalogItem()) Contents 1 Falcon Documentation, Release 1.4.1.post-1 2 Contents CHAPTER 1 What People are Saying “We have been using Falcon as a replacement for0 码力 | 158 页 | 587.88 KB | 1 年前3CakePHP Cookbook 2.x
body, created) VALUES ('The title', 'This is the post body.', NOW()); INSERT INTO posts (title, body, created) VALUES ('A title once again', 'And the post body follows.', NOW()); INSERT INTO posts (title more information, but suffice it to say that naming our table ‘posts’ automati- cally hooks it to our Post model, and having fields called ‘modified’ and ‘created’ will be automagically managed by CakePHP layer to start building your first CakePHP application. Blog Tutorial - Adding a layer Create a Post Model The Model class is the bread and butter of CakePHP applications. By creating a CakePHP model0 码力 | 820 页 | 2.52 MB | 1 年前3From Eager Futures/Promises to Lazy Continuations: Evolving an Actor Library Based on Lessons Learned from Large-Scale Deployments
SpellCheck(std::string text) { auto body = http::UrlEncode({"text", text}); auto response = http::Post("https://www.online-spellcheck.com", body); return response.body; }motivating example std::string SpellCheck(std::string text) { auto body = http::UrlEncode({"text", text}); auto response = http::Post("https://www.online-spellcheck.com", body); return response.body; }motivating example std::string SpellCheck(std::string text) { auto body = http::UrlEncode({"text", text}); auto response = http::Post("https://www.online-spellcheck.com", body); return response.body; } you have to wait! whether0 码力 | 264 页 | 588.96 KB | 5 月前3Contracts for C++
audio Widget getWidget (index i) pre (i > 0) // precondition assertion post (w: w.index() == i); // postcondition assertion Proposal: add contract assertions to C++4 Copyright audio Widget getWidget (index i) pre (i > 0) // precondition assertion post (w: w.index() == i); // postcondition assertion Proposal: add contract assertions to C++ Function audio Widget getWidget (index i) pre (i > 0) // precondition assertion post (w: w.index() == i) // postcondition assertion { auto* db = getDatabase(); contract_assert0 码力 | 181 页 | 4.44 MB | 5 月前3Laravel 5.2 中文文档
}); 本文档由 Laravel 学院(LaravelAcademy.org)提供 Laravel 学院致力于提供优质 Laravel 中文学习资源 21 Route::post('foo', function () { // }); 默认情况下,routes.php 文件包含单个路由和一个路由群组,该路由群组包含的所有路由 都使用了中间件组 web,而这个中间件组为路由提供了 能。通常,我们会将所有路由定义在这个路由组中。 有效的路由方法 我们可以注册路由来响应任何 HTTP 请求: Route::get($uri, $callback); Route::post($uri, $callback); Route::put($uri, $callback); Route::patch($uri, $callback); Route::delete($uri 有时候还需要注册路由响应多个 HTTP 请求——这可以通过 match 方法来实现。或者, 甚至可以使用 any 方法注册一个路由来响应所有 HTTP 请求: Route::match(['get', 'post'], '/', function () { // }); Route::any('foo', function () { // }); 2、路由参数0 码力 | 377 页 | 4.56 MB | 1 年前3
共 1000 条
- 1
- 2
- 3
- 4
- 5
- 6
- 100