hexsha
stringlengths
40
40
size
int64
5
1.05M
ext
stringclasses
588 values
lang
stringclasses
305 values
max_stars_repo_path
stringlengths
3
363
max_stars_repo_name
stringlengths
5
118
max_stars_repo_head_hexsha
stringlengths
40
40
max_stars_repo_licenses
listlengths
1
10
max_stars_count
float64
1
191k
max_stars_repo_stars_event_min_datetime
stringdate
2015-01-01 00:00:35
2022-03-31 23:43:49
max_stars_repo_stars_event_max_datetime
stringdate
2015-01-01 12:37:38
2022-03-31 23:59:52
max_issues_repo_path
stringlengths
3
363
max_issues_repo_name
stringlengths
5
118
max_issues_repo_head_hexsha
stringlengths
40
40
max_issues_repo_licenses
listlengths
1
10
max_issues_count
float64
1
134k
max_issues_repo_issues_event_min_datetime
stringlengths
24
24
max_issues_repo_issues_event_max_datetime
stringlengths
24
24
max_forks_repo_path
stringlengths
3
363
max_forks_repo_name
stringlengths
5
135
max_forks_repo_head_hexsha
stringlengths
40
40
max_forks_repo_licenses
listlengths
1
10
max_forks_count
float64
1
105k
max_forks_repo_forks_event_min_datetime
stringdate
2015-01-01 00:01:02
2022-03-31 23:27:27
max_forks_repo_forks_event_max_datetime
stringdate
2015-01-03 08:55:07
2022-03-31 23:59:24
content
stringlengths
5
1.05M
avg_line_length
float64
1.13
1.04M
max_line_length
int64
1
1.05M
alphanum_fraction
float64
0
1
e25ef76ec6f02e1d96e717aff4941f000570389b
1,029
rst
reStructuredText
odoo-13.0/web_oca/web_notify/readme/USAGE.rst
VaibhavBhujade/Blockchain-ERP-interoperability
b5190a037fb6615386f7cbad024d51b0abd4ba03
[ "MIT" ]
3
2019-04-02T13:52:50.000Z
2019-04-11T03:19:03.000Z
odoo-13.0/web_oca/web_notify/readme/USAGE.rst
VaibhavBhujade/Blockchain-ERP-interoperability
b5190a037fb6615386f7cbad024d51b0abd4ba03
[ "MIT" ]
null
null
null
odoo-13.0/web_oca/web_notify/readme/USAGE.rst
VaibhavBhujade/Blockchain-ERP-interoperability
b5190a037fb6615386f7cbad024d51b0abd4ba03
[ "MIT" ]
1
2019-03-26T06:39:48.000Z
2019-03-26T06:39:48.000Z
To send a notification to the user you just need to call one of the new methods defined on res.users: .. code-block:: python self.env.user.notify_success(message='My success message') or .. code-block:: python self.env.user.notify_danger(message='My danger message') or .. code-block:: python self.env....
24.5
167
0.742468
03cfa6363c5dbfa7e4955bac796c2ec4304e8739
441
rst
reStructuredText
docs/list_of_categories.rst
soukyomi/aiowaifus
7b8c47b01e186ad3b453c294a39c8ab92c646c84
[ "MIT" ]
1
2021-05-01T22:39:54.000Z
2021-05-01T22:39:54.000Z
docs/list_of_categories.rst
soukyomi/aiowaifus
7b8c47b01e186ad3b453c294a39c8ab92c646c84
[ "MIT" ]
null
null
null
docs/list_of_categories.rst
soukyomi/aiowaifus
7b8c47b01e186ad3b453c294a39c8ab92c646c84
[ "MIT" ]
1
2021-05-03T05:16:04.000Z
2021-05-03T05:16:04.000Z
.. _list_of_categories: List of Categories ================== .. _sfw: SFW (Safe For Work) ~~~~~~~~~~~~~~~~~~~ - waifu - neko - shinobu - megumin - bully - cuddle - cry - hug - awoo - kiss - lick - pat - smug - bonk - yeet - smile - wave - highfive - handhold - nom - bite - glomp - kill - slap - happy - wink - poke...
8.647059
24
0.537415
372ecd40c5f0fe65feee8f2b192dc252d2b50e5e
729
rst
reStructuredText
README.rst
simotukiainen/cron-schedule-evaluator
3a2e914cad5a3a3a7c5ef330a23ae98585a066d4
[ "FSFAP" ]
null
null
null
README.rst
simotukiainen/cron-schedule-evaluator
3a2e914cad5a3a3a7c5ef330a23ae98585a066d4
[ "FSFAP" ]
null
null
null
README.rst
simotukiainen/cron-schedule-evaluator
3a2e914cad5a3a3a7c5ef330a23ae98585a066d4
[ "FSFAP" ]
null
null
null
Cron-schedule-evaluator ####################### Cron expression parser and evaluator for Java is a small exercise I worked out for fun. It is archived here for sharing purposes. I may expand on it later as many of the other evaluators I found were either part of a larger scheduling library (that one might not need) ...
38.368421
79
0.759945
a2e43a6353fba52e3e1aaffb2ccb2cfec2cf3155
2,260
rst
reStructuredText
object-oriented-constructs/virtual-methods.rst
hexcoder-/mapping-high-level-constructs-to-llvm-ir
659052d3a055ff9cdf81223e4842ad13aab6bc59
[ "CC-BY-4.0", "CC0-1.0" ]
null
null
null
object-oriented-constructs/virtual-methods.rst
hexcoder-/mapping-high-level-constructs-to-llvm-ir
659052d3a055ff9cdf81223e4842ad13aab6bc59
[ "CC-BY-4.0", "CC0-1.0" ]
null
null
null
object-oriented-constructs/virtual-methods.rst
hexcoder-/mapping-high-level-constructs-to-llvm-ir
659052d3a055ff9cdf81223e4842ad13aab6bc59
[ "CC-BY-4.0", "CC0-1.0" ]
null
null
null
Virtual Methods --------------- A virtual method is no more than a compiler-controlled function pointer. Each virtual method is recorded in the ``vtable``, which is a structure of all the function pointers needed by a given class: .. code-block:: cpp class Foo { public: virtual int GetLengthTimes...
27.228916
79
0.580973
b24dbd6feadaff568780e77821a3d4c004506f1f
118
rst
reStructuredText
docs/ImportFile.py.rst
reeset/COUNTER-5-Report-Tool
6a88663d20eff9434b682fed65ecb64a2cb140f8
[ "MIT" ]
23
2020-05-13T12:11:42.000Z
2022-03-25T06:38:23.000Z
docs/ImportFile.py.rst
reeset/COUNTER-5-Report-Tool
6a88663d20eff9434b682fed65ecb64a2cb140f8
[ "MIT" ]
6
2020-05-01T05:45:46.000Z
2021-07-14T20:21:30.000Z
docs/ImportFile.py.rst
reeset/COUNTER-5-Report-Tool
6a88663d20eff9434b682fed65ecb64a2cb140f8
[ "MIT" ]
3
2020-07-01T22:40:35.000Z
2022-03-24T20:35:06.000Z
ImportFile module ================= .. automodule:: ImportFile :members: :undoc-members: :show-inheritance:
14.75
26
0.59322
c2a6e4a3df2a5612b196cdd6f1b87e2d54cddb2b
204
rst
reStructuredText
doc/devel/tools/index.rst
neurospin/nipy
cc54600a0dca1e003ad393bc05c46f91eef30a68
[ "BSD-3-Clause" ]
1
2016-03-08T15:01:06.000Z
2016-03-08T15:01:06.000Z
doc/devel/tools/index.rst
fperez/nipy
559f17150bd9fa8ead4fd088b330d7cf7db7aa79
[ "BSD-3-Clause" ]
null
null
null
doc/devel/tools/index.rst
fperez/nipy
559f17150bd9fa8ead4fd088b330d7cf7db7aa79
[ "BSD-3-Clause" ]
null
null
null
.. _developer_tools: ================= Developer Tools ================= .. htmlonly:: :Release: |version| :Date: |today| .. toctree:: :maxdepth: 2 tricked_out_emacs virtualenv-tutor
12
22
0.534314
06ed7274c3917e49e04a4cc49a4f8e71971083da
89,805
rst
reStructuredText
docs/nlu/components.rst
sd-z/rasa
4830308fcc21ba3c82f296e510ba7544fb5166d4
[ "Apache-2.0" ]
null
null
null
docs/nlu/components.rst
sd-z/rasa
4830308fcc21ba3c82f296e510ba7544fb5166d4
[ "Apache-2.0" ]
41
2020-07-18T21:47:50.000Z
2022-01-01T14:12:46.000Z
docs/nlu/components.rst
sd-z/rasa
4830308fcc21ba3c82f296e510ba7544fb5166d4
[ "Apache-2.0" ]
1
2020-07-01T12:07:55.000Z
2020-07-01T12:07:55.000Z
:desc: Customize the components and parameters of Rasa's Machine Learning based Natural Language Understanding pipeline .. _components: Components ========== .. edit-link:: This is a reference of the configuration options for every built-in component in Rasa Open Source. If you want to build a custom compone...
56.233563
146
0.491365
a1a22c8827362dfb14e907836dcfd9e3b012231f
705
rst
reStructuredText
docs/modules/ae_automation.dal.oracle.conan.rst
arrayexpress/ae_auto
78e50cc31997cb5a69d0d74258b6b1a089ba387a
[ "Apache-2.0" ]
null
null
null
docs/modules/ae_automation.dal.oracle.conan.rst
arrayexpress/ae_auto
78e50cc31997cb5a69d0d74258b6b1a089ba387a
[ "Apache-2.0" ]
4
2020-06-05T19:26:42.000Z
2022-03-29T21:55:14.000Z
docs/modules/ae_automation.dal.oracle.conan.rst
arrayexpress/ae_auto
78e50cc31997cb5a69d0d74258b6b1a089ba387a
[ "Apache-2.0" ]
1
2019-03-27T13:15:37.000Z
2019-03-27T13:15:37.000Z
conan Package ============= :mod:`conan` Package -------------------- .. automodule:: ae_automation.dal.oracle.conan :members: :undoc-members: :show-inheritance: :mod:`conan_tasks` Module ------------------------- .. automodule:: ae_automation.dal.oracle.conan.conan_tasks :members: :undoc-member...
19.583333
64
0.590071
8312263e1a4ea9c05d3eebeaaf6f9918313ced3a
1,401
rst
reStructuredText
docs/overview.rst
kashopi/lymph
973a54b3e1d65ffecfd93cf9e5362f057f4868d2
[ "Apache-2.0" ]
null
null
null
docs/overview.rst
kashopi/lymph
973a54b3e1d65ffecfd93cf9e5362f057f4868d2
[ "Apache-2.0" ]
null
null
null
docs/overview.rst
kashopi/lymph
973a54b3e1d65ffecfd93cf9e5362f057f4868d2
[ "Apache-2.0" ]
null
null
null
Overview ======== Terms ~~~~~ .. glossary:: service interface A collection of rpc methods and event listeners that are exposed by a service container. Interfaces are implemented as subclasses of :class:`lymph.Interface`. service container A service container manages rpc and event co...
38.916667
108
0.720914
6fef7f881730dcce89978bb6d8b3677d8331cc37
558
rst
reStructuredText
code/contributors.rst
vbojko/f5-tls-automation
2f4dff3d28f454785185bd635064258afacd2c94
[ "Apache-2.0" ]
1
2021-02-18T19:30:10.000Z
2021-02-18T19:30:10.000Z
code/contributors.rst
vbojko/f5-tls-automation
2f4dff3d28f454785185bd635064258afacd2c94
[ "Apache-2.0" ]
1
2021-08-13T12:31:14.000Z
2021-08-13T12:31:14.000Z
code/contributors.rst
f5devcentral/f5-tls-automation
6659510cca98e74fbea64e0fd8175af196c3205e
[ "Apache-2.0" ]
3
2021-02-04T17:52:59.000Z
2021-04-28T13:59:52.000Z
Contributions ============= Amazing contributions_ from: (Alphabetical) - Jon Calalang (jmcalalang_) - Aaron Laws - Michael OLeary (mikeoleary_) - Vladimir Bojkovic (vbojko_) We welcome all feedback, please open a Issue_ with whats going on. Cheers, The Team .. _contributions: https://github.com/f5devcentral/f5-...
22.32
88
0.752688
feeb8a60a07e41ead51847bd28445b70365ac4c6
2,583
rst
reStructuredText
README.rst
tylernorth/public-transit
e2430078557adf9d2ad03d794ea551a7b06ce145
[ "BSD-2-Clause-FreeBSD" ]
null
null
null
README.rst
tylernorth/public-transit
e2430078557adf9d2ad03d794ea551a7b06ce145
[ "BSD-2-Clause-FreeBSD" ]
null
null
null
README.rst
tylernorth/public-transit
e2430078557adf9d2ad03d794ea551a7b06ce145
[ "BSD-2-Clause-FreeBSD" ]
3
2017-03-17T11:54:09.000Z
2022-01-21T05:07:16.000Z
################### Public Transit API ################### Implements functionality in - `NextBus XML Feed <http://www.nextbus.com/xmlFeedDocs/NextBusXMLFeed.pdf>`_ - `BART API <http://api.bart.gov/docs/overview/index.aspx>`_ - `AC Transit API <https://www.actransit.org/data-api-resource-center>`_ ======= Install ==...
24.367925
100
0.581494
27e8ecd308d9f8090b7e83376d38e7774fdfe9ed
2,132
rst
reStructuredText
docs_source/index.rst
wilsonify/sampyl
fb05a0d04393e4f1691bcc9bc664dbc1b688fc97
[ "MIT" ]
308
2015-06-30T18:16:04.000Z
2022-03-14T17:21:59.000Z
docs_source/index.rst
wilsonify/sampyl
fb05a0d04393e4f1691bcc9bc664dbc1b688fc97
[ "MIT" ]
20
2015-07-02T06:12:20.000Z
2020-11-26T16:06:57.000Z
docs_source/index.rst
wilsonify/sampyl
fb05a0d04393e4f1691bcc9bc664dbc1b688fc97
[ "MIT" ]
66
2015-07-27T11:19:03.000Z
2022-03-24T03:35:53.000Z
.. Sampyl documentation master file, created by sphinx-quickstart on Thu Aug 6 23:09:13 2015. Sampyl: MCMC samplers in Python =============================== Release v\ |version| Sampyl is a Python library implementing Markov Chain Monte Carlo (MCMC) samplers in Python. It's designed for use in Bayesian param...
25.082353
155
0.678236
94245039faa840ca8f9aa08a7c09ef6040b6e75d
4,777
rst
reStructuredText
readme.rst
Godley/MusIc-Parser
23cecafa1fdc0f2d6a87760553572b459f3c9904
[ "MIT" ]
5
2015-07-21T14:06:34.000Z
2018-04-24T19:31:45.000Z
readme.rst
Godley/MusIc-Parser
23cecafa1fdc0f2d6a87760553572b459f3c9904
[ "MIT" ]
37
2015-07-20T17:03:19.000Z
2016-08-08T09:21:40.000Z
readme.rst
Godley/MusIc-Parser
23cecafa1fdc0f2d6a87760553572b459f3c9904
[ "MIT" ]
5
2015-07-24T09:22:52.000Z
2017-03-29T19:13:16.000Z
============ MuseParse: Music Parser ============ .. image:: https://travis-ci.org/Godley/MuseParse.svg?branch=master :target: https://travis-ci.org/Godley/MuseParse .. image:: https://codeclimate.com/github/Godley/MuseParse/badges/gpa.svg :target: https://codeclimate.com/github/Godley/MuseParse :alt: Code C...
39.808333
489
0.740632
899548a914b7f495d6ed1be39884fcf52f842c14
4,030
rst
reStructuredText
docs/source/readme.rst
harlantwood/js-bigchaindb-driver2
698e418d0c845203d9a8a5f1696d2c5f11753bee
[ "Apache-2.0" ]
null
null
null
docs/source/readme.rst
harlantwood/js-bigchaindb-driver2
698e418d0c845203d9a8a5f1696d2c5f11753bee
[ "Apache-2.0" ]
null
null
null
docs/source/readme.rst
harlantwood/js-bigchaindb-driver2
698e418d0c845203d9a8a5f1696d2c5f11753bee
[ "Apache-2.0" ]
null
null
null
BigchainDB JavaScript Driver ============================ .. image:: https://img.shields.io/npm/v/bigchaindb-driver.svg :target: https://www.npmjs.com/package/bigchaindb-driver .. image:: https://codecov.io/gh/bigchaindb/js-bigchaindb-driver/branch/master/graph/badge.svg :target: https://codecov.io/gh/bigchaind...
35.350877
124
0.645409
d982e04d4b31aa600dbf88325b6b5a17409310fe
291
rst
reStructuredText
teach/tutorials/text.rst
TPYBoard/turnipBit
1738724801be844f811f6ed9548c6eac689015f8
[ "MIT" ]
5
2017-07-04T15:27:37.000Z
2018-05-10T06:03:59.000Z
teach/tutorials/text.rst
TPYBoard/turnipBit
1738724801be844f811f6ed9548c6eac689015f8
[ "MIT" ]
null
null
null
teach/tutorials/text.rst
TPYBoard/turnipBit
1738724801be844f811f6ed9548c6eac689015f8
[ "MIT" ]
null
null
null
文本块 ======================= 本教程的目的是初步学习text开发板的拖拽控件 的使用和基本例程讲解, *TurnipBit 文本块* .. toctree:: :maxdepth: 1 text/new.rst text/str.rst text/str1.rst text/len.rst text/notlen.rst text/text.find.rst text/text0.rst text/text1.rst text/upper.rst text/strip.rst text/print.rst
10.777778
23
0.66323
96ad52eba88b2a96255dda9873eb36d5a1543ac8
507
rst
reStructuredText
competenze-digitali-dei-cittadini.rst
italia/strategia-nazionale-competenze-digitali-docs
4b34a7f4128a3cb7d26df2642b0d4349cf568995
[ "CC0-1.0" ]
1
2022-02-14T21:42:12.000Z
2022-02-14T21:42:12.000Z
competenze-digitali-dei-cittadini.rst
italia/strategia-nazionale-competenze-digitali-docs
4b34a7f4128a3cb7d26df2642b0d4349cf568995
[ "CC0-1.0" ]
null
null
null
competenze-digitali-dei-cittadini.rst
italia/strategia-nazionale-competenze-digitali-docs
4b34a7f4128a3cb7d26df2642b0d4349cf568995
[ "CC0-1.0" ]
null
null
null
4. Competenze digitali dei cittadini ==================================== *Includere tutti, non lasciare indietro nessuno* .. toctree:: :maxdepth: 3 :caption: Indice dei contenuti competenze-digitali-dei-cittadini/la-situazione-attuale-3.rst competenze-digitali-dei-cittadini/iniziative-in-corso-3.rst compe...
33.8
72
0.741617
a9b164b367ca9d94587574c36b2029f2c8a4802a
1,533
rst
reStructuredText
docs/source/modules/dashboard/index.rst
FelixMartel/DEVINE
2668fe28dbc3e5ee45d3e64708be3a7ca7a00076
[ "BSD-3-Clause" ]
4
2018-12-17T19:59:33.000Z
2020-11-17T09:15:22.000Z
docs/source/modules/dashboard/index.rst
FelixMartel/DEVINE
2668fe28dbc3e5ee45d3e64708be3a7ca7a00076
[ "BSD-3-Clause" ]
4
2018-12-03T18:11:00.000Z
2018-12-11T02:58:33.000Z
docs/source/modules/dashboard/index.rst
FelixMartel/DEVINE
2668fe28dbc3e5ee45d3e64708be3a7ca7a00076
[ "BSD-3-Clause" ]
1
2019-11-28T20:10:44.000Z
2019-11-28T20:10:44.000Z
Dashboard ######### Description =========== The dashboard is a web based project where we integrate all of the ROS nodes and gives us a centralized operation center. You can subscribe to any ROS topic and see what is being send on any topic and you can also send information to them. It's main goal is to allow us to v...
26.894737
127
0.702544
5aa5e28bde5ca8678ab54ed4cbc00436700ed4c1
6,920
rst
reStructuredText
docs/source/user_guide/connector/DC_DBLP_tut.rst
peterirani/dataprep
3e2ea20d21b5415ed69b5977c826062671a1c755
[ "MIT" ]
1
2021-03-04T23:09:26.000Z
2021-03-04T23:09:26.000Z
docs/source/user_guide/connector/DC_DBLP_tut.rst
peterirani/dataprep
3e2ea20d21b5415ed69b5977c826062671a1c755
[ "MIT" ]
null
null
null
docs/source/user_guide/connector/DC_DBLP_tut.rst
peterirani/dataprep
3e2ea20d21b5415ed69b5977c826062671a1c755
[ "MIT" ]
null
null
null
================================================== Tutorial - Connector for DBLP ================================================== .. toctree:: :maxdepth: 2 Overview ======== Connector is a component in the DataPrep library that aims to simplify the data access by providing a standard API set. The goal is to ...
41.437126
412
0.706358
29b964b4b6f7a76ca6a40eb37e27a572b15a4c62
6,809
rst
reStructuredText
doc/troubleshooting.rst
jlashner/ares
6df2b676ded6bd59082a531641cb1dadd475c8a8
[ "MIT" ]
10
2020-03-26T01:08:10.000Z
2021-12-04T13:02:10.000Z
doc/troubleshooting.rst
jlashner/ares
6df2b676ded6bd59082a531641cb1dadd475c8a8
[ "MIT" ]
25
2020-06-08T14:52:28.000Z
2022-03-08T02:30:54.000Z
doc/troubleshooting.rst
jlashner/ares
6df2b676ded6bd59082a531641cb1dadd475c8a8
[ "MIT" ]
8
2020-03-24T14:11:25.000Z
2021-11-06T06:32:59.000Z
Troubleshooting =============== This page is an attempt to keep track of common errors and instructions for how to fix them. If you encounter a bug not listed below, `fork ares on bitbucket <https://bitbucket.org/mirochaj/ares/fork>`_ and an issue a pull request to contribute your patch, if you have one. Otherwise, sho...
83.036585
713
0.717286
5b3a843373043438f0e5c81d5acd78da01ed1e0d
133
rst
reStructuredText
docs/source/_autosummary/odap.Aerodynamics.scale_height.rst
ReeceHumphreys/ODAP
a1994ee90b0a289c3c4d5d91184153ae76a75501
[ "MIT" ]
3
2022-03-04T21:50:25.000Z
2022-03-29T04:47:07.000Z
docs/source/_autosummary/odap.Aerodynamics.scale_height.rst
ReeceHumphreys/ODAP
a1994ee90b0a289c3c4d5d91184153ae76a75501
[ "MIT" ]
5
2022-01-21T15:43:00.000Z
2022-02-15T02:49:01.000Z
docs/source/_autosummary/odap.Aerodynamics.scale_height.rst
ReeceHumphreys/ODAP
a1994ee90b0a289c3c4d5d91184153ae76a75501
[ "MIT" ]
null
null
null
odap.Aerodynamics.scale\_height =============================== .. currentmodule:: odap.Aerodynamics .. autofunction:: scale_height
22.166667
36
0.609023
73ffbfad37ffa6742f56ce3afef20a28afbabc36
826
rst
reStructuredText
docs/index.rst
dmpayton/qualpay-python
60c4b246e259391d3429622f388d2d314b14e26a
[ "MIT" ]
null
null
null
docs/index.rst
dmpayton/qualpay-python
60c4b246e259391d3429622f388d2d314b14e26a
[ "MIT" ]
null
null
null
docs/index.rst
dmpayton/qualpay-python
60c4b246e259391d3429622f388d2d314b14e26a
[ "MIT" ]
null
null
null
============== qualpay-python ============== Python_ bindings for Qualpay_. :Author: `Derek Payton`_ :Version: 1.0.0 :License: `MIT`_ :Source: `github.com/dmpayton/qualpay-python <https://github.com/dmpayton/qualpay-python>`_ :Docs: `qualpay-python.readthedocs.org <https://qualpay-python.readthedocs.org/>`_ Content...
21.736842
96
0.690073
f89a21e0f0d311a7b89e1d36b26967459d955c25
4,583
rst
reStructuredText
gh-faq.rst
slateny/devguide
aadaba625d7212a08829d9fc8e15e9678469fb45
[ "CC0-1.0" ]
null
null
null
gh-faq.rst
slateny/devguide
aadaba625d7212a08829d9fc8e15e9678469fb45
[ "CC0-1.0" ]
null
null
null
gh-faq.rst
slateny/devguide
aadaba625d7212a08829d9fc8e15e9678469fb45
[ "CC0-1.0" ]
null
null
null
GitHub issues for BPO users =========================== Here are some frequently asked quesions about how to do things in GitHub issues that you used to be able to do on `bpo`_. Before you ask your own question, make sure you read :doc:`tracker` and :doc:`triaging` (specifically including :doc:`gh-labels`) as those p...
38.191667
139
0.697142
2b54697bf923e448820233670fc37d0e5955bf10
3,834
rst
reStructuredText
virtual/lib/python3.6/site-packages/django_category-2.0.1.dist-info/DESCRIPTION.rst
kenmutuma001/galleria
1bbb9fbd3ca8bf7a030dbcbcbd1674d392055d72
[ "Unlicense" ]
null
null
null
virtual/lib/python3.6/site-packages/django_category-2.0.1.dist-info/DESCRIPTION.rst
kenmutuma001/galleria
1bbb9fbd3ca8bf7a030dbcbcbd1674d392055d72
[ "Unlicense" ]
null
null
null
virtual/lib/python3.6/site-packages/django_category-2.0.1.dist-info/DESCRIPTION.rst
kenmutuma001/galleria
1bbb9fbd3ca8bf7a030dbcbcbd1674d392055d72
[ "Unlicense" ]
null
null
null
Django Category =============== **Simple category app providing category and tag models.** .. image:: https://travis-ci.org/praekelt/django-category.svg :target: https://travis-ci.org/praekelt/django-category :alt: Travis .. image:: https://coveralls.io/repos/github/praekelt/django-category/badge.svg?branch=d...
22.552941
229
0.67397
8d59b285e5310a88eca259e98edb3bfb15c42f6f
1,389
rst
reStructuredText
doc/source/simple_network_sim.rst
magicicada/simple_network_sim
f7d31bb97052951658a5954ecba2ffe8fc3f2aa7
[ "BSD-2-Clause" ]
1
2020-05-23T16:01:59.000Z
2020-05-23T16:01:59.000Z
doc/source/simple_network_sim.rst
magicicada/simple_network_sim
f7d31bb97052951658a5954ecba2ffe8fc3f2aa7
[ "BSD-2-Clause" ]
3
2020-06-01T20:02:34.000Z
2021-05-04T13:09:33.000Z
doc/source/simple_network_sim.rst
magicicada/simple_network_sim
f7d31bb97052951658a5954ecba2ffe8fc3f2aa7
[ "BSD-2-Clause" ]
1
2020-04-18T15:03:39.000Z
2020-04-18T15:03:39.000Z
simple\_network\_sim package ============================ .. automodule:: simple_network_sim :members: :undoc-members: :show-inheritance: Submodules ---------- simple\_network\_sim.common module ---------------------------------- .. automodule:: simple_network_sim.common :members: :undoc-members: ...
23.15
65
0.589633
eb23f0f01892b28396224c8c26005e9630242a0a
1,689
rst
reStructuredText
docs/index.rst
dnidever/chronos
dc1c1b5b81f7969ec52ca7e685cb5bd08fe5fe97
[ "MIT" ]
null
null
null
docs/index.rst
dnidever/chronos
dc1c1b5b81f7969ec52ca7e685cb5bd08fe5fe97
[ "MIT" ]
null
null
null
docs/index.rst
dnidever/chronos
dc1c1b5b81f7969ec52ca7e685cb5bd08fe5fe97
[ "MIT" ]
null
null
null
.. chronos documentation master file, created by sphinx-quickstart on Tue Feb 16 13:03:42 2021. You can adapt this file completely to your liking, but it should at least contain the root `toctree` directive. ******* Chronos ******* Introduction ============ |Chronos| [#f1]_ is software to automatically fit i...
23.136986
140
0.619301
e50e976a0435ae97ac2387632053bd5651b5779e
285
rst
reStructuredText
docs/tutorial.rst
timo/zasim
54d8eb329af73700bf0df2be6e753e309e9d8191
[ "BSD-3-Clause" ]
2
2017-05-15T12:24:57.000Z
2018-03-09T10:25:45.000Z
docs/tutorial.rst
timo/zasim
54d8eb329af73700bf0df2be6e753e309e9d8191
[ "BSD-3-Clause" ]
null
null
null
docs/tutorial.rst
timo/zasim
54d8eb329af73700bf0df2be6e753e309e9d8191
[ "BSD-3-Clause" ]
null
null
null
Tutorial section ================ .. toctree:: tutorial/installation tutorial/invocation tutorial/coding_simple_ca tutorial/custom_stepfunc tutorial/custom_computation tutorial/debug_cagen tutorial/simulator_without_cagen tutorial/using_zasim_in_gui
19
36
0.733333
9c0756a68b0254170bb325fbf8270a387d4e8c3a
333
rst
reStructuredText
includes_server_rbac/includes_server_rbac_permissions.rst
nathenharvey/chef-docs
21aa14a43cc0c81db14eb107071f0f7245945df8
[ "CC-BY-3.0" ]
null
null
null
includes_server_rbac/includes_server_rbac_permissions.rst
nathenharvey/chef-docs
21aa14a43cc0c81db14eb107071f0f7245945df8
[ "CC-BY-3.0" ]
null
null
null
includes_server_rbac/includes_server_rbac_permissions.rst
nathenharvey/chef-docs
21aa14a43cc0c81db14eb107071f0f7245945df8
[ "CC-BY-3.0" ]
null
null
null
.. The contents of this file are included in multiple topics. .. This file should not be changed in a way that hinders its ability to appear in multiple documentation sets. Permissions are used in the |chef server| to define how users and groups can interact with objects on the server. Permissions are configured per-...
66.6
158
0.798799
750f6570c4b9406169e4e6342aa3e14690adf855
4,152
rst
reStructuredText
docs/usage.rst
suriyan/geo_sampling
75bc018f37ea9583bdf3cf7fba4565b403aece40
[ "MIT" ]
null
null
null
docs/usage.rst
suriyan/geo_sampling
75bc018f37ea9583bdf3cf7fba4565b403aece40
[ "MIT" ]
null
null
null
docs/usage.rst
suriyan/geo_sampling
75bc018f37ea9583bdf3cf7fba4565b403aece40
[ "MIT" ]
null
null
null
Usage ##### geo_roads --------- Get all the roads in a specific region from OpenStreetMap. :: usage: geo_roads.py [-h] [-c COUNTRY] [-l {1,2,3,4}] [-n NAME] [-t TYPES [TYPES ...]] [-o OUTPUT] [-d DISTANCE] [--no-header] [--plot] Geo roads data optional arguments: -h...
26.113208
197
0.626204
f47ec2982d2d51b7b3061264fa5b5cdc6d20d66b
13,085
rst
reStructuredText
docs/source/CSUI-Storage.rst
wowshakhov/cloudstack-ui
3715031bed2a137019b520c6ee759cdcf08c60b2
[ "Apache-2.0" ]
null
null
null
docs/source/CSUI-Storage.rst
wowshakhov/cloudstack-ui
3715031bed2a137019b520c6ee759cdcf08c60b2
[ "Apache-2.0" ]
null
null
null
docs/source/CSUI-Storage.rst
wowshakhov/cloudstack-ui
3715031bed2a137019b520c6ee759cdcf08c60b2
[ "Apache-2.0" ]
null
null
null
.. _Storage: Storage ---------- .. Contents:: In the *Virtual Machines* -> *Storage* section, you can create and manage drives for virtual machines. Here you can add new disks, create templates and snapshots of a volume, view the list of snapshots for each volume. .. _static/Storage_VolumeManagement.png Drive list...
44.206081
443
0.753687
f58f068afeeb5dc165722aa88cb97ee3abc815eb
73
rst
reStructuredText
sphinxdocs/stability.rst
NymanRobin/crl-interactivesessions
2c1df279cde6c006d1741bed386ebbe2e5faf8ec
[ "BSD-3-Clause" ]
2
2019-04-10T11:13:55.000Z
2019-05-04T17:46:23.000Z
sphinxdocs/stability.rst
NymanRobin/crl-interactivesessions
2c1df279cde6c006d1741bed386ebbe2e5faf8ec
[ "BSD-3-Clause" ]
39
2019-03-04T14:20:24.000Z
2021-12-03T17:14:19.000Z
sphinxdocs/stability.rst
NymanRobin/crl-interactivesessions
2c1df279cde6c006d1741bed386ebbe2e5faf8ec
[ "BSD-3-Clause" ]
5
2019-03-04T14:20:58.000Z
2020-01-22T19:11:00.000Z
.. Copyright (C) 2019, Nokia .. include:: ../stability-tests/README.rst
18.25
42
0.671233
f11f4ba63302f277de52f7ae228e36935e69ae35
613
rst
reStructuredText
docs/source/_autosummary/bluebird.rst
Stoick01/bluebird
a6ab5fcbf42da24ef8268ba6bc110b9eadd9a2ac
[ "MIT" ]
1
2020-08-04T10:44:51.000Z
2020-08-04T10:44:51.000Z
docs/source/_autosummary/bluebird.rst
Stoick01/bluebird
a6ab5fcbf42da24ef8268ba6bc110b9eadd9a2ac
[ "MIT" ]
3
2021-06-02T03:33:48.000Z
2022-03-12T01:00:23.000Z
docs/source/_autosummary/bluebird.rst
Stoick01/bluebird
a6ab5fcbf42da24ef8268ba6bc110b9eadd9a2ac
[ "MIT" ]
null
null
null
bluebird ======== .. automodule:: bluebird .. rubric:: Modules .. autosummary:: :toctree: :template: custom-module-template.rst :recursive: bluebird.activations bluebird.data bluebird.dataloader blue...
12.770833
57
0.569331
333c1607c6c79f581c32d05208b76cc962466828
591
rst
reStructuredText
docs/source/services.rst
astandre/cb-compose-engine-ms
ed4141f57dcb544743fd17fe62001d573ae1efc9
[ "MIT" ]
null
null
null
docs/source/services.rst
astandre/cb-compose-engine-ms
ed4141f57dcb544743fd17fe62001d573ae1efc9
[ "MIT" ]
null
null
null
docs/source/services.rst
astandre/cb-compose-engine-ms
ed4141f57dcb544743fd17fe62001d573ae1efc9
[ "MIT" ]
null
null
null
Services ========= Here we present all the services used to communicate with the other microservices of the system. By default, in the settings.ini is described every address of the other microservices These are the main methods of this class: .. autofunction:: services.discover_intent .. autofunction:: services.d...
22.730769
96
0.783418
8c10e21a69c4f0688c4868bb4a8af3cf31fd6e14
5,224
rst
reStructuredText
source/configuration/modules/imhiredis.rst
inahga/rsyslog-doc
b63fc9a7169766e14adb6e64f78a69e3c16d8eaa
[ "Apache-2.0" ]
77
2015-02-04T11:56:46.000Z
2022-03-11T18:07:07.000Z
source/configuration/modules/imhiredis.rst
inahga/rsyslog-doc
b63fc9a7169766e14adb6e64f78a69e3c16d8eaa
[ "Apache-2.0" ]
412
2015-01-11T13:18:16.000Z
2022-03-30T22:23:20.000Z
source/configuration/modules/imhiredis.rst
inahga/rsyslog-doc
b63fc9a7169766e14adb6e64f78a69e3c16d8eaa
[ "Apache-2.0" ]
263
2015-01-13T11:44:50.000Z
2022-03-07T11:13:34.000Z
***************************** Imhiredis: Redis input plugin ***************************** ==================== ===================================== **Module Name:** **imhiredis** **Author:** Jeremie Jourdin <jeremie.jourdin@advens.fr> ==================== ===================================== Purpo...
28.391304
296
0.678216
3dd19718d12c2c65df291049d18614c4edf2ce4e
1,190
rst
reStructuredText
doc/source/DEVELOP.rst
vishalbelsare/abcpy
72d0d31ae3fa531b69ea3fef39c96af6628ee76f
[ "BSD-3-Clause-Clear" ]
89
2017-02-23T23:34:52.000Z
2022-03-25T20:35:17.000Z
doc/source/DEVELOP.rst
vishalbelsare/abcpy
72d0d31ae3fa531b69ea3fef39c96af6628ee76f
[ "BSD-3-Clause-Clear" ]
35
2017-03-31T13:24:52.000Z
2022-01-09T11:31:38.000Z
doc/source/DEVELOP.rst
vishalbelsare/abcpy
72d0d31ae3fa531b69ea3fef39c96af6628ee76f
[ "BSD-3-Clause-Clear" ]
32
2017-03-22T06:27:43.000Z
2021-09-17T15:50:42.000Z
Branching Scheme ================ We use the branching strategy described in this `blog post <http://nvie.com/posts/a-successful-git-branching-model>`_. Deploy a new Release ==================== This documentation is mainly intended for the main developers. The deployment of new releases is automated using Travis C...
38.387097
118
0.740336
b62eee3c5ee494b90881d25f3d18b694236cbfd5
87
rst
reStructuredText
Misc/NEWS.d/next/Library/2017-08-30-20-27-00.bpo-31292.dKIaZb.rst
praleena/newpython
cb0748d3939c31168ab5d3b80e3677494497d5e3
[ "CNRI-Python-GPL-Compatible" ]
24
2016-05-09T12:15:47.000Z
2020-06-23T11:56:01.000Z
Misc/NEWS.d/next/Library/2017-08-30-20-27-00.bpo-31292.dKIaZb.rst
praleena/newpython
cb0748d3939c31168ab5d3b80e3677494497d5e3
[ "CNRI-Python-GPL-Compatible" ]
4
2022-03-30T01:50:22.000Z
2022-03-30T01:50:28.000Z
Misc/NEWS.d/next/Library/2017-08-30-20-27-00.bpo-31292.dKIaZb.rst
praleena/newpython
cb0748d3939c31168ab5d3b80e3677494497d5e3
[ "CNRI-Python-GPL-Compatible" ]
14
2016-11-01T16:02:43.000Z
2021-06-20T19:25:03.000Z
Fix ``setup.py check --restructuredtext`` for files containing ``include`` directives.
29
45
0.758621
a1cc0e1d9ae65767ae25b5afa34512390b4b0724
2,082
rst
reStructuredText
doc/source/design/soc/hbirdv2.rst
riscv-mcu/hbird-sdk
6327529ae6c46dc37372361cbf125252dfed0886
[ "Apache-2.0" ]
65
2020-10-21T09:36:54.000Z
2022-03-30T07:03:00.000Z
hbird-sdk/doc/source/design/soc/hbirdv2.rst
OpenEDF/e203_hbirdv2
352812b7b157b36fd47c6f33db929247c53c1b07
[ "Apache-2.0" ]
4
2020-11-22T19:05:58.000Z
2021-11-03T05:11:31.000Z
hbird-sdk/doc/source/design/soc/hbirdv2.rst
OpenEDF/e203_hbirdv2
352812b7b157b36fd47c6f33db929247c53c1b07
[ "Apache-2.0" ]
21
2020-08-06T09:14:37.000Z
2022-03-26T11:25:35.000Z
.. _design_soc_hbirdv2: HummingBird SoC V2 ================== HummingBird SoC V2 is an evaluation FPGA SoC based on HummingBird RISC-V Core for customer to evaluate HummingBird Process Core. To get the up to date documentation about this SoC, please click: * `HummingBird SoC V2 online documentation`_ * `HummingBird...
27.394737
86
0.747839
e758aa3fcb3d32061d3140a69032d8e2819b8bad
406
rst
reStructuredText
docs/source/index.rst
ken-mathenge/health_research_portal
e7e5ac8109c002a2d666c27ad076bbe040e00e5f
[ "MIT" ]
1
2020-01-21T10:27:35.000Z
2020-01-21T10:27:35.000Z
docs/source/index.rst
ken-mathenge/health_research_portal
e7e5ac8109c002a2d666c27ad076bbe040e00e5f
[ "MIT" ]
13
2020-03-23T09:25:15.000Z
2020-07-14T12:41:14.000Z
docs/source/index.rst
KennethMathenge/health_research_portal
e7e5ac8109c002a2d666c27ad076bbe040e00e5f
[ "MIT" ]
null
null
null
.. Health Research portal documentation master file, created by sphinx-quickstart on Thu Jan 23 11:32:42 2020. You can adapt this file completely to your liking, but it should at least contain the root `toctree` directive. Welcome to Health Research portal's documentation! ====================================...
31.230769
76
0.652709
2c1491c4e1cb5aa8ceee8bee375e8169041a981c
52
rst
reStructuredText
docs/source/reference/backbone.rst
tarikaltuncu/distanceclosure
15a4663d2697f20c08e34a20a72676f881b66f13
[ "MIT" ]
9
2016-02-12T22:09:47.000Z
2022-02-17T17:02:37.000Z
docs/source/reference/backbone.rst
tarikaltuncu/distanceclosure
15a4663d2697f20c08e34a20a72676f881b66f13
[ "MIT" ]
3
2022-01-13T15:09:35.000Z
2022-02-14T13:50:28.000Z
docs/source/reference/backbone.rst
tarikaltuncu/distanceclosure
15a4663d2697f20c08e34a20a72676f881b66f13
[ "MIT" ]
3
2017-10-27T16:42:41.000Z
2022-01-20T08:54:51.000Z
.. automodule:: distanceclosure.backbone :members:
17.333333
40
0.769231
eb6565665ed35d1baa8b45bf08799338bf1b5ba2
4,536
rst
reStructuredText
docs/tickets/124.rst
khchine5/book
b6272d33d49d12335d25cf0a2660f7996680b1d1
[ "BSD-2-Clause" ]
1
2018-01-12T14:09:58.000Z
2018-01-12T14:09:58.000Z
docs/tickets/124.rst
khchine5/book
b6272d33d49d12335d25cf0a2660f7996680b1d1
[ "BSD-2-Clause" ]
4
2018-02-06T19:53:10.000Z
2019-08-01T21:47:44.000Z
docs/tickets/124.rst
khchine5/book
b6272d33d49d12335d25cf0a2660f7996680b1d1
[ "BSD-2-Clause" ]
null
null
null
:state: closed :module: lino_welfare #124 [closed] : Changements Châtelet Septembre 2014 =================================================== .. currentlanguage:: fr Propositions de changement par :ref:`welcht` en septembre 2014. DONE: - impossible de mettre le mot de passe d'un nouvel utilisateur --> OK - Rende...
33.6
70
0.719356
6a2e590c12b68567620d408c435ff1fc15e13c24
170
rst
reStructuredText
docs/functions/gs_quant.markets.index.Index.visualise_tree.rst
rtsscy/gs-quant
b86e1ddad2ea9551479607ad001f43dfead366e5
[ "Apache-2.0" ]
4
2021-05-11T14:35:53.000Z
2022-03-14T03:52:34.000Z
docs/functions/gs_quant.markets.index.Index.visualise_tree.rst
rtsscy/gs-quant
b86e1ddad2ea9551479607ad001f43dfead366e5
[ "Apache-2.0" ]
null
null
null
docs/functions/gs_quant.markets.index.Index.visualise_tree.rst
rtsscy/gs-quant
b86e1ddad2ea9551479607ad001f43dfead366e5
[ "Apache-2.0" ]
null
null
null
gs\_quant.markets.index.Index.visualise_tree ============================================ .. currentmodule:: gs_quant.markets.index .. automethod:: Index.visualise_tree
28.333333
44
0.594118
c9b71e4fde26c554c4b956875558be002c6ad898
775
rst
reStructuredText
docs/eog/eog-in-practice/cw21/feasibility-stage/feasibility-stage.rst
softwaresaved/event-organisation-guide
c92979ec2882c33cebd0f736101f91659f3c3375
[ "CC-BY-4.0" ]
4
2019-11-07T18:42:08.000Z
2021-12-03T23:56:16.000Z
docs/eog/eog-in-practice/cw21/feasibility-stage/feasibility-stage.rst
softwaresaved/event-organisation-guide
c92979ec2882c33cebd0f736101f91659f3c3375
[ "CC-BY-4.0" ]
85
2019-01-18T17:05:14.000Z
2022-03-07T10:29:45.000Z
docs/eog/eog-in-practice/cw21/feasibility-stage/feasibility-stage.rst
softwaresaved/event-organisation-guide
c92979ec2882c33cebd0f736101f91659f3c3375
[ "CC-BY-4.0" ]
6
2019-07-24T10:45:49.000Z
2020-07-30T14:16:24.000Z
.. _cw21-feasibility-stage: CW21 Feasibility Stage ======================== During the `Feasibility Stage <https://event-organisation-guide.readthedocs.io/en/latest/eog/feasibility-stage.html>`_ , the event idea is being explored more thoroughly. At this stage, various things are needed before a formal sign-off and...
36.904762
253
0.752258
352ac3633f115ff8f6582a30bc0a5eb06e91326c
577
rst
reStructuredText
includes_cookbooks/includes_cookbooks_attribute_file_methods_accessor.rst
trinitronx/chef-docs
948d76fc0c0cffe17ed6b010274dd626f53584c2
[ "CC-BY-3.0" ]
1
2020-02-02T21:57:47.000Z
2020-02-02T21:57:47.000Z
includes_cookbooks/includes_cookbooks_attribute_file_methods_accessor.rst
trinitronx/chef-docs
948d76fc0c0cffe17ed6b010274dd626f53584c2
[ "CC-BY-3.0" ]
null
null
null
includes_cookbooks/includes_cookbooks_attribute_file_methods_accessor.rst
trinitronx/chef-docs
948d76fc0c0cffe17ed6b010274dd626f53584c2
[ "CC-BY-3.0" ]
null
null
null
.. The contents of this file are included in multiple topics. .. This file should not be changed in a way that hinders its ability to appear in multiple documentation sets. Attribute accessor methods are automatically created and the method invocation can be used interchangeably with the keys. For example: .. code-b...
48.083333
147
0.757366
f57befe832919f9b70de35d7f2d32ea3b01f5d77
2,338
rst
reStructuredText
source/javascript/jquery/plugin/scrollable-fixed-header-table.rst
pkimber/my-memory
2ab4c924f1d2869e3c39de9c1af81094b368fb4a
[ "Apache-2.0" ]
null
null
null
source/javascript/jquery/plugin/scrollable-fixed-header-table.rst
pkimber/my-memory
2ab4c924f1d2869e3c39de9c1af81094b368fb4a
[ "Apache-2.0" ]
null
null
null
source/javascript/jquery/plugin/scrollable-fixed-header-table.rst
pkimber/my-memory
2ab4c924f1d2869e3c39de9c1af81094b368fb4a
[ "Apache-2.0" ]
null
null
null
Scrollable Fixed Header Table ***************************** This plug-in works with :doc:`tablesorter`. Links ===== - `Scrollable Fixed Header Table`_ Install ======= :: cd ~/repo/temp/ svn checkout http://jquery-sfht.googlecode.com/svn/trunk/ jquery-sfht cd my/site/static/js/ mkdir jquery-sfht/ cd jqu...
31.173333
130
0.666809
401f9cfedddad484b4a761458f7fd398d7429074
963
rst
reStructuredText
README.rst
autocorr/tcal-polynomial-fitting
405e4dd8d8b722d0cc9c8774bb390bf8d662e9a3
[ "MIT" ]
null
null
null
README.rst
autocorr/tcal-polynomial-fitting
405e4dd8d8b722d0cc9c8774bb390bf8d662e9a3
[ "MIT" ]
null
null
null
README.rst
autocorr/tcal-polynomial-fitting
405e4dd8d8b722d0cc9c8774bb390bf8d662e9a3
[ "MIT" ]
null
null
null
Calibrator monitoring polynomials ================================= Compute time and frequency polynomials from the VLA calibrator monitoring program. This module is to be run with Python v3. Getting started --------------- First, clone or download this repository and run .. code-block:: bash pip install --user...
25.342105
73
0.721703
2bad5c9e2c27d5d5d49ff10ae563e80a8237986d
2,257
rst
reStructuredText
doc/build/dialects/mssql.rst
Dreamsorcerer/sqlalchemy
153671df9d4cd7f2cdb3e14e6221f529269885d9
[ "MIT" ]
5,383
2018-11-27T07:34:03.000Z
2022-03-31T19:40:59.000Z
doc/build/dialects/mssql.rst
Dreamsorcerer/sqlalchemy
153671df9d4cd7f2cdb3e14e6221f529269885d9
[ "MIT" ]
2,719
2018-11-27T07:55:01.000Z
2022-03-31T22:09:44.000Z
doc/build/dialects/mssql.rst
Dreamsorcerer/sqlalchemy
153671df9d4cd7f2cdb3e14e6221f529269885d9
[ "MIT" ]
998
2018-11-28T09:34:38.000Z
2022-03-30T19:04:11.000Z
.. _mssql_toplevel: Microsoft SQL Server ==================== .. automodule:: sqlalchemy.dialects.mssql.base SQL Server SQL Constructs ------------------------- .. currentmodule:: sqlalchemy.dialects.mssql .. autofunction:: try_cast SQL Server Data Types --------------------- As with all SQLAlchemy dialects, all...
17.229008
73
0.681436
b6ab9f07e06fec1d9c49a03939e260365d2396e7
777
rst
reStructuredText
source/lessons/L5/exercise-5.rst
gmwwho/site
ab6f990aa745b614ddc0d62f273d686b032e102c
[ "MIT" ]
140
2019-10-22T18:09:12.000Z
2022-03-30T16:03:39.000Z
source/lessons/L5/exercise-5.rst
gmwwho/site
ab6f990aa745b614ddc0d62f273d686b032e102c
[ "MIT" ]
11
2019-10-23T08:37:05.000Z
2021-03-29T14:53:38.000Z
source/lessons/L5/exercise-5.rst
gmwwho/site
ab6f990aa745b614ddc0d62f273d686b032e102c
[ "MIT" ]
152
2019-10-25T16:34:43.000Z
2022-03-14T08:24:38.000Z
Exercise 5 ========== .. image:: https://img.shields.io/badge/launch-CSC%20notebook-blue.svg :target: https://notebooks.csc.fi/#/blueprint/d189695c52ad4c0d89ef72572e81b16c .. admonition:: Start your assignment You can start working on your copy of Exercise 5 by `accepting the GitHub Classroom assignment <http...
45.705882
174
0.758044
ccd707796f3c9f56b42496da7f16a4c330efb4dc
11,982
rst
reStructuredText
syntax_option_type.rst
exeal/boostjp-regex
240ca818fb0bb6c9ca86d03799039436ed895e03
[ "BSL-1.0" ]
null
null
null
syntax_option_type.rst
exeal/boostjp-regex
240ca818fb0bb6c9ca86d03799039436ed895e03
[ "BSL-1.0" ]
null
null
null
syntax_option_type.rst
exeal/boostjp-regex
240ca818fb0bb6c9ca86d03799039436ed895e03
[ "BSL-1.0" ]
null
null
null
.. Copyright 2006-2007 John Maddock. .. Distributed under the Boost Software License, Version 1.0. .. (See accompanying file LICENSE_1_0.txt or copy at .. http://www.boost.org/LICENSE_1_0.txt). syntax_option_type ================== .. contents:: :depth: 1 :local: .. cpp:type:: implementation_specific_bitmask...
33.752113
327
0.686864
0404615912f39363f410267e8cb1618799e97f59
136
rst
reStructuredText
docs/ref/index.rst
yawd/yawd-elfinder
955d39c8194ee61f1e24f5cd5e4530bb0e6e9b3c
[ "BSD-3-Clause" ]
12
2015-03-26T13:06:11.000Z
2019-04-30T18:30:39.000Z
docs/ref/index.rst
ppetrid/yawd-elfinder
955d39c8194ee61f1e24f5cd5e4530bb0e6e9b3c
[ "BSD-3-Clause" ]
2
2016-02-14T23:53:28.000Z
2016-12-09T21:15:14.000Z
docs/ref/index.rst
ppetrid/yawd-elfinder
955d39c8194ee61f1e24f5cd5e4530bb0e6e9b3c
[ "BSD-3-Clause" ]
24
2015-03-25T11:03:01.000Z
2018-12-04T10:14:11.000Z
********* Reference ********* .. toctree:: :maxdepth: 1 settings other-settings fields connector drivers utils
10.461538
17
0.536765
f5e373bf4876b72df54b1351971fb33071159b1a
373
rst
reStructuredText
docs/source/vbr.utils.rst
a2cps/python-vbr
9d5d4480386d0530450d59157e0da6937320f928
[ "BSD-3-Clause" ]
1
2021-05-26T19:08:29.000Z
2021-05-26T19:08:29.000Z
docs/source/vbr.utils.rst
a2cps/python-vbr
9d5d4480386d0530450d59157e0da6937320f928
[ "BSD-3-Clause" ]
7
2021-05-04T13:12:39.000Z
2022-03-09T21:04:33.000Z
docs/source/vbr.utils.rst
a2cps/python-vbr
9d5d4480386d0530450d59157e0da6937320f928
[ "BSD-3-Clause" ]
2
2021-04-20T14:46:52.000Z
2021-06-07T20:28:28.000Z
vbr.utils package ================= .. automodule:: vbr.utils :members: :undoc-members: :show-inheritance: Subpackages ----------- .. toctree:: :maxdepth: 2 vbr.utils.helpers vbr.utils.redcaptasks Submodules ---------- vbr.utils.time module --------------------- .. automodule:: vbr.utils.time ...
13.321429
30
0.568365
247cb27da0e12f858956508cca5b852afbb8d704
1,020
rst
reStructuredText
docs/locale/en/source/getting-started/firmware-upload.rst
asvin-io/documentation
dc7d648d9f9a77f0fc45fb0d1940b8e22d5c4769
[ "Apache-2.0" ]
1
2020-09-15T08:08:53.000Z
2020-09-15T08:08:53.000Z
docs/locale/en/source/getting-started/firmware-upload.rst
asvin-io/documentation
dc7d648d9f9a77f0fc45fb0d1940b8e22d5c4769
[ "Apache-2.0" ]
null
null
null
docs/locale/en/source/getting-started/firmware-upload.rst
asvin-io/documentation
dc7d648d9f9a77f0fc45fb0d1940b8e22d5c4769
[ "Apache-2.0" ]
2
2020-09-15T08:08:36.000Z
2020-09-24T09:51:45.000Z
Firmware Upload =============== If you have completed the device registration process, then you must have a device in your account. Next, you need a firmware for the device. This can be achieved in two steps. Firstly, create a firmware group by clicking on create new file group button under Firmware menu. When you hav...
60
152
0.764706
79b2df49322ec3e750b7fa0481e849a24d1e9c0e
6,501
rst
reStructuredText
docs/source/container/Level3/index.rst
makotow/NetAppDigitalTransformationLab
7b832bc1660a0cbeaf5da340bf6d2767838fe7c9
[ "MIT" ]
5
2018-07-04T01:34:40.000Z
2020-02-14T20:52:20.000Z
docs/source/container/Level3/index.rst
makotow/NetAppDigitalTransformationLab
7b832bc1660a0cbeaf5da340bf6d2767838fe7c9
[ "MIT" ]
8
2018-08-27T12:48:50.000Z
2019-09-17T15:36:53.000Z
docs/source/container/Level3/index.rst
makotow/NetAppDigitalTransformationLab
7b832bc1660a0cbeaf5da340bf6d2767838fe7c9
[ "MIT" ]
3
2018-07-19T04:43:27.000Z
2020-10-16T05:35:01.000Z
============================================================== Level 3: CI/CDパイプラインを構築 ============================================================== 目的・ゴール: コンテナ化したアプリケーションのCICDを実現する ============================================================= アプリケーションをコンテナ化したら、常にリリース可能な状態、自動でデプロイメントを出来る仕組みをつくるのが迅速な開発をするために必要になります...
27.66383
104
0.72635
3136e33368d497ba81234016a045182b928ba386
92
rst
reStructuredText
docs/source/_autosummary/panstamps.utKit.rst
djones1040/panstamps
b9e67b4dc168846ddb36e4b5f143c136660a0535
[ "MIT" ]
null
null
null
docs/source/_autosummary/panstamps.utKit.rst
djones1040/panstamps
b9e67b4dc168846ddb36e4b5f143c136660a0535
[ "MIT" ]
null
null
null
docs/source/_autosummary/panstamps.utKit.rst
djones1040/panstamps
b9e67b4dc168846ddb36e4b5f143c136660a0535
[ "MIT" ]
null
null
null
panstamps.utKit (*module*) =============== .. automodule:: panstamps.utKit :members:
11.5
31
0.554348
f732fee755ed5da2f37e300e3336a31ef3fe75d3
74
rst
reStructuredText
Misc/NEWS.d/next/Core and Builtins/2017-10-06-02-10-48.bpo-31708.66CCVU.rst
vyas45/cpython
02e82a0596121e7b6fcd1142b60c744e8e254d41
[ "PSF-2.0" ]
null
null
null
Misc/NEWS.d/next/Core and Builtins/2017-10-06-02-10-48.bpo-31708.66CCVU.rst
vyas45/cpython
02e82a0596121e7b6fcd1142b60c744e8e254d41
[ "PSF-2.0" ]
null
null
null
Misc/NEWS.d/next/Core and Builtins/2017-10-06-02-10-48.bpo-31708.66CCVU.rst
vyas45/cpython
02e82a0596121e7b6fcd1142b60c744e8e254d41
[ "PSF-2.0" ]
null
null
null
Allow use of asynchronous generator expressions in synchronous functions.
37
73
0.864865
731e4f0cbac875aa6234d1e2b51f2ba9277eae4c
587
rst
reStructuredText
doc/source/transformations/Histogram.rst
gnafit/gna
c1a58dac11783342c97a2da1b19c97b85bce0394
[ "MIT" ]
5
2019-10-14T01:06:57.000Z
2021-02-02T16:33:06.000Z
doc/source/transformations/Histogram.rst
gnafit/gna
c1a58dac11783342c97a2da1b19c97b85bce0394
[ "MIT" ]
null
null
null
doc/source/transformations/Histogram.rst
gnafit/gna
c1a58dac11783342c97a2da1b19c97b85bce0394
[ "MIT" ]
null
null
null
.. _Histogram: Histogram ~~~~~~~~~ Description ^^^^^^^^^^^ 'Static' transformation. Represents the histogram. See also ``HistEdges`` and ``Rebin`` transformations. Arguments ^^^^^^^^^ * ``size_t`` — number of bins :math:`n` * ``double*`` — array with bin edges of size :math:`n+1` * ``double*`` — array with bin hei...
18.935484
74
0.654174
2aa41470be382c052eb0db441816bd8875751b5b
6,009
rst
reStructuredText
docs/Chapter4/Design.rst
onap/vnfrqts-requirements
6a0388cd6e07f9d002cb21fbd0e46f98767ee442
[ "Apache-2.0", "CC-BY-4.0" ]
3
2018-08-13T12:10:14.000Z
2020-04-30T17:36:56.000Z
docs/Chapter4/Design.rst
onap/vnfrqts-requirements
6a0388cd6e07f9d002cb21fbd0e46f98767ee442
[ "Apache-2.0", "CC-BY-4.0" ]
null
null
null
docs/Chapter4/Design.rst
onap/vnfrqts-requirements
6a0388cd6e07f9d002cb21fbd0e46f98767ee442
[ "Apache-2.0", "CC-BY-4.0" ]
1
2021-10-15T15:00:04.000Z
2021-10-15T15:00:04.000Z
.. Modifications Copyright © 2017-2018 AT&T Intellectual Property. .. Licensed under the Creative Commons License, Attribution 4.0 Intl. (the "License"); you may not use this documentation except in compliance with the License. You may obtain a copy of the License at .. https://creativecommons.org/licenses/by/4...
28.889423
85
0.70461
6de815fe76ef3806249d075ade45f0144b7b700a
7,421
rst
reStructuredText
hc-venv/lib/python3.6/site-packages/croniter-0.3.20.dist-info/DESCRIPTION.rst
niti15/heroku
21233761b3fc3113ce463c52af2ca6290d13e057
[ "BSD-3-Clause" ]
null
null
null
hc-venv/lib/python3.6/site-packages/croniter-0.3.20.dist-info/DESCRIPTION.rst
niti15/heroku
21233761b3fc3113ce463c52af2ca6290d13e057
[ "BSD-3-Clause" ]
1
2020-06-05T19:35:10.000Z
2020-06-05T19:35:10.000Z
hc-venv/lib/python3.6/site-packages/croniter-0.3.20.dist-info/DESCRIPTION.rst
cogzidel/yourhealthchecks
a17315b523beef2e56e657227103212082aa84a7
[ "BSD-3-Clause" ]
1
2018-11-12T03:59:00.000Z
2018-11-12T03:59:00.000Z
Introduction ============ .. contents:: croniter provides iteration for the datetime object with a cron like format. :: _ _ ___ _ __ ___ _ __ (_) |_ ___ _ __ / __| '__/ _ \| '_ \| | __/ _ \ '__| | (__| | | (_) | | | | | || __/ | \___|_| \___/|_| |_|_|\__\___|_| We...
27.083942
118
0.630104
45e82325a21da307d4c733d12febacb2cc6074d5
130
rst
reStructuredText
Misc/NEWS.d/2.7.10.rst
cemeyer/tauthon
2c3328c5272cffa2a544542217181c5828afa7ed
[ "PSF-2.0" ]
473
2017-02-03T04:03:02.000Z
2022-02-12T17:44:25.000Z
Misc/NEWS.d/2.7.10.rst
cemeyer/tauthon
2c3328c5272cffa2a544542217181c5828afa7ed
[ "PSF-2.0" ]
70
2017-02-02T21:20:07.000Z
2022-02-04T15:32:45.000Z
Misc/NEWS.d/2.7.10.rst
cemeyer/tauthon
2c3328c5272cffa2a544542217181c5828afa7ed
[ "PSF-2.0" ]
37
2017-02-11T21:02:34.000Z
2020-11-16T10:51:45.000Z
.. bpo: 22931 .. date: 9589 .. nonce: 4CuWYD .. release date: 2015-05-23 .. section: Library Allow '[' and ']' in cookie values.
16.25
35
0.630769
68ea4d039acb2c039457d7cd492b5bc04b91889b
1,124
rst
reStructuredText
docs/reference/natural.rst
disco-lang/discrete-lang
34eac429d0f033a2ba81d96ef67bb4e1381000a2
[ "BSD-3-Clause" ]
null
null
null
docs/reference/natural.rst
disco-lang/discrete-lang
34eac429d0f033a2ba81d96ef67bb4e1381000a2
[ "BSD-3-Clause" ]
null
null
null
docs/reference/natural.rst
disco-lang/discrete-lang
34eac429d0f033a2ba81d96ef67bb4e1381000a2
[ "BSD-3-Clause" ]
null
null
null
Natural numbers =============== The type of *natural numbers* is written ``N``, ``ℕ``, ``Nat``, or ``Natural`` (Disco always prints it as ``ℕ``, but you can use any of these names when writing code). The natural numbers include the counting numbers 0, 1, 2, 3, 4, 5, ... :doc:`Adding <addition>` or :doc:`multiplying ...
30.378378
70
0.682384
e076bd613d865e1013ed02928be4623f30ce75b2
2,438
rst
reStructuredText
docs/cookbook/logging/index.rst
ericadeckl/opensphere
fa22a53665f48fb53237187b0142700cb65f1cb6
[ "Apache-2.0" ]
1
2020-04-29T23:19:09.000Z
2020-04-29T23:19:09.000Z
docs/cookbook/logging/index.rst
briedinger/opensphere
b6a39abf8f88a16d7308c6f6f67878f50d1e2c78
[ "Apache-2.0" ]
null
null
null
docs/cookbook/logging/index.rst
briedinger/opensphere
b6a39abf8f88a16d7308c6f6f67878f50d1e2c78
[ "Apache-2.0" ]
null
null
null
Logging ======= Problem ------- Your plugin needs to log different types of information to support debugging or usage metrics. Solution -------- Use the OpenSphere logging framework. There are three parts to enable this - adding the logger, using the logger, and adding the applicable :code:`goog.require` entries. ...
42.034483
645
0.757588
43a5d84252a85e3a6824ce23ca8fef48be624fcb
9,605
rst
reStructuredText
classes/es/class_gltfnode.rst
Rindbee/godot-docs-l10n
7d250e8e2af9d33a9089ee2110e57a4749a5dd95
[ "CC-BY-3.0" ]
3
2018-03-28T14:31:07.000Z
2018-04-02T14:01:52.000Z
classes/es/class_gltfnode.rst
Rindbee/godot-docs-l10n
7d250e8e2af9d33a9089ee2110e57a4749a5dd95
[ "CC-BY-3.0" ]
null
null
null
classes/es/class_gltfnode.rst
Rindbee/godot-docs-l10n
7d250e8e2af9d33a9089ee2110e57a4749a5dd95
[ "CC-BY-3.0" ]
null
null
null
:github_url: hide .. Generated automatically by doc/tools/make_rst.py in Godot's source tree. .. DO NOT EDIT THIS FILE, but the GLTFNode.xml source instead. .. The source is found in doc/classes or modules/<name>/doc_classes. .. _class_GLTFNode: GLTFNode ======== **Inherits:** :ref:`Resource<class_Resource>` **<** ...
41.223176
155
0.290682
83427895fc0409328d9a918dc051b80e60a07480
1,556
rst
reStructuredText
docs/api.rst
banagale/drf-turbo
e9a878117936d162b0646b20c39d11fef1088ce0
[ "MIT" ]
73
2021-11-10T12:52:48.000Z
2022-03-21T20:57:51.000Z
docs/api.rst
banagale/drf-turbo
e9a878117936d162b0646b20c39d11fef1088ce0
[ "MIT" ]
2
2021-11-26T20:15:18.000Z
2021-12-02T18:50:16.000Z
docs/api.rst
banagale/drf-turbo
e9a878117936d162b0646b20c39d11fef1088ce0
[ "MIT" ]
8
2021-11-10T12:52:56.000Z
2022-01-08T01:12:29.000Z
************* API Reference ************* Serializer ========== .. currentmodule:: drf_turbo .. autoclass:: BaseSerializer :members: .. autoclass:: Serializer :show-inheritance: :inherited-members: :members: .. autoclass:: ModelSerializer :show-inheritance: :inherited-members: :members: Fi...
14.679245
38
0.633033
61786452227e2e5df31259b71c1b9c4ca69f81d4
91
rst
reStructuredText
docs/api/openomics.set_cache_dir.rst
JonnyTran/open-omics
ef5db2dc2fdf486ee5e9fa4e0cf5be61b4531232
[ "MIT" ]
12
2021-01-14T19:33:48.000Z
2022-01-06T16:13:03.000Z
docs/api/openomics.set_cache_dir.rst
JonnyTran/open-omics
ef5db2dc2fdf486ee5e9fa4e0cf5be61b4531232
[ "MIT" ]
13
2020-12-31T20:38:11.000Z
2021-11-24T06:21:12.000Z
docs/api/openomics.set_cache_dir.rst
JonnyTran/open-omics
ef5db2dc2fdf486ee5e9fa4e0cf5be61b4531232
[ "MIT" ]
7
2021-02-08T13:42:01.000Z
2021-10-21T21:37:14.000Z
set_cache_dir ============= .. currentmodule:: openomics .. autofunction:: set_cache_dir
13
31
0.659341
20f489ebc448fdcfac51725cc82ae9becb686f70
104
rst
reStructuredText
docs/content/image/drawingImages.rst
andyclymer/drawbot
5b160f1765a71ae1c774a7563060fca74a21db8a
[ "BSD-2-Clause" ]
302
2015-01-10T21:13:26.000Z
2022-03-31T21:14:06.000Z
docs/content/image/drawingImages.rst
andyclymer/drawbot
5b160f1765a71ae1c774a7563060fca74a21db8a
[ "BSD-2-Clause" ]
430
2015-04-10T12:48:47.000Z
2022-03-01T21:35:15.000Z
docs/content/image/drawingImages.rst
andyclymer/drawbot
5b160f1765a71ae1c774a7563060fca74a21db8a
[ "BSD-2-Clause" ]
64
2015-01-26T04:12:30.000Z
2022-01-24T11:12:45.000Z
Drawing Images ============== .. autofunction:: drawBot.image(path, (x, y), alpha=1, pageNumber=None)
20.8
72
0.605769
39b1cb9e2250ca9a184603d1ccf6525b5ad74a43
590
rst
reStructuredText
docs/packages/pkg/jsoncpp.rst
Costallat/hunter
dc0d79cb37b30cad6d6472d7143fe27be67e26d5
[ "BSD-2-Clause" ]
440
2019-08-25T13:07:04.000Z
2022-03-30T21:57:15.000Z
docs/packages/pkg/jsoncpp.rst
koinos/hunter
fc17bc391210bf139c55df7f947670c5dff59c57
[ "BSD-2-Clause" ]
401
2019-08-29T08:56:55.000Z
2022-03-30T12:39:34.000Z
docs/packages/pkg/jsoncpp.rst
koinos/hunter
fc17bc391210bf139c55df7f947670c5dff59c57
[ "BSD-2-Clause" ]
162
2019-09-02T13:31:36.000Z
2022-03-30T09:16:54.000Z
.. spelling:: jsoncpp .. index:: json ; jsoncpp .. _pkg.jsoncpp: jsoncpp ======= .. |hunter| image:: https://img.shields.io/badge/hunter-v0.17.19-blue.svg :target: https://github.com/cpp-pm/hunter/releases/tag/v0.17.19 :alt: Hunter v0.17.19 - `Official <https://github.com/open-source-parsers/jsoncpp>`__ ...
22.692308
93
0.70339
30723d3494fc1b2b0c73ee995500c8ee9a14025f
1,811
rst
reStructuredText
docs/getting_started.rst
Miksus/red-base
4c272e8cb2325b51f6293f608a773e011b1d05da
[ "MIT" ]
null
null
null
docs/getting_started.rst
Miksus/red-base
4c272e8cb2325b51f6293f608a773e011b1d05da
[ "MIT" ]
null
null
null
docs/getting_started.rst
Miksus/red-base
4c272e8cb2325b51f6293f608a773e011b1d05da
[ "MIT" ]
null
null
null
.. _tutorial: Tutorial ======== This section covers basic tutorials of Red Bird. Installation ------------ Install the package: .. code-block:: console pip install redbird See `PyPI for Red Bird releases <https://pypi.org/project/redbird/>`_. Configuring Repository ---------------------- The full list of ...
19.473118
77
0.676974
3d89c9c08a51f686378679b7295c3a480fe858fb
454
rst
reStructuredText
docs/usage.rst
simodalla/pympa-organizations
5e7ecd97f35e4dfca70f35554c54cb6afe36eb9d
[ "MIT" ]
null
null
null
docs/usage.rst
simodalla/pympa-organizations
5e7ecd97f35e4dfca70f35554c54cb6afe36eb9d
[ "MIT" ]
null
null
null
docs/usage.rst
simodalla/pympa-organizations
5e7ecd97f35e4dfca70f35554c54cb6afe36eb9d
[ "MIT" ]
null
null
null
===== Usage ===== To use Pympa Organizations in a project, add it to your `INSTALLED_APPS`: .. code-block:: python INSTALLED_APPS = ( ... 'paorganizations.apps.PaorganizationsConfig', ... ) Add Pympa Organizations's URL patterns: .. code-block:: python from paorganizations impo...
16.814815
73
0.601322
fca1c1e8c23b331b9805f5ec6063de73ce03c31f
3,959
rst
reStructuredText
docs/source/rationale.rst
slorquet/elffile2
ae15f7675dca2064ead5a13903d80c79cc6db258
[ "MIT" ]
4
2017-05-23T20:26:47.000Z
2021-02-23T03:53:47.000Z
docs/source/rationale.rst
slorquet/elffile2
ae15f7675dca2064ead5a13903d80c79cc6db258
[ "MIT" ]
null
null
null
docs/source/rationale.rst
slorquet/elffile2
ae15f7675dca2064ead5a13903d80c79cc6db258
[ "MIT" ]
3
2018-05-09T16:46:22.000Z
2021-05-10T15:46:36.000Z
=========== Rationale =========== If you need access to object files other than ELF format then you probably want to look at the `GNU project <http://gnu.org>`_'s BFD library which is distributed with `GDB <http://www.gnu.org/software/gdb>`_ and the `binutils <http://www.gnu.org/software/binutils>`_. It is the only ...
50.75641
95
0.785047
308e97f474693faf9dbaeaa9570382c0d5fe823b
1,147
rst
reStructuredText
docs/source/general/how_to_guides/vitis/gcc_optimization.rst
ultrazohm/ultrazohm_sw
9f6d9e401319186bdce2d1b24d368c54a9dfa8ee
[ "Apache-2.0" ]
3
2021-11-01T05:50:58.000Z
2022-03-22T20:10:20.000Z
docs/source/general/how_to_guides/vitis/gcc_optimization.rst
ultrazohm/ultrazohm_sw
9f6d9e401319186bdce2d1b24d368c54a9dfa8ee
[ "Apache-2.0" ]
null
null
null
docs/source/general/how_to_guides/vitis/gcc_optimization.rst
ultrazohm/ultrazohm_sw
9f6d9e401319186bdce2d1b24d368c54a9dfa8ee
[ "Apache-2.0" ]
1
2022-03-16T16:16:58.000Z
2022-03-16T16:16:58.000Z
=================================== Optimization Levels of the Compiler =================================== * You can tell the compiler to use different levels of optimization. * UltraZohm default for R5 is -O2 * UltraZohm default for A53 is -O3 * It is recommended to keep these options as they are. * `Introduction to...
38.233333
319
0.713165
f671d9bd3fff403369c296daa26d5120caa4b552
253
rst
reStructuredText
docs/api.rst
artemrizhov/django-mail-templated
1b428e7b6e02a5cf775bc83d6f5fd8c5f56d7932
[ "MIT" ]
105
2015-01-01T00:36:49.000Z
2021-07-31T22:47:55.000Z
docs/api.rst
artemrizhov/django-mail-templated
1b428e7b6e02a5cf775bc83d6f5fd8c5f56d7932
[ "MIT" ]
30
2015-02-15T22:26:18.000Z
2021-09-30T05:08:46.000Z
docs/api.rst
artemrizhov/django-mail-templated
1b428e7b6e02a5cf775bc83d6f5fd8c5f56d7932
[ "MIT" ]
19
2015-07-16T19:22:51.000Z
2021-07-31T22:46:04.000Z
API Reference ============= .. automodule:: mail_templated send_mail() ----------- .. autofunction:: mail_templated.send_mail EmailMessage ------------ .. autoclass:: mail_templated.EmailMessage :special-members: __init__ :inherited-members:
14.882353
42
0.652174
c072a9c35a4289f53546d649d040e1c301df7b50
3,923
rst
reStructuredText
Documentation/platforms/xtensa/esp32/boards/esp32-wrover-kit/index.rst
alvin1991/incubator-nuttx
b4fe0422624cfdc5a1925696f6ca7191a6d45326
[ "Apache-2.0" ]
201
2015-01-23T06:06:31.000Z
2022-01-28T22:25:51.000Z
Documentation/platforms/xtensa/esp32/boards/esp32-wrover-kit/index.rst
alvin1991/incubator-nuttx
b4fe0422624cfdc5a1925696f6ca7191a6d45326
[ "Apache-2.0" ]
126
2015-01-02T12:54:29.000Z
2022-02-15T15:01:00.000Z
Documentation/platforms/xtensa/esp32/boards/esp32-wrover-kit/index.rst
alvin1991/incubator-nuttx
b4fe0422624cfdc5a1925696f6ca7191a6d45326
[ "Apache-2.0" ]
380
2015-01-08T10:40:04.000Z
2022-03-19T06:59:50.000Z
============== ESP-WROVER-KIT ============== The `ESP-WROVER-KIT <https://docs.espressif.com/projects/esp-idf/en/latest/esp32/hw-reference/esp32/get-started-wrover-kit.html>`_ is a development board for the ESP32 SoC from Espressif, based on a ESP32-WROVER-B module. .. list-table:: :align: center * - .. figure...
25.309677
221
0.68468
431e482c7d7bf46c2a786262778a048c2f966244
758
rst
reStructuredText
docs/internal_api/index.rst
UXARRAY/uxarray
6fc6af993c4d10194fbb6d7fbcae804bad4b1ad7
[ "Apache-2.0" ]
39
2021-11-09T17:04:02.000Z
2022-03-25T08:35:09.000Z
docs/internal_api/index.rst
UXARRAY/uxarray
6fc6af993c4d10194fbb6d7fbcae804bad4b1ad7
[ "Apache-2.0" ]
17
2021-11-03T19:49:02.000Z
2022-03-31T17:23:54.000Z
docs/internal_api/index.rst
UXARRAY/uxarray
6fc6af993c4d10194fbb6d7fbcae804bad4b1ad7
[ "Apache-2.0" ]
2
2021-11-10T22:19:33.000Z
2021-11-12T20:24:11.000Z
.. currentmodule:: uxarray Internal API ============ This page shows already-implemented Uxarray internal API functions. You can also check the draft `Uxarray API <https://github.com/UXARRAY/uxarray/blob/main/docs/user_api/uxarray_api.md>`_ documentation to see the tentative whole API and let us know if you have any ...
22.294118
86
0.718997
79aed3085407494c88aa3dabb38596c2041e5850
7,563
rst
reStructuredText
docs/quickstart.rst
devtodor/pyeapi-py3
a1b7241d489527fd69d4fb5135f881ebd4dbb970
[ "BSD-3-Clause" ]
null
null
null
docs/quickstart.rst
devtodor/pyeapi-py3
a1b7241d489527fd69d4fb5135f881ebd4dbb970
[ "BSD-3-Clause" ]
null
null
null
docs/quickstart.rst
devtodor/pyeapi-py3
a1b7241d489527fd69d4fb5135f881ebd4dbb970
[ "BSD-3-Clause" ]
null
null
null
Python Client for eAPI ====================== The Python library for Arista's eAPI command API implementation provides a client API work using eAPI and communicating with EOS nodes. The Python library can be used to communicate with EOS either locally (on-box) or remotely (off-box). It uses a standard INI-style conf...
34.692661
79
0.756843
915d2dc2fd01745296c84539fab8749bdc8ada46
506
rst
reStructuredText
docs/index.rst
claus022015/casper_project
0cb807c73489c98e4e7994d1a9500c86578baf3c
[ "MIT" ]
null
null
null
docs/index.rst
claus022015/casper_project
0cb807c73489c98e4e7994d1a9500c86578baf3c
[ "MIT" ]
null
null
null
docs/index.rst
claus022015/casper_project
0cb807c73489c98e4e7994d1a9500c86578baf3c
[ "MIT" ]
null
null
null
.. demo:: <button>Click me!</button> ====================== CasperJS documentation modified by ZXC on May, 15th. ====================== CasperJS_ is a navigation scripting & testing utility for the PhantomJS_ (WebKit) and SlimerJS_ (Gecko) headless browsers, written in Javascript. .. figure:: _static/images/cas...
22
145
0.644269
b4e9d6881328f7363e5a55f3ed4e5924db1e62fc
1,798
rst
reStructuredText
README.rst
cucasf/iol-api
07cadb56a89cf41d47317f321dfcfe3049970287
[ "MIT" ]
null
null
null
README.rst
cucasf/iol-api
07cadb56a89cf41d47317f321dfcfe3049970287
[ "MIT" ]
null
null
null
README.rst
cucasf/iol-api
07cadb56a89cf41d47317f321dfcfe3049970287
[ "MIT" ]
null
null
null
============================================================ iol-api libreria para consumir Invertir Online API en Python ============================================================ .. image:: https://img.shields.io/pypi/v/iol_api.svg :target: https://pypi.python.org/pypi/iol_api .. image:: https://readthedocs.o...
32.107143
122
0.690211
447327ac04ddad30cbd3639c6f86cec247aa64ab
1,680
rst
reStructuredText
api/autoapi/Microsoft/AspNetCore/Mvc/ModelBinding/Validation/IModelValidator/index.rst
JakeGinnivan/Docs
2e8d94b77a6a4197a8a1ad820085fbcadca65cf9
[ "Apache-2.0" ]
13
2019-02-14T19:48:34.000Z
2021-12-24T13:38:23.000Z
api/autoapi/Microsoft/AspNetCore/Mvc/ModelBinding/Validation/IModelValidator/index.rst
JakeGinnivan/Docs
2e8d94b77a6a4197a8a1ad820085fbcadca65cf9
[ "Apache-2.0" ]
null
null
null
api/autoapi/Microsoft/AspNetCore/Mvc/ModelBinding/Validation/IModelValidator/index.rst
JakeGinnivan/Docs
2e8d94b77a6a4197a8a1ad820085fbcadca65cf9
[ "Apache-2.0" ]
3
2017-12-29T18:10:16.000Z
2018-07-24T18:41:45.000Z
IModelValidator Interface ========================= Validates a model value. Namespace :dn:ns:`Microsoft.AspNetCore.Mvc.ModelBinding.Validation` Assemblies * Microsoft.AspNetCore.Mvc.Abstractions ---- .. contents:: :local: Syntax ------ .. code-block:: csharp public interface IMode...
20.487805
240
0.705357
5e1139beccfbc6798ed19e32cf22c9f391bb4fb5
165
rst
reStructuredText
static_websites/python/docs/_sources/api/ndarray/_autogen/mxnet.ndarray.sparse.RowSparseNDArray.tanh.rst
IvyBazan/mxnet.io-v2
fdfd79b1a2c86afb59f27e8700056cd9a32c3181
[ "MIT" ]
null
null
null
static_websites/python/docs/_sources/api/ndarray/_autogen/mxnet.ndarray.sparse.RowSparseNDArray.tanh.rst
IvyBazan/mxnet.io-v2
fdfd79b1a2c86afb59f27e8700056cd9a32c3181
[ "MIT" ]
null
null
null
static_websites/python/docs/_sources/api/ndarray/_autogen/mxnet.ndarray.sparse.RowSparseNDArray.tanh.rst
IvyBazan/mxnet.io-v2
fdfd79b1a2c86afb59f27e8700056cd9a32c3181
[ "MIT" ]
null
null
null
mxnet.ndarray.sparse.RowSparseNDArray.tanh ========================================== .. currentmodule:: mxnet.ndarray.sparse .. automethod:: RowSparseNDArray.tanh
27.5
42
0.6
c81ad5c94f08f4aabbaf262d20999656feeff39a
5,181
rst
reStructuredText
docs/packaging.rst
k-sunako/CryptoMath
467288c26301606ed1667f424e276d81c20ab640
[ "MIT" ]
null
null
null
docs/packaging.rst
k-sunako/CryptoMath
467288c26301606ed1667f424e276d81c20ab640
[ "MIT" ]
1
2021-06-01T22:11:33.000Z
2021-06-01T22:11:33.000Z
docs/packaging.rst
costrouc/python-package-template
1058f8f2ec4a34c0a600072b9eb5fe8d6fcb9b09
[ "MIT" ]
null
null
null
========= Packaging ========= In this section I will talk about how create a simple python package that can be installed using ``python setup.py install``. These are the basics sharing your package with other users. In order to get your package to install with ``pip`` you will need to complete the steps in this guide ...
32.584906
152
0.715885
15570ea10b01b6b7651862f6a6e853377e663dc3
1,818
rst
reStructuredText
source/Prerequisites/Prerequisites-on-Linux.rst
pgiu/AutomatakHelp-2.0
ef3d675bfb15736ac395bdbdecee700ae8b381ff
[ "MS-PL", "Naumen", "Condor-1.1", "Apache-1.1" ]
1
2020-05-25T21:30:54.000Z
2020-05-25T21:30:54.000Z
source/Prerequisites/Prerequisites-on-Linux.rst
pgiu/AutomatakHelp-2.0
ef3d675bfb15736ac395bdbdecee700ae8b381ff
[ "MS-PL", "Naumen", "Condor-1.1", "Apache-1.1" ]
null
null
null
source/Prerequisites/Prerequisites-on-Linux.rst
pgiu/AutomatakHelp-2.0
ef3d675bfb15736ac395bdbdecee700ae8b381ff
[ "MS-PL", "Naumen", "Condor-1.1", "Apache-1.1" ]
null
null
null
Prerequisites on linux ====================== Content --------- ADD an index here!!! g++ 4.6.x --------- The reason the compiler support required is so cutting edge is because of C++11. This was done primarily to reduce the required pieces of Boost. Installation may vary from platform to platform. Ubuntu 12.04 ^^^^^...
22.725
198
0.687019
bb87e4cda12a6546b556effbaed2ca300b6cc5d2
1,040
rst
reStructuredText
reference/NumpyDL-master/docs/index.rst
code4bw/deep-np
f477d7d3bd88bae8cea408926b3cc4509f78c9d0
[ "MIT" ]
186
2017-04-04T07:37:00.000Z
2021-02-25T11:56:48.000Z
reference/NumpyDL-master/docs/index.rst
code4bw/deep-np
f477d7d3bd88bae8cea408926b3cc4509f78c9d0
[ "MIT" ]
9
2017-05-07T12:42:45.000Z
2019-11-06T19:45:33.000Z
reference/NumpyDL-master/docs/index.rst
code4bw/deep-np
f477d7d3bd88bae8cea408926b3cc4509f78c9d0
[ "MIT" ]
74
2017-04-04T06:41:07.000Z
2021-02-19T12:58:36.000Z
Hi, NumpyDL =========== NumpyDL is a simple deep learning library based on pure Python/Numpy. NumpyDL is a work in progress, input is welcome. The project is on `GitHub <https://github.com/oujago/NumpyDL>`_. The main features of NumpyDL are as follows: 1. *Pure* in Numpy 2. *Native* to Python 3. *Automatic differen...
22.608696
77
0.719231
0b22d4c90bd1ea15495e45c4ebce9747f5ffd8f1
259
rst
reStructuredText
readme.rst
planetis-m/cowstrings
17aaae025bc41d239bff34e859bb6086c70e2884
[ "MIT" ]
2
2021-07-22T09:28:35.000Z
2021-11-24T19:25:15.000Z
readme.rst
planetis-m/cowstrings
17aaae025bc41d239bff34e859bb6086c70e2884
[ "MIT" ]
1
2021-07-29T20:15:45.000Z
2021-11-26T16:12:50.000Z
readme.rst
planetis-m/cowstrings
17aaae025bc41d239bff34e859bb6086c70e2884
[ "MIT" ]
null
null
null
==================================================== Copy-On-Write String ==================================================== Copy-On-Write string implementation according to `nim-lang/RFCs#221 <https://github.com/nim-lang/RFCs/issues/221>`_
43.166667
115
0.416988
d3f9e4f8a3d6122796c5dffd624d90319a35240d
902
rst
reStructuredText
README.rst
lamaral/serveradmin
d7444eef49b419dba89f9bf8a4883a82f0f143ac
[ "MIT" ]
43
2017-02-23T17:30:54.000Z
2021-04-14T06:25:51.000Z
README.rst
lamaral/serveradmin
d7444eef49b419dba89f9bf8a4883a82f0f143ac
[ "MIT" ]
55
2017-08-16T16:52:39.000Z
2022-03-30T08:48:06.000Z
README.rst
lamaral/serveradmin
d7444eef49b419dba89f9bf8a4883a82f0f143ac
[ "MIT" ]
15
2017-10-04T18:02:33.000Z
2022-03-25T10:15:12.000Z
.. image:: https://travis-ci.com/innogames/serveradmin.svg?branch=master :target: https://travis-ci.com/innogames/serveradmin :alt: Continuous Integration Status .. image:: https://readthedocs.org/projects/serveradmin/badge/?version=latest :target: https://serveradmin.readthedocs.io/en/latest/?badge=latest...
37.583333
89
0.758315
5037554aad77565e72bd68d984b298ba76900e53
1,583
rst
reStructuredText
docs/users.rst
astronmax/SteganoBot
c4b68b49c0463770dfd365c8df26544957212214
[ "Apache-2.0" ]
null
null
null
docs/users.rst
astronmax/SteganoBot
c4b68b49c0463770dfd365c8df26544957212214
[ "Apache-2.0" ]
null
null
null
docs/users.rst
astronmax/SteganoBot
c4b68b49c0463770dfd365c8df26544957212214
[ "Apache-2.0" ]
null
null
null
VK bot usage guide ======================== --------------------------------------- How to encrypt your data in photos --------------------------------------- In order to encrypt your data in photos you need to: 1) Say "Привет" 2) Say "Зашифровать в фото" 3) In ONE message send the photo as a document an...
34.413043
151
0.567277
7380f0b5f13af47753eb953f6420b0e858f00ad6
701
rst
reStructuredText
docs/hazmat/primitives/asymmetric/utils.rst
elitest/cryptography
7921375c6a8f1d3bd32ecd4c0ba9be0682c5a57a
[ "Apache-2.0", "BSD-3-Clause" ]
1
2015-09-25T16:03:32.000Z
2015-09-25T16:03:32.000Z
docs/hazmat/primitives/asymmetric/utils.rst
elitest/cryptography
7921375c6a8f1d3bd32ecd4c0ba9be0682c5a57a
[ "Apache-2.0", "BSD-3-Clause" ]
null
null
null
docs/hazmat/primitives/asymmetric/utils.rst
elitest/cryptography
7921375c6a8f1d3bd32ecd4c0ba9be0682c5a57a
[ "Apache-2.0", "BSD-3-Clause" ]
null
null
null
.. hazmat:: Asymmetric Utilities ==================== .. currentmodule:: cryptography.hazmat.primitives.asymmetric.utils .. function:: decode_rfc6979_signature(signature) Takes in :rfc:`6979` signatures generated by the DSA/ECDSA signers and returns a tuple ``(r, s)``. :param bytes signature: The sign...
24.172414
74
0.677603
9f7279319900422d913a2c31bcbaf20a49e120d9
2,477
rst
reStructuredText
docs/source/gen/flytectl_update_cluster-resource-attribute.rst
SandraGH5/flytectl
d739d929235e20bd7fce3392b43820a314603f59
[ "Apache-2.0" ]
null
null
null
docs/source/gen/flytectl_update_cluster-resource-attribute.rst
SandraGH5/flytectl
d739d929235e20bd7fce3392b43820a314603f59
[ "Apache-2.0" ]
null
null
null
docs/source/gen/flytectl_update_cluster-resource-attribute.rst
SandraGH5/flytectl
d739d929235e20bd7fce3392b43820a314603f59
[ "Apache-2.0" ]
null
null
null
.. _flytectl_update_cluster-resource-attribute: flytectl update cluster-resource-attribute ------------------------------------------ Updates matchable resources of cluster attributes Synopsis ~~~~~~~~ Updates cluster resource attributes for given project and domain combination or additionally with workflow name....
30.207317
168
0.733549
2496df6184121a2f3a16f2f7ee5ae9438bce134f
14,256
rst
reStructuredText
doc/source/contributor/dev-quickstart.rst
GURUIFENG9139/rocky-mogan
6008c1d12b00e70d2cc651f7bd5d47968fc3aec7
[ "Apache-2.0" ]
null
null
null
doc/source/contributor/dev-quickstart.rst
GURUIFENG9139/rocky-mogan
6008c1d12b00e70d2cc651f7bd5d47968fc3aec7
[ "Apache-2.0" ]
null
null
null
doc/source/contributor/dev-quickstart.rst
GURUIFENG9139/rocky-mogan
6008c1d12b00e70d2cc651f7bd5d47968fc3aec7
[ "Apache-2.0" ]
null
null
null
.. _dev-quickstart: ===================== Developer Quick-Start ===================== This is a quick walkthrough to get you started developing code for Mogan. This assumes you are already familiar with submitting code reviews to an OpenStack project. The gate currently runs the unit tests under Python 2.7, Python 3...
31.892617
215
0.732253
32ea78113d07ef78da35b0808b20b4e60af2b350
1,829
rst
reStructuredText
README.rst
jinzo/django-pluggable-filebrowser
321d663211202baecdf7574f02c09a3e1ede78b6
[ "BSD-3-Clause" ]
1
2015-02-25T03:26:36.000Z
2015-02-25T03:26:36.000Z
README.rst
jinzo/django-pluggable-filebrowser
321d663211202baecdf7574f02c09a3e1ede78b6
[ "BSD-3-Clause" ]
null
null
null
README.rst
jinzo/django-pluggable-filebrowser
321d663211202baecdf7574f02c09a3e1ede78b6
[ "BSD-3-Clause" ]
null
null
null
Django Pluggable FileBrowser ============================ **Media-Management with theme support**. The Django Pluggable FileBrowser is an extension to the `Django <http://www.djangoproject.com>`_ administration interface in order to: * browse directories on your server and upload/delete/edit/rename files. * include ...
31
208
0.742482
444dd421793f555df86acefddec4fa6bcc096f7f
1,774
rst
reStructuredText
docs/index.rst
zonca/iris_pipeline
a4c20a362037a94f66427521bb5cd5da1c918dd7
[ "BSD-3-Clause" ]
null
null
null
docs/index.rst
zonca/iris_pipeline
a4c20a362037a94f66427521bb5cd5da1c918dd7
[ "BSD-3-Clause" ]
38
2019-03-07T01:25:03.000Z
2022-03-01T13:02:29.000Z
docs/index.rst
zonca/iris_pipeline
a4c20a362037a94f66427521bb5cd5da1c918dd7
[ "BSD-3-Clause" ]
1
2019-02-28T02:39:06.000Z
2019-02-28T02:39:06.000Z
*************************** iris_pipeline Documentation *************************** The IRIS Data Reduction System is based on the ``stpipe`` package released by Space Telescope for the James Webb Space Telescope. With ``stpipe`` we can configure each step of a pipeline through one or more text based .INI style files...
23.342105
185
0.688839
476e716e95f841aafb1446368f944ccc125f79f8
882
rst
reStructuredText
docs/source/api/grid/deploy/heroku_node/index.rst
H4LL/PyGrid
62d5ba6f207498ca365c12ac59dbcd11c1337881
[ "Apache-2.0" ]
1
2020-02-18T21:51:01.000Z
2020-02-18T21:51:01.000Z
docs/source/api/grid/deploy/heroku_node/index.rst
jazken/PyGrid
0538a3b84420cccb7e95312fb343c0479319afb4
[ "Apache-2.0" ]
1
2019-12-13T13:30:00.000Z
2019-12-13T13:30:00.000Z
docs/source/api/grid/deploy/heroku_node/index.rst
jazken/PyGrid
0538a3b84420cccb7e95312fb343c0479319afb4
[ "Apache-2.0" ]
null
null
null
:mod:`grid.deploy.heroku_node` ============================== .. py:module:: grid.deploy.heroku_node Module Contents --------------- .. py:class:: HerokuNodeDeployment(grid_name: str, verbose=True, check_deps=True, app_type: str = 'websocket', dev_user: str = 'OpenMined', branch: set = 'dev', env_vars={}) Bases...
25.2
173
0.692744
63dfc04bb102632eaed58df4c7d4fcbcf20bcb34
852
rst
reStructuredText
docs/source/_architecture/_data_services/_database/_views/view_foreign_flavors.rst
hep-gc/cloud-scheduler-2
180d9dc4f8751cf8c8254518e46f83f118187e84
[ "Apache-2.0" ]
3
2020-03-03T03:25:36.000Z
2021-12-03T15:31:39.000Z
docs/source/_architecture/_data_services/_database/_views/view_foreign_flavors.rst
hep-gc/cloud-scheduler-2
180d9dc4f8751cf8c8254518e46f83f118187e84
[ "Apache-2.0" ]
341
2017-06-08T17:27:59.000Z
2022-01-28T19:37:57.000Z
docs/source/_architecture/_data_services/_database/_views/view_foreign_flavors.rst
hep-gc/cloud-scheduler-2
180d9dc4f8751cf8c8254518e46f83f118187e84
[ "Apache-2.0" ]
3
2018-04-25T16:13:20.000Z
2020-04-15T20:03:46.000Z
.. File generated by /opt/cloudscheduler/utilities/schema_doc - DO NOT EDIT .. .. To modify the contents of this file: .. 1. edit the template file ".../cloudscheduler/docs/schema_doc/views/view_foreign_flavors.yaml" .. 2. run the utility ".../cloudscheduler/utilities/schema_doc" .. Database View: view_foreign_fla...
17.387755
99
0.638498
04f5bf233394d0b83194439016db607f8785490e
2,484
rst
reStructuredText
docs/best-practices/Contributing-to-Hibernate.rst
apidae-tourisme/owsi-core-parent-apidae
e1fa228f4c37681ea3baeae6a4d0dc4c9bb8c11c
[ "Apache-2.0" ]
null
null
null
docs/best-practices/Contributing-to-Hibernate.rst
apidae-tourisme/owsi-core-parent-apidae
e1fa228f4c37681ea3baeae6a4d0dc4c9bb8c11c
[ "Apache-2.0" ]
null
null
null
docs/best-practices/Contributing-to-Hibernate.rst
apidae-tourisme/owsi-core-parent-apidae
e1fa228f4c37681ea3baeae6a4d0dc4c9bb8c11c
[ "Apache-2.0" ]
null
null
null
Contributing to Hibernate ========================= Resources --------- * `Full contribution procedure <https://github.com/hibernate/hibernate-orm/wiki/Contributing-Code>`_ * `How to develop using Eclipse <https://developer.jboss.org/wiki/ContributingToHibernateUsingEclipse>`_ (see below for more concrete explanation...
49.68
337
0.741948
5a05d9c8a0a1f987f725b23b7f0fa30feda67d6c
496
rst
reStructuredText
docs/security_mapping/components/auditd/response_to_audit_processing_failures_audit_storage_capacity/control.rst
trevor-vaughan/simp-doc
6c544cab47dc69fc5965a867ec22cb4a7101f007
[ "Apache-2.0" ]
25
2015-07-17T12:12:39.000Z
2022-01-24T07:16:21.000Z
docs/security_mapping/components/auditd/response_to_audit_processing_failures_audit_storage_capacity/control.rst
Akshay-Hegde/simp-doc
e87a3d56f0b9672cc1db6bfb21f9171611a4a660
[ "Apache-2.0" ]
91
2015-05-29T19:32:39.000Z
2022-01-31T22:12:25.000Z
docs/security_mapping/components/auditd/response_to_audit_processing_failures_audit_storage_capacity/control.rst
Akshay-Hegde/simp-doc
e87a3d56f0b9672cc1db6bfb21f9171611a4a660
[ "Apache-2.0" ]
69
2015-05-27T16:15:23.000Z
2021-04-21T07:04:17.000Z
Response To Audit Processing Failures - Audit Storage Capacity -------------------------------------------------------------- Auditd has been configured to handle audit failures or potential failures due to storage capacity. Those settings include: - Send a warning to syslog when there is less than 75Mb of space on ...
45.090909
112
0.689516
d4ec34cf4a58f8cf0c187e36bf1e6832fb023ed9
451
rst
reStructuredText
doc/complex_systems.rst
ComplexNetTSP/CooperativeNetworking
ce74982820ee25c0e68e321976dd03fcfd952d9a
[ "MIT" ]
12
2017-03-23T03:41:29.000Z
2021-05-29T03:20:52.000Z
doc/complex_systems.rst
ComplexNetTSP/CooperativeNetworking
ce74982820ee25c0e68e321976dd03fcfd952d9a
[ "MIT" ]
null
null
null
doc/complex_systems.rst
ComplexNetTSP/CooperativeNetworking
ce74982820ee25c0e68e321976dd03fcfd952d9a
[ "MIT" ]
10
2016-01-20T15:28:06.000Z
2021-06-25T13:52:46.000Z
complex_systems Package ======================= :mod:`complex_systems` Package ------------------------------ .. automodule:: complex_systems.__init__ :members: :undoc-members: :show-inheritance: :mod:`dygraph` Module --------------------- .. automodule:: complex_systems.dygraph :members: :undoc...
16.107143
40
0.574279
07cbc3cd83008e895c61d1e24dd798751892f077
1,080
rst
reStructuredText
source/docs/comprehensions/set_comprehension.rst
LarryBrin/Python-Reference
9a3b94e792c9122c94751183fdcc4cffb3d7ac11
[ "MIT" ]
114
2015-04-04T11:59:38.000Z
2022-03-24T02:18:04.000Z
source/docs/comprehensions/set_comprehension.rst
LarryBrin/Python-Reference
9a3b94e792c9122c94751183fdcc4cffb3d7ac11
[ "MIT" ]
9
2015-10-01T08:22:24.000Z
2021-09-02T19:22:23.000Z
source/docs/comprehensions/set_comprehension.rst
LarryBrin/Python-Reference
9a3b94e792c9122c94751183fdcc4cffb3d7ac11
[ "MIT" ]
123
2015-04-23T21:31:51.000Z
2022-03-31T08:36:04.000Z
==================== {} set comprehension ==================== Description =========== Returns a set based on existing iterables. Syntax ====== **{expression(variable) for variable in input_set [predicate][, …]}** *expression* Optional. An output expression producing members of the new set from members of the input...
20.377358
133
0.575
86fb4684114496ce8abad50cf4a95ae09d0fe9ef
91
rst
reStructuredText
doc/source/api/optimizer.rst
adrenadine33/graphvite
34fc203f96ff13095073c605ecfcae32213e7f6a
[ "Apache-2.0" ]
1,067
2019-07-16T21:02:12.000Z
2022-03-30T10:51:55.000Z
doc/source/api/optimizer.rst
adrenadine33/graphvite
34fc203f96ff13095073c605ecfcae32213e7f6a
[ "Apache-2.0" ]
93
2019-08-06T16:28:48.000Z
2022-03-30T13:53:21.000Z
doc/source/api/optimizer.rst
adrenadine33/graphvite
34fc203f96ff13095073c605ecfcae32213e7f6a
[ "Apache-2.0" ]
152
2019-08-05T14:57:03.000Z
2022-03-31T08:13:39.000Z
graphvite.optimizer =================== .. automodule:: graphvite.optimizer :members:
15.166667
35
0.582418
96849acfaee5612a9a98cbb502d71f439a6e1655
124
rst
reStructuredText
doc/keys.rst
aholkner/bacon
edf3810dcb211942d392a8637945871399b0650d
[ "MIT" ]
37
2015-01-29T17:42:11.000Z
2021-12-14T22:11:33.000Z
doc/keys.rst
aholkner/bacon
edf3810dcb211942d392a8637945871399b0650d
[ "MIT" ]
3
2015-08-13T17:38:05.000Z
2020-09-25T17:21:31.000Z
doc/keys.rst
aholkner/bacon
edf3810dcb211942d392a8637945871399b0650d
[ "MIT" ]
7
2015-02-12T17:54:35.000Z
2022-01-31T14:50:09.000Z
.. currentmodule:: bacon Key code reference ------------------ .. autoclass:: Keys :members: :undoc-members: :noindex:
12.4
24
0.58871
b816c04e4db22f6bd4ddefa7a48581af36a87432
20,408
rst
reStructuredText
source_rst/tutorials/1_getting_started_enterprise/notebook.rst
tokyoquantopian/quantopian-doc-ja
3861745cec8db79daf510f7e86b5433576d7c0c4
[ "CC-BY-4.0" ]
9
2020-04-04T07:31:21.000Z
2020-06-13T05:07:46.000Z
source_rst/tutorials/1_getting_started_enterprise/notebook.rst
tokyoquantopian/quantopian-doc-ja
3861745cec8db79daf510f7e86b5433576d7c0c4
[ "CC-BY-4.0" ]
80
2020-04-04T07:29:50.000Z
2020-10-31T05:04:38.000Z
source_rst/tutorials/1_getting_started_enterprise/notebook.rst
tokyoquantopian/quantopian-doc-ja
3861745cec8db79daf510f7e86b5433576d7c0c4
[ "CC-BY-4.0" ]
3
2020-06-21T00:44:48.000Z
2020-08-09T17:07:28.000Z
Welcome ------- Welcome to Quantopian. In this tutorial, we introduce Quantopian, the problems it aims to solve, and the tools it provides to help you solve those problems. At the end of this lesson, you should have a high level understanding of what you can do with Quantopian. The focus of the tutorial is to get you...
30.596702
199
0.656899
f7d3dfab86f719cf5883496aa989fbed74bbf3b5
4,448
rst
reStructuredText
vendor/mockery/mockery/docs/reference/pass_by_reference_behaviours.rst
junior7695/EnDesarrollo
a9e99fbb41a00273786bbc8168d2cc71d0fbbeb1
[ "MIT" ]
4
2018-05-21T17:58:04.000Z
2018-05-31T08:26:44.000Z
vendor/mockery/mockery/docs/reference/pass_by_reference_behaviours.rst
junior7695/EnDesarrollo
a9e99fbb41a00273786bbc8168d2cc71d0fbbeb1
[ "MIT" ]
null
null
null
vendor/mockery/mockery/docs/reference/pass_by_reference_behaviours.rst
junior7695/EnDesarrollo
a9e99fbb41a00273786bbc8168d2cc71d0fbbeb1
[ "MIT" ]
11
2018-05-14T02:56:40.000Z
2022-03-15T11:44:18.000Z
.. index:: single: Pass-By-Reference Method Parameter Behaviour Preserving Pass-By-Reference Method Parameter Behaviour ======================================================= PHP Class method may accept parameters by reference. In this case, changes made to the parameter (a reference to the original varia...
33.954198
90
0.610612
b237dfff9b28c3fa02ad44c22bd0cee296d692de
423
rst
reStructuredText
readme.rst
fathisiddiqi19/sim-ijasa
525388671bf1ad8cbc1d5a488e374ae81c04b9c0
[ "MIT" ]
null
null
null
readme.rst
fathisiddiqi19/sim-ijasa
525388671bf1ad8cbc1d5a488e374ae81c04b9c0
[ "MIT" ]
null
null
null
readme.rst
fathisiddiqi19/sim-ijasa
525388671bf1ad8cbc1d5a488e374ae81c04b9c0
[ "MIT" ]
null
null
null
################### Apa itu SIM - IJASA ################### SIM - IJASA adalah Sistem informasi Bantuan Logistik Bencana. SIM - IJASA adalah pengembangan dari IJasa yang berfungsi sebagai wadah atau situs untuk menerima donasi bantuan logistik yang akan disalurkan ke lokasi bencana tertentu. ******************* Core...
21.15
170
0.640662
a81b5543e195c9397455f14be63ab530fe9c88cd
3,844
rst
reStructuredText
docs/developer-guide.rst
acumos/model-runner-h2o-model-runner
794e614e56919d9806ebd8f4237099dc74916c6f
[ "Apache-2.0" ]
null
null
null
docs/developer-guide.rst
acumos/model-runner-h2o-model-runner
794e614e56919d9806ebd8f4237099dc74916c6f
[ "Apache-2.0" ]
null
null
null
docs/developer-guide.rst
acumos/model-runner-h2o-model-runner
794e614e56919d9806ebd8f4237099dc74916c6f
[ "Apache-2.0" ]
null
null
null
.. ===============LICENSE_START======================================================= .. Acumos CC-BY-4.0 .. =================================================================================== .. Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved. .. ===============================================...
39.628866
404
0.654006
00a57eb6c56e99c227a012b554c9fe9e20e5eb7d
253
rst
reStructuredText
docs/source/learning/statistical_inference/relative_entropy_of_gaussians.rst
jmann277/blog
a1c91f823d7f86c4d23480690685ac4471e7f64c
[ "BSD-3-Clause", "MIT" ]
null
null
null
docs/source/learning/statistical_inference/relative_entropy_of_gaussians.rst
jmann277/blog
a1c91f823d7f86c4d23480690685ac4471e7f64c
[ "BSD-3-Clause", "MIT" ]
3
2021-09-06T21:03:23.000Z
2021-09-06T21:03:31.000Z
docs/source/learning/statistical_inference/relative_entropy_of_gaussians.rst
jmann277/blog
a1c91f823d7f86c4d23480690685ac4471e7f64c
[ "BSD-3-Clause", "MIT" ]
null
null
null
Relative Entropy of Gaussian Distributions ------------------------------------------ .. admonition:: To Do write out the computation of the relative entropy between two gaussian distributions .. image:: /_static/entropy_of_biased_coin.png
25.3
73
0.640316