Django CMS 3.11.10 Documentation
authoring to being published. Overview django CMS is a modern web publishing platform built with Django [https://www.djangoproject.com], the web application framework “for perfectionists with deadlines”. django developer documentation. To get an overview on how to use django CMS, see the django CMS User Guide [https://user-guide.django-cms.org/]. Tutorials Start here as a new django CMS developer: installation using Association [https://www.django-cms.org/en/about-us/] is a non-profit organisation that exists to support the development of django CMS and its community. Discord Join our friendly Discord server [https://dis0 码力 | 493 页 | 1.44 MB | 6 月前0.03Tornado 6.5 Documentation
Tornado [https://www.tornadoweb.org] is a Python web framework and asynchronous networking library, originally developed at FriendFeed [https://en.wikipedia.org/wiki/FriendFeed]. By using non-blocking thousands of open connections, making it ideal for long polling [https://en.wikipedia.org/wiki/Push_technology#Long_polling], WebSockets [https://en.wikipedia.org/wiki/WebSocket], and other applications that version: 6.5.1 (download from PyPI [https://pypi.python.org/pypi/tornado], release notes) Source (GitHub) [https://github.com/tornadoweb/tornado] Mailing lists: discussion [https://groups.google.com/forum/#!0 码力 | 437 页 | 405.14 KB | 2 月前3Contracts for C++
Crab – Fable by Ivan Krylov, 18143 Copyright (c) Timur Doumler | @timur_audio | https://timur.audio Widget getWidget (index i) pre (i > 0) // precondition assertion Proposal: add contract assertions to C++4 Copyright (c) Timur Doumler | @timur_audio | https://timur.audio Widget getWidget (index i) pre (i > 0) // precondition assertion to C++ Function contract assertions5 Copyright (c) Timur Doumler | @timur_audio | https://timur.audio Widget getWidget (index i) pre (i > 0) // precondition assertion0 码力 | 181 页 | 4.44 MB | 5 月前3Django CMS 4.1.x Documentation
authoring to being published. Overview django CMS is a modern web publishing platform built with Django [https://www.djangoproject.com], the web application framework “for perfectionists with deadlines”. django developer documentation. To get an overview on how to use django CMS, see the django CMS User Guide [https://user-guide.django-cms.org/]. Tutorials Start here as a new django CMS developer: installation using Association [https://www.django-cms.org/en/about-us/] is a non-profit organisation that exists to support the development of django CMS and its community. Discord Join our friendly Discord server [https://dis0 码力 | 518 页 | 1.66 MB | 6 月前3Object Lifetime: From Start to Finish
Object Lifetime From Start to Finish Thamara Andrade | https://thamara.dev/34 Me finally understanding why my code was failing… ... and realizing I didn’t really understand the rules for object Design Systems • Learning C++ since 2013 • Can’t decide if ‘std::’ is pronounced /stʌd/ or s-t-d https://thamara.dev/ 9 Hi, I’m Thamara (she/her)1011Allocation when Deallocation when static program begins }; int main() { Foo* a = nullptr; { a = new Foo(); } delete a; } 1 2 3 4 5 6 7 8 9 10 11 https://godbolt.org/z/hY7hr5Efr 32 Constructors & Destructors (2)struct Foo { Foo() { std::cout << "Foo()"0 码力 | 214 页 | 9.34 MB | 5 月前3MACRO-FREE TESTING WITH C++20
MACRO-FREE TESTING MACRO-FREE TESTING WITH C++20 WITH C++20 | | | | HTTPS://BOOST-EXT.GITHUB.IO/UT/CPPCON-2020 HTTPS://BOOST-EXT.GITHUB.IO/UT/CPPCON-2020 KRIS@JUSIAK.NET KRIS@JUSIAK.NET @KRISJUSIAK 1 / 14UT - UT - HTTPS://GITHUB.COM/BOOST-EXT/UT HTTPS://GITHUB.COM/BOOST-EXT/UT 2 / 14UT - UT - C++20 ( C++20 ( , , ) (*) LIMITATIONS MAY APPLY (*) LIMITATIONS MAY APPLY HTTPS://GITHUB.COM/BOOST-EXT/UT COM/BOOST-EXT/UT HTTPS://GITHUB.COM/BOOST-EXT/UT GCC-9+, CLANG-9.0+, APPLE CLANG-11.0.0+ GCC-9+, CLANG-9.0+, APPLE CLANG-11.0.0+ MSVC-2019+* MSVC-2019+* 2 / 14UT - UT - C++20 ( C++20 ( , , ) SINGLE SINGLE0 码力 | 53 页 | 1.98 MB | 5 月前3Noexcept: Enabling Testing of Contract Checks
16Copyright (c) Timur Doumler | @timur_audio | https://timur.audio 17 Copyright (c) Timur Doumler | @timur_audio | https://timur.audio Unit testing In the original presentation Copyright (c) Timur Doumler | @timur_audio | https://timur.audio 18 Copyright (c) Timur Doumler | @timur_audio | https://timur.audio Unit testing Contracts and unit testing complement Copyright (c) Timur Doumler | @timur_audio | https://timur.audio 19 Copyright (c) Timur Doumler | @timur_audio | https://timur.audio Let's unit-test a function with a narrow contractCopyright0 码力 | 90 页 | 1.38 MB | 5 月前3Django CMS 3.9.x Documentation
django CMS documentation Overview django CMS is a modern web publishing platform built with Django [https://www.djangoproject.com], the web application framework “for perfectionists with deadlines”. django Association [https://www.django-cms.org/en/about-us/] is a non-profit organisation that exists to support the development of django CMS and its community. Slack Join our friendly Slack group [https://www.django-cms Discourse forum [https://discourse.django-cms.org] is also used for discussion of django CMS, particularly to manage its technical development process. StackOverflow StackOverflow [https://stackoverflow0 码力 | 417 页 | 1.68 MB | 6 月前3Django CMS 3.8.x Documentation
django CMS documentation Overview django CMS is a modern web publishing platform built with Django [https://www.djangoproject.com], the web application framework “for perfectionists with deadlines”. django IRC channel using the KiwiIRC web client [https://kiwiirc.com/client/irc.freenode.net/django- cms], which works pretty well. Our django CMS users email list [https://groups.google.com/forum/#!forum/django-cms] the django CMS developers email list [https://groups.google.com/forum/#!forum/django-cms- developers] for the development of django CMS. Our StackOverflow [https://stackoverflow.com/questions/tagged/django-cms]0 码力 | 413 页 | 1.67 MB | 6 月前3Back to Basics: Generic Programming
v0, U v1) : m0(v0), m1(v1) { } T first() const { return m0; } U second() const { return m1; } }; https://godbolt.org/z/rejh9YPhK13 David Olsen – Generic Programming CppCon 2024 Class Template Definition v0, U v1) : m0(v0), m1(v1) { } T first() const { return m0; } U second() const { return m1; } }; https://godbolt.org/z/rejh9YPhK14 David Olsen – Generic Programming CppCon 2024 Class Template Definition v0, U v1) : m0(v0), m1(v1) { } T first() const { return m0; } U second() const { return m1; } }; https://godbolt.org/z/rejh9YPhK15 David Olsen – Generic Programming CppCon 2024 Class Template Definition0 码力 | 175 页 | 1.16 MB | 5 月前3
共 342 条
- 1
- 2
- 3
- 4
- 5
- 6
- 35