content
stringlengths
1
103k
path
stringlengths
8
216
filename
stringlengths
2
179
language
stringclasses
15 values
size_bytes
int64
2
189k
quality_score
float64
0.5
0.95
complexity
float64
0
1
documentation_ratio
float64
0
1
repository
stringclasses
5 values
stars
int64
0
1k
created_date
stringdate
2023-07-10 19:21:08
2025-07-09 19:11:45
license
stringclasses
4 values
is_test
bool
2 classes
file_hash
stringlengths
32
32
import functools\nimport itertools\nimport platform\nimport sys\n\nimport pytest\n\nfrom mpl_toolkits.mplot3d import Axes3D, axes3d, proj3d, art3d\nfrom mpl_toolkits.mplot3d.axes3d import _Quaternion as Quaternion\nimport matplotlib as mpl\nfrom matplotlib.backend_bases import (MouseButton, MouseEvent,\n ...
.venv\Lib\site-packages\mpl_toolkits\mplot3d\tests\test_axes3d.py
test_axes3d.py
Python
92,348
0.75
0.083333
0.065604
python-kit
184
2025-05-28T08:46:09.693315
Apache-2.0
true
6d3430d4990d4d028a4a3ca55f78f828
import platform\n\nimport numpy as np\n\nimport matplotlib as mpl\nfrom matplotlib.colors import same_color\nfrom matplotlib.testing.decorators import image_comparison\nimport matplotlib.pyplot as plt\nfrom mpl_toolkits.mplot3d import art3d\n\n\n@image_comparison(['legend_plot.png'], remove_text=True, style='mpl20')\nd...
.venv\Lib\site-packages\mpl_toolkits\mplot3d\tests\test_legend3d.py
test_legend3d.py
Python
4,343
0.95
0.128205
0.010989
node-utils
422
2025-02-23T22:23:23.170994
BSD-3-Clause
true
bb66322e7cec44494fc2a5ed9bdb2d30
from pathlib import Path\n\n\n# Check that the test directories exist\nif not (Path(__file__).parent / "baseline_images").exists():\n raise OSError(\n 'The baseline image directory does not exist. '\n 'This is most likely because the test data is not installed. '\n 'You may need to install matpl...
.venv\Lib\site-packages\mpl_toolkits\mplot3d\tests\__init__.py
__init__.py
Python
365
0.95
0.1
0.125
awesome-app
106
2025-05-25T16:46:25.954307
Apache-2.0
true
58fdb0c615f036e99765a61f6b25a3a4
\n\n
.venv\Lib\site-packages\mpl_toolkits\mplot3d\tests\__pycache__\conftest.cpython-313.pyc
conftest.cpython-313.pyc
Other
338
0.7
0
0
react-lib
508
2025-05-16T08:49:20.997635
BSD-3-Clause
true
38075aac74c12e9017dfa75cbe58a166
\n\n
.venv\Lib\site-packages\mpl_toolkits\mplot3d\tests\__pycache__\test_art3d.cpython-313.pyc
test_art3d.cpython-313.pyc
Other
4,800
0.8
0
0.052632
vue-tools
151
2025-03-04T20:03:54.124395
BSD-3-Clause
true
3c4797df02e59663aae19b0fb33de19d
\n\n
.venv\Lib\site-packages\mpl_toolkits\mplot3d\tests\__pycache__\test_legend3d.cpython-313.pyc
test_legend3d.cpython-313.pyc
Other
9,152
0.8
0
0
vue-tools
931
2025-06-12T21:12:10.366807
MIT
true
e9a0715569c5beceee0518948faff0d4
\n\n
.venv\Lib\site-packages\mpl_toolkits\mplot3d\tests\__pycache__\__init__.cpython-313.pyc
__init__.cpython-313.pyc
Other
619
0.7
0
0
python-kit
303
2024-09-23T18:28:18.815213
Apache-2.0
true
87863735ef923d958d7cebbfd8541d20
\n\n
.venv\Lib\site-packages\mpl_toolkits\mplot3d\__pycache__\art3d.cpython-313.pyc
art3d.cpython-313.pyc
Other
64,832
0.75
0.044759
0.011421
awesome-app
537
2024-12-12T19:55:44.019745
BSD-3-Clause
false
9547c72ff0ac90bf5458281c50ffc7d2
\n\n
.venv\Lib\site-packages\mpl_toolkits\mplot3d\__pycache__\axis3d.cpython-313.pyc
axis3d.cpython-313.pyc
Other
34,434
0.95
0.017804
0.00627
node-utils
387
2024-10-13T23:22:16.390884
GPL-3.0
false
492cbc7fbbb202bb180cf1c84f571cb3
\n\n
.venv\Lib\site-packages\mpl_toolkits\mplot3d\__pycache__\proj3d.cpython-313.pyc
proj3d.cpython-313.pyc
Other
10,306
0.8
0.022222
0.023438
awesome-app
614
2025-05-18T07:02:41.436482
GPL-3.0
false
cf44c954664ea73c650b823cc9a1bb15
\n\n
.venv\Lib\site-packages\mpl_toolkits\mplot3d\__pycache__\__init__.cpython-313.pyc
__init__.cpython-313.pyc
Other
262
0.7
0
0
python-kit
233
2023-11-23T17:50:28.333693
MIT
false
5af7ad84694ad0d39bad6a46d206cbfa
PEP-561 marker.
.venv\Lib\site-packages\multidict\py.typed
py.typed
Other
15
0.5
0.1
0
react-lib
361
2024-06-03T02:15:00.095461
GPL-3.0
false
c70d6df73a734925e35e5cf39ebd2ff3
import abc\nfrom collections.abc import Iterable, Mapping, MutableMapping\nfrom typing import TYPE_CHECKING, Protocol, TypeVar, Union, overload\n\nif TYPE_CHECKING:\n from ._multidict_py import istr\nelse:\n istr = str\n\n_V = TypeVar("_V")\n_V_co = TypeVar("_V_co", covariant=True)\n_T = TypeVar("_T")\n\n\nclass ...
.venv\Lib\site-packages\multidict\_abc.py
_abc.py
Python
2,402
0.85
0.356164
0
awesome-app
186
2024-11-08T09:10:38.368915
GPL-3.0
false
771255d15793a643bd2b43c86ba971cc
import os\nimport platform\n\nNO_EXTENSIONS = bool(os.environ.get("MULTIDICT_NO_EXTENSIONS"))\n\nPYPY = platform.python_implementation() == "PyPy"\n\nUSE_EXTENSIONS = not NO_EXTENSIONS and not PYPY\n\nif USE_EXTENSIONS:\n try:\n from . import _multidict # type: ignore[attr-defined] # noqa: F401\n except ...
.venv\Lib\site-packages\multidict\_compat.py
_compat.py
Python
422
0.95
0.2
0.090909
node-utils
842
2025-01-12T10:43:44.928484
MIT
false
4f33cf77f6b952d0389c7eca8599b102
MZ
.venv\Lib\site-packages\multidict\_multidict.cp313-win_amd64.pyd
_multidict.cp313-win_amd64.pyd
Other
80,384
0.75
0.049536
0.015674
vue-tools
347
2023-08-01T05:44:03.215400
GPL-3.0
false
8611b21a64982abf3611157bc26b4c3a
import enum\nimport functools\nimport reprlib\nimport sys\nfrom array import array\nfrom collections.abc import (\n ItemsView,\n Iterable,\n Iterator,\n KeysView,\n Mapping,\n ValuesView,\n)\nfrom dataclasses import dataclass\nfrom typing import (\n TYPE_CHECKING,\n Any,\n ClassVar,\n Gene...
.venv\Lib\site-packages\multidict\_multidict_py.py
_multidict_py.py
Python
39,955
0.95
0.28905
0.011342
awesome-app
431
2025-06-26T22:44:22.194966
Apache-2.0
false
8200a4c0d815c6ca7b44161bccc9ef7a
"""Multidict implementation.\n\nHTTP Headers and URL query string require specific data structure:\nmultidict. It behaves mostly like a dict but it can have\nseveral values for the same key.\n"""\n\nfrom typing import TYPE_CHECKING\n\nfrom ._abc import MultiMapping, MutableMultiMapping\nfrom ._compat import USE_EXTENSI...
.venv\Lib\site-packages\multidict\__init__.py
__init__.py
Python
1,227
0.85
0.033898
0
awesome-app
123
2024-03-27T20:52:35.175442
MIT
false
60cd41c5e45b8ed8db9591d34005ce1b
\n\n
.venv\Lib\site-packages\multidict\__pycache__\_abc.cpython-313.pyc
_abc.cpython-313.pyc
Other
5,596
0.8
0.037736
0
react-lib
594
2025-01-02T22:40:09.333089
MIT
false
c52b7bd42aed3d9b341e08a5a3a9ff71
\n\n
.venv\Lib\site-packages\multidict\__pycache__\_compat.cpython-313.pyc
_compat.cpython-313.pyc
Other
692
0.8
0
0
node-utils
555
2024-09-13T01:50:21.730433
Apache-2.0
false
85e51253de2d2fef254512d5ec2176a7
\n\n
.venv\Lib\site-packages\multidict\__pycache__\_multidict_py.cpython-313.pyc
_multidict_py.cpython-313.pyc
Other
66,164
0.75
0.021834
0.01171
node-utils
578
2024-03-16T10:16:36.669489
BSD-3-Clause
false
9d7788398a42151cd7f5580b304e450c
\n\n
.venv\Lib\site-packages\multidict\__pycache__\__init__.cpython-313.pyc
__init__.cpython-313.pyc
Other
1,402
0.95
0.030303
0
vue-tools
137
2024-03-09T15:48:58.289283
MIT
false
17018db3a5dcbd840d358b036e02a7f4
pip\n
.venv\Lib\site-packages\multidict-6.6.3.dist-info\INSTALLER
INSTALLER
Other
4
0.5
0
0
awesome-app
329
2023-09-05T09:47:39.007095
MIT
false
365c9bfeb7d89244f2ce01c1de44cb85
Metadata-Version: 2.4\nName: multidict\nVersion: 6.6.3\nSummary: multidict implementation\nHome-page: https://github.com/aio-libs/multidict\nAuthor: Andrew Svetlov\nAuthor-email: andrew.svetlov@gmail.com\nLicense: Apache License 2.0\nProject-URL: Chat: Matrix, https://matrix.to/#/#aio-libs:matrix.org\nProject-URL: Chat...
.venv\Lib\site-packages\multidict-6.6.3.dist-info\METADATA
METADATA
Other
5,418
0.95
0.040541
0.036036
react-lib
891
2025-04-21T08:45:00.442000
GPL-3.0
false
dd131281a64fd991b16c651e846af22f
multidict-6.6.3.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4\nmultidict-6.6.3.dist-info/METADATA,sha256=JDvaAsOSyJf0vPvPLrfCJW-WMFl06G-qGaOgVhgKPJE,5418\nmultidict-6.6.3.dist-info/RECORD,,\nmultidict-6.6.3.dist-info/WHEEL,sha256=qV0EIPljj1XC_vuSatRWjn02nZIz3N1t8jsZz7HBr2U,101\nmultidict-6.6....
.venv\Lib\site-packages\multidict-6.6.3.dist-info\RECORD
RECORD
Other
1,189
0.7
0
0
react-lib
217
2024-05-23T23:01:51.338959
MIT
false
acf258469d0b1a02e3c0ccdbcd383c10
multidict\n
.venv\Lib\site-packages\multidict-6.6.3.dist-info\top_level.txt
top_level.txt
Other
10
0.5
0
0
node-utils
413
2025-06-12T19:38:33.757253
Apache-2.0
false
c25c8390af673b8ed2d00811b61fe34b
Wheel-Version: 1.0\nGenerator: setuptools (80.9.0)\nRoot-Is-Purelib: false\nTag: cp313-cp313-win_amd64\n\n
.venv\Lib\site-packages\multidict-6.6.3.dist-info\WHEEL
WHEEL
Other
101
0.7
0
0
node-utils
897
2025-01-19T17:04:59.467758
Apache-2.0
false
eb6c9e665bbbd698545236600675f165
Copyright 2016 Andrew Svetlov and aio-libs contributors\n\n Licensed under the Apache License, Version 2.0 (the "License");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by ...
.venv\Lib\site-packages\multidict-6.6.3.dist-info\licenses\LICENSE
LICENSE
Other
611
0.95
0.076923
0
vue-tools
227
2024-11-01T17:58:01.944226
Apache-2.0
false
b4fef6e4b0828c2401fb983363985b39
#\n# A higher level module for using sockets (or Windows named pipes)\n#\n# multiprocessing/connection.py\n#\n# Copyright (c) 2006-2008, R Oudkerk\n# Licensed to PSF under a Contributor Agreement.\n#\n\n__all__ = [ 'Client', 'Listener', 'Pipe', 'wait' ]\n\nimport errno\nimport io\nimport os\nimport sys\nimport socket\n...
.venv\Lib\site-packages\multiprocess\connection.py
connection.py
Python
41,577
0.95
0.203218
0.17607
python-kit
846
2024-07-15T10:26:09.826234
Apache-2.0
false
59b44a3c7f930da27303a472abb8ee1a
import os\nimport sys\nimport threading\n\nfrom . import process\nfrom . import reduction\n\n__all__ = ()\n\n#\n# Exceptions\n#\n\nclass ProcessError(Exception):\n pass\n\nclass BufferTooShort(ProcessError):\n pass\n\nclass TimeoutError(ProcessError):\n pass\n\nclass AuthenticationError(ProcessError):\n pas...
.venv\Lib\site-packages\multiprocess\context.py
context.py
Python
11,686
0.95
0.230769
0.079208
node-utils
162
2024-02-03T12:15:19.808462
Apache-2.0
false
b76d690801082a7d93e02e86a1b43e83
import errno\nimport os\nimport selectors\nimport signal\nimport socket\nimport struct\nimport sys\nimport threading\nimport warnings\n\nfrom . import connection\nfrom . import process\nfrom .context import reduction\nfrom . import resource_tracker\nfrom . import spawn\nfrom . import util\n\n__all__ = ['ensure_running'...
.venv\Lib\site-packages\multiprocess\forkserver.py
forkserver.py
Python
12,130
0.95
0.178674
0.137584
python-kit
768
2024-08-02T10:40:33.551082
MIT
false
f14a30149ba56af3b303bd7b5c4f0ff4
#\n# Module which supports allocation of memory from an mmap\n#\n# multiprocessing/heap.py\n#\n# Copyright (c) 2006-2008, R Oudkerk\n# Licensed to PSF under a Contributor Agreement.\n#\n\nimport bisect\nfrom collections import defaultdict\nimport mmap\nimport os\nimport sys\nimport tempfile\nimport threading\n\nfrom .c...
.venv\Lib\site-packages\multiprocess\heap.py
heap.py
Python
11,626
0.95
0.189911
0.230769
python-kit
955
2024-06-22T10:10:21.429119
BSD-3-Clause
false
399af6bd83731f60608f3658869d4f3b
#\n# Module providing manager classes for dealing\n# with shared objects\n#\n# multiprocessing/managers.py\n#\n# Copyright (c) 2006-2008, R Oudkerk\n# Licensed to PSF under a Contributor Agreement.\n#\n\n__all__ = [ 'BaseManager', 'SyncManager', 'BaseProxy', 'Token' ]\n\n#\n# Imports\n#\n\nimport sys\nimport threading\...
.venv\Lib\site-packages\multiprocess\managers.py
managers.py
Python
47,675
0.95
0.207971
0.090136
python-kit
451
2024-02-04T21:34:49.690924
MIT
false
b844e22f4b8f54712a87348b2f85620d
#\n# Module providing the `Pool` class for managing a process pool\n#\n# multiprocessing/pool.py\n#\n# Copyright (c) 2006-2008, R Oudkerk\n# Licensed to PSF under a Contributor Agreement.\n#\n\n__all__ = ['Pool', 'ThreadPool']\n\n#\n# Imports\n#\n\nimport collections\nimport itertools\nimport os\nimport queue\nimport t...
.venv\Lib\site-packages\multiprocess\pool.py
pool.py
Python
32,760
0.95
0.213166
0.095471
vue-tools
41
2025-03-18T03:43:33.125286
GPL-3.0
false
acea15a0f22e801e4c3bf5ac4df87dc6
import os\nimport signal\n\nfrom . import util\n\n__all__ = ['Popen']\n\n#\n# Start child process using fork\n#\n\nclass Popen(object):\n method = 'fork'\n\n def __init__(self, process_obj):\n util._flush_std_streams()\n self.returncode = None\n self.finalizer = None\n self._launch(pro...
.venv\Lib\site-packages\multiprocess\popen_fork.py
popen_fork.py
Python
2,374
0.95
0.289157
0.085714
awesome-app
441
2025-03-24T22:42:16.095632
BSD-3-Clause
false
442b11d55359ac4805014c3fab69126b
import io\nimport os\n\nfrom .context import reduction, set_spawning_popen\nif not reduction.HAVE_SEND_HANDLE:\n raise ImportError('No support for sending fds between processes')\nfrom . import forkserver\nfrom . import popen_fork\nfrom . import spawn\nfrom . import util\n\n\n__all__ = ['Popen']\n\n#\n# Wrapper for ...
.venv\Lib\site-packages\multiprocess\popen_forkserver.py
popen_forkserver.py
Python
2,227
0.95
0.22973
0.163934
vue-tools
428
2023-07-12T04:53:27.783873
GPL-3.0
false
eb505f52cdc72b160429aaafbbb60c82
import io\nimport os\n\nfrom .context import reduction, set_spawning_popen\nfrom . import popen_fork\nfrom . import spawn\nfrom . import util\n\n__all__ = ['Popen']\n\n\n#\n# Wrapper for an fd used while launching a process\n#\n\nclass _DupFd(object):\n def __init__(self, fd):\n self.fd = fd\n def detach(s...
.venv\Lib\site-packages\multiprocess\popen_spawn_posix.py
popen_spawn_posix.py
Python
2,029
0.95
0.208333
0.1
node-utils
757
2024-12-25T10:18:26.443057
GPL-3.0
false
2bd77248af91f0a2405fd8873bcc7634
import os\nimport msvcrt\nimport signal\nimport sys\nimport _winapi\n\nfrom .context import reduction, get_spawning_popen, set_spawning_popen\nfrom . import spawn\nfrom . import util\n\n__all__ = ['Popen']\n\n#\n#\n#\n\n# Exit code used by Popen.terminate()\nTERMINATE = 0x10000\nWINEXE = (sys.platform == 'win32' and ge...
.venv\Lib\site-packages\multiprocess\popen_spawn_win32.py
popen_spawn_win32.py
Python
4,353
0.95
0.165468
0.189189
python-kit
690
2023-11-18T05:17:36.722365
MIT
false
af518d5bd1bcfe2563f1370631da81ad
#\n# Module providing the `Process` class which emulates `threading.Thread`\n#\n# multiprocessing/process.py\n#\n# Copyright (c) 2006-2008, R Oudkerk\n# Licensed to PSF under a Contributor Agreement.\n#\n\n__all__ = ['BaseProcess', 'current_process', 'active_children',\n 'parent_process']\n\n#\n# Imports\n#\n...
.venv\Lib\site-packages\multiprocess\process.py
process.py
Python
12,133
0.95
0.186788
0.139037
awesome-app
34
2025-05-13T20:32:01.015193
GPL-3.0
false
e1191a8bee5edb4a60c62bd92205a25a
#\n# Module implementing queues\n#\n# multiprocessing/queues.py\n#\n# Copyright (c) 2006-2008, R Oudkerk\n# Licensed to PSF under a Contributor Agreement.\n#\n\n__all__ = ['Queue', 'SimpleQueue', 'JoinableQueue']\n\nimport sys\nimport os\nimport threading\nimport collections\nimport time\nimport types\nimport weakref\n...
.venv\Lib\site-packages\multiprocess\queues.py
queues.py
Python
12,615
0.95
0.205514
0.130178
python-kit
437
2025-02-09T15:36:24.118225
BSD-3-Clause
false
4a1340efef784d71953ae8efab4a9f43
#\n# Module which deals with pickling of objects.\n#\n# multiprocessing/reduction.py\n#\n# Copyright (c) 2006-2008, R Oudkerk\n# Licensed to PSF under a Contributor Agreement.\n#\n\nfrom abc import ABCMeta\nimport copyreg\nimport functools\nimport io\nimport os\ntry:\n import dill as pickle\nexcept ImportError:\n ...
.venv\Lib\site-packages\multiprocess\reduction.py
reduction.py
Python
9,637
0.95
0.211268
0.119835
awesome-app
980
2025-04-29T06:42:42.380286
MIT
false
2fc913b1bd96ec777d929fc0024fd234
#\n# We use a background thread for sharing fds on Unix, and for sharing sockets on\n# Windows.\n#\n# A client which wants to pickle a resource registers it with the resource\n# sharer and gets an identifier in return. The unpickling process will connect\n# to the resource sharer, sends the identifier and its pid, and...
.venv\Lib\site-packages\multiprocess\resource_sharer.py
resource_sharer.py
Python
5,132
0.95
0.233766
0.067164
vue-tools
172
2023-09-15T11:07:47.415112
MIT
false
4dfb928bcd3c025b515a241999545653
###############################################################################\n# Server process to keep track of unlinked resources (like shared memory\n# segments, semaphores etc.) and clean them.\n#\n# On Unix we run a server process which keeps track of unlinked\n# resources. The server ignores SIGINT and SIGTERM ...
.venv\Lib\site-packages\multiprocess\resource_tracker.py
resource_tracker.py
Python
10,449
0.95
0.205882
0.242678
awesome-app
894
2024-04-23T17:24:09.640486
BSD-3-Clause
false
5ec27cc426ce5b5581280c203d224818
#\n# Module which supports allocation of ctypes objects from shared memory\n#\n# multiprocessing/sharedctypes.py\n#\n# Copyright (c) 2006-2008, R Oudkerk\n# Licensed to PSF under a Contributor Agreement.\n#\n\nimport ctypes\nimport weakref\n\nfrom . import heap\nfrom . import get_context\n\nfrom .context import reducti...
.venv\Lib\site-packages\multiprocess\sharedctypes.py
sharedctypes.py
Python
6,306
0.95
0.208333
0.116162
node-utils
199
2024-07-26T16:33:59.986884
GPL-3.0
false
12da49a7cd8a8a411bd4e270e8af14a2
"""Provides shared memory for direct access across processes.\n\nThe API of this package is currently provisional. Refer to the\ndocumentation for details.\n"""\n\n\n__all__ = [ 'SharedMemory', 'ShareableList' ]\n\n\nfrom functools import partial\nimport mmap\nimport os\nimport errno\nimport struct\nimport secrets\nimp...
.venv\Lib\site-packages\multiprocess\shared_memory.py
shared_memory.py
Python
18,458
0.95
0.20412
0.061538
python-kit
505
2024-10-21T23:56:04.622602
GPL-3.0
false
0a48402a42233e9df692416c2fb255a8
#\n# Code used to start processes when using the spawn or forkserver\n# start methods.\n#\n# multiprocessing/spawn.py\n#\n# Copyright (c) 2006-2008, R Oudkerk\n# Licensed to PSF under a Contributor Agreement.\n#\n\nimport os\nimport sys\nimport runpy\nimport types\n\nfrom . import get_start_method, set_start_method\nfr...
.venv\Lib\site-packages\multiprocess\spawn.py
spawn.py
Python
9,641
0.95
0.179153
0.162055
react-lib
84
2024-04-28T14:05:41.379843
MIT
false
ce82ab738fae56f8e4fc36bbacec205b
#\n# Module implementing synchronization primitives\n#\n# multiprocessing/synchronize.py\n#\n# Copyright (c) 2006-2008, R Oudkerk\n# Licensed to PSF under a Contributor Agreement.\n#\n\n__all__ = [\n 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Condition', 'Event'\n ]\n\nimport threading\nimport sys\nimport...
.venv\Lib\site-packages\multiprocess\synchronize.py
synchronize.py
Python
12,506
0.95
0.231707
0.149254
node-utils
664
2024-12-11T19:52:02.514177
Apache-2.0
false
c7735aca0b9918fd329b27640c348238
#\n# Module providing various facilities to other parts of the package\n#\n# multiprocessing/util.py\n#\n# Copyright (c) 2006-2008, R Oudkerk\n# Licensed to PSF under a Contributor Agreement.\n#\n\nimport os\nimport itertools\nimport sys\nimport weakref\nimport atexit\nimport threading # we want threading to ins...
.venv\Lib\site-packages\multiprocess\util.py
util.py
Python
14,060
0.95
0.211813
0.191919
python-kit
427
2024-05-18T06:56:30.960778
GPL-3.0
false
44e3ad539ea0343c07e5e459873fe044
#!/usr/bin/env python\n#\n# Author: Mike McKerns (mmckerns @caltech and @uqfoundation)\n# Copyright (c) 2024 The Uncertainty Quantification Foundation.\n# License: 3-clause BSD. The full license text is available at:\n# - https://github.com/uqfoundation/multiprocess/blob/master/LICENSE\n'''\n-------------------------...
.venv\Lib\site-packages\multiprocess\__info__.py
__info__.py
Python
7,997
0.95
0.085973
0.037736
vue-tools
563
2025-06-29T21:28:23.532520
Apache-2.0
false
1f08815c727cfe4a809e1a1355529189
#\n# Package analogous to 'threading.py' but using processes\n#\n# multiprocessing/__init__.py\n#\n# This package is intended to duplicate the functionality (and much of\n# the API) of threading.py but uses processes instead of threads. A\n# subpackage 'multiprocessing.dummy' has the same API but is a simple\n# wrappe...
.venv\Lib\site-packages\multiprocess\__init__.py
__init__.py
Python
1,856
0.95
0.136364
0.45283
awesome-app
222
2024-07-22T05:01:14.271061
MIT
false
db5c4f97014ad0259795bed8ac36afac
#\n# Analogue of `multiprocessing.connection` which uses queues instead of sockets\n#\n# multiprocessing/dummy/connection.py\n#\n# Copyright (c) 2006-2008, R Oudkerk\n# Licensed to PSF under a Contributor Agreement.\n#\n\n__all__ = [ 'Client', 'Listener', 'Pipe' ]\n\nfrom queue import Queue\n\n\nfamilies = [None]\n\n\n...
.venv\Lib\site-packages\multiprocess\dummy\connection.py
connection.py
Python
1,598
0.95
0.226667
0.153846
python-kit
407
2024-09-25T08:27:08.726285
BSD-3-Clause
false
c539bf093a05c7fcab38f9434b5de21b
#\n# Support for the API of the multiprocessing package using threads\n#\n# multiprocessing/dummy/__init__.py\n#\n# Copyright (c) 2006-2008, R Oudkerk\n# Licensed to PSF under a Contributor Agreement.\n#\n\n__all__ = [\n 'Process', 'current_process', 'active_children', 'freeze_support',\n 'Lock', 'RLock', 'Semaph...
.venv\Lib\site-packages\multiprocess\dummy\__init__.py
__init__.py
Python
3,061
0.95
0.206349
0.19802
python-kit
628
2025-05-26T00:04:25.346157
Apache-2.0
false
cbbef451063777d332614efa907e5fd8
\n\n
.venv\Lib\site-packages\multiprocess\dummy\__pycache__\connection.cpython-313.pyc
connection.cpython-313.pyc
Other
3,632
0.8
0
0
vue-tools
345
2023-10-22T13:09:53.174357
Apache-2.0
false
6b243f7535f1d518db1c5b884da3669a
\n\n
.venv\Lib\site-packages\multiprocess\dummy\__pycache__\__init__.cpython-313.pyc
__init__.cpython-313.pyc
Other
5,822
0.8
0
0
vue-tools
192
2023-10-20T23:58:08.887083
MIT
false
003303904e7aa3da1a19bbaf3086b2cd
import multiprocessing, sys\n\ndef foo():\n print("123")\n\n# Because "if __name__ == '__main__'" is missing this will not work\n# correctly on Windows. However, we should get a RuntimeError rather\n# than the Windows equivalent of a fork bomb.\n\nif len(sys.argv) > 1:\n multiprocessing.set_start_method(sys.argv...
.venv\Lib\site-packages\multiprocess\tests\mp_fork_bomb.py
mp_fork_bomb.py
Python
448
0.95
0.166667
0.214286
react-lib
122
2025-01-01T11:52:49.456137
BSD-3-Clause
true
b2a4d66d820d7c046cabd1a7d34746b2
import multiprocessing\n\nmultiprocessing.Lock()\n\n\ndef f():\n print("ok")\n\n\nif __name__ == "__main__":\n ctx = multiprocessing.get_context("forkserver")\n modname = "multiprocess.tests.mp_preload"\n # Make sure it's importable\n __import__(modname)\n ctx.set_forkserver_preload([modname])\n pr...
.venv\Lib\site-packages\multiprocess\tests\mp_preload.py
mp_preload.py
Python
365
0.95
0.111111
0.076923
awesome-app
277
2024-07-15T12:30:54.132818
GPL-3.0
true
e0702254b71c3d577579d62d91063221
# tests __main__ module handling in multiprocessing\nfrom test import support\nfrom test.support import import_helper\n# Skip tests if _multiprocessing wasn't built.\nimport_helper.import_module('_multiprocessing')\n\nimport importlib\nimport importlib.machinery\nimport unittest\nimport sys\nimport os\nimport os.path\n...
.venv\Lib\site-packages\multiprocess\tests\test_multiprocessing_main_handling.py
test_multiprocessing_main_handling.py
Python
11,847
0.95
0.15894
0.126984
python-kit
197
2024-11-25T01:50:27.135177
Apache-2.0
true
74c59beee86c87c3a11f105732d8f1a8
#!/usr/bin/env python\n#\n# Author: Mike McKerns (mmckerns @caltech and @uqfoundation)\n# Copyright (c) 2018-2024 The Uncertainty Quantification Foundation.\n# License: 3-clause BSD. The full license text is available at:\n# - https://github.com/uqfoundation/multiprocess/blob/master/LICENSE\n\nimport glob\nimport os\...
.venv\Lib\site-packages\multiprocess\tests\__main__.py
__main__.py
Python
888
0.95
0.121212
0.214286
vue-tools
811
2024-06-05T14:40:08.211138
Apache-2.0
true
e60c56e55cffe108f80503a7920877bd
import unittest\nfrom multiprocess.tests import install_tests_in_module_dict\n\ninstall_tests_in_module_dict(globals(), 'fork', only_type="manager")\n\nif __name__ == '__main__':\n unittest.main()\n
.venv\Lib\site-packages\multiprocess\tests\test_multiprocessing_fork\test_manager.py
test_manager.py
Python
194
0.85
0.142857
0
python-kit
844
2024-08-08T01:35:22.920699
Apache-2.0
true
d82d7fcae0e9b12fd3a6ed54b04e91e3
import unittest\nfrom multiprocess.tests import install_tests_in_module_dict\n\ninstall_tests_in_module_dict(globals(), 'fork', exclude_types=True)\n\nif __name__ == '__main__':\n unittest.main()\n
.venv\Lib\site-packages\multiprocess\tests\test_multiprocessing_fork\test_misc.py
test_misc.py
Python
193
0.85
0.142857
0
node-utils
420
2024-04-03T10:32:18.750886
GPL-3.0
true
11b021a049f317b50a8a5610a0f18603
import unittest\nfrom multiprocess.tests import install_tests_in_module_dict\n\ninstall_tests_in_module_dict(globals(), 'fork', only_type="processes")\n\nif __name__ == '__main__':\n unittest.main()\n
.venv\Lib\site-packages\multiprocess\tests\test_multiprocessing_fork\test_processes.py
test_processes.py
Python
196
0.85
0.142857
0
react-lib
26
2023-08-06T03:17:16.821093
MIT
true
d6bf91b6d8fc0d2dad2d3ad23b87fc1d
import unittest\nfrom multiprocess.tests import install_tests_in_module_dict\n\ninstall_tests_in_module_dict(globals(), 'fork', only_type="threads")\n\nif __name__ == '__main__':\n unittest.main()\n
.venv\Lib\site-packages\multiprocess\tests\test_multiprocessing_fork\test_threads.py
test_threads.py
Python
194
0.85
0.142857
0
react-lib
972
2024-03-24T11:28:39.536981
GPL-3.0
true
2773d7fa9f3cd5aa732ff279334bf472
import os.path\nimport sys\nimport unittest\nfrom test import support\nimport glob\nimport subprocess as sp\npython = sys.executable\ntry:\n import pox\n python = pox.which_python(version=True) or python\nexcept ImportError:\n pass\nshell = sys.platform[:3] == 'win'\n\nif support.PGO:\n raise unittest.SkipT...
.venv\Lib\site-packages\multiprocess\tests\test_multiprocessing_fork\__init__.py
__init__.py
Python
829
0.85
0.222222
0
awesome-app
813
2023-08-25T18:56:58.200615
GPL-3.0
true
e04fbf4066f27e512121b20c7c34328f
\n\n
.venv\Lib\site-packages\multiprocess\tests\test_multiprocessing_fork\__pycache__\test_manager.cpython-313.pyc
test_manager.cpython-313.pyc
Other
491
0.7
0
0
react-lib
478
2025-01-27T18:07:49.617876
MIT
true
7adcbefb90646f990d6f98851b04759e
\n\n
.venv\Lib\site-packages\multiprocess\tests\test_multiprocessing_fork\__pycache__\test_misc.cpython-313.pyc
test_misc.cpython-313.pyc
Other
484
0.7
0
0
react-lib
824
2025-04-26T13:22:44.357315
MIT
true
eee1ddd77f4bd685c841055fbb4fd4dd
\n\n
.venv\Lib\site-packages\multiprocess\tests\test_multiprocessing_fork\__pycache__\test_processes.cpython-313.pyc
test_processes.cpython-313.pyc
Other
495
0.7
0
0
vue-tools
429
2023-09-23T17:07:34.043582
MIT
true
09a694f6437bb5ffa38ee15209770ad8
\n\n
.venv\Lib\site-packages\multiprocess\tests\test_multiprocessing_fork\__pycache__\test_threads.cpython-313.pyc
test_threads.cpython-313.pyc
Other
491
0.7
0
0
react-lib
1,000
2024-06-03T02:48:29.576437
MIT
true
74dcefd486bb8e20ccc9c69db334150d
\n\n
.venv\Lib\site-packages\multiprocess\tests\test_multiprocessing_fork\__pycache__\__init__.cpython-313.pyc
__init__.cpython-313.pyc
Other
1,757
0.8
0.029412
0
python-kit
240
2023-12-16T17:46:07.539427
GPL-3.0
true
dcf9659f2654d5aaa3f5bb86634d0bce
import unittest\nfrom multiprocess.tests import install_tests_in_module_dict\n\ninstall_tests_in_module_dict(globals(), 'forkserver', only_type="manager")\n\nif __name__ == '__main__':\n unittest.main()\n
.venv\Lib\site-packages\multiprocess\tests\test_multiprocessing_forkserver\test_manager.py
test_manager.py
Python
200
0.85
0.142857
0
node-utils
640
2024-03-02T21:47:37.251289
MIT
true
37894ffecb12ccf3d172742b752a3b55
import unittest\nfrom multiprocess.tests import install_tests_in_module_dict\n\ninstall_tests_in_module_dict(globals(), 'forkserver', exclude_types=True)\n\nif __name__ == '__main__':\n unittest.main()\n
.venv\Lib\site-packages\multiprocess\tests\test_multiprocessing_forkserver\test_misc.py
test_misc.py
Python
199
0.85
0.142857
0
python-kit
836
2023-07-18T05:38:59.173626
MIT
true
4223eebeb933e36284ed59da87763b1a
import unittest\nfrom multiprocess.tests import install_tests_in_module_dict\n\ninstall_tests_in_module_dict(globals(), 'forkserver', only_type="processes")\n\nif __name__ == '__main__':\n unittest.main()\n
.venv\Lib\site-packages\multiprocess\tests\test_multiprocessing_forkserver\test_processes.py
test_processes.py
Python
202
0.85
0.142857
0
node-utils
923
2023-12-06T18:58:49.463969
GPL-3.0
true
4c2d68d998784254b07068d1d547fa83
import unittest\nfrom multiprocess.tests import install_tests_in_module_dict\n\ninstall_tests_in_module_dict(globals(), 'forkserver', only_type="threads")\n\nif __name__ == '__main__':\n unittest.main()\n
.venv\Lib\site-packages\multiprocess\tests\test_multiprocessing_forkserver\test_threads.py
test_threads.py
Python
200
0.85
0.142857
0
react-lib
353
2023-11-22T21:07:33.992949
BSD-3-Clause
true
1ba2d707ef5681a827f119891c707595
import os.path\nimport sys\nimport unittest\nfrom test import support\nimport glob\nimport subprocess as sp\npython = sys.executable\ntry:\n import pox\n python = pox.which_python(version=True) or python\nexcept ImportError:\n pass\nshell = sys.platform[:3] == 'win'\n\nif support.PGO:\n raise unittest.SkipT...
.venv\Lib\site-packages\multiprocess\tests\test_multiprocessing_forkserver\__init__.py
__init__.py
Python
738
0.85
0.212121
0
awesome-app
340
2025-06-28T17:13:03.589330
BSD-3-Clause
true
d2fe35c26317dccc677c996b653c68dc
\n\n
.venv\Lib\site-packages\multiprocess\tests\test_multiprocessing_forkserver\__pycache__\test_manager.cpython-313.pyc
test_manager.cpython-313.pyc
Other
503
0.7
0
0
vue-tools
648
2024-06-21T00:50:44.932940
MIT
true
6a45f4ff30a20bbc5dadde06b4574555
\n\n
.venv\Lib\site-packages\multiprocess\tests\test_multiprocessing_forkserver\__pycache__\test_misc.cpython-313.pyc
test_misc.cpython-313.pyc
Other
496
0.7
0
0
node-utils
982
2024-10-21T07:35:55.755323
BSD-3-Clause
true
b833ad092402d20dca5eadf451242794
\n\n
.venv\Lib\site-packages\multiprocess\tests\test_multiprocessing_forkserver\__pycache__\test_processes.cpython-313.pyc
test_processes.cpython-313.pyc
Other
507
0.7
0
0
awesome-app
261
2025-06-07T09:02:28.600947
Apache-2.0
true
a271f9b451d9836806fcab6e9aaeffc3
\n\n
.venv\Lib\site-packages\multiprocess\tests\test_multiprocessing_forkserver\__pycache__\test_threads.cpython-313.pyc
test_threads.cpython-313.pyc
Other
503
0.7
0
0
awesome-app
757
2024-08-01T18:57:53.369015
BSD-3-Clause
true
8614af76905b0440f3613635183adebe
\n\n
.venv\Lib\site-packages\multiprocess\tests\test_multiprocessing_forkserver\__pycache__\__init__.cpython-313.pyc
__init__.cpython-313.pyc
Other
1,626
0.7
0.034483
0
react-lib
513
2024-02-09T00:34:04.614579
BSD-3-Clause
true
0360f1a1719adbd7413b9af22c7557ea
import unittest\nfrom multiprocess.tests import install_tests_in_module_dict\n\ninstall_tests_in_module_dict(globals(), 'spawn', only_type="manager")\n\nif __name__ == '__main__':\n unittest.main()\n
.venv\Lib\site-packages\multiprocess\tests\test_multiprocessing_spawn\test_manager.py
test_manager.py
Python
195
0.85
0.142857
0
python-kit
373
2024-12-05T02:33:26.320086
GPL-3.0
true
18ac9687561c42ede572485564608ca6
import unittest\nfrom multiprocess.tests import install_tests_in_module_dict\n\ninstall_tests_in_module_dict(globals(), 'spawn', exclude_types=True)\n\nif __name__ == '__main__':\n unittest.main()\n
.venv\Lib\site-packages\multiprocess\tests\test_multiprocessing_spawn\test_misc.py
test_misc.py
Python
194
0.85
0.142857
0
node-utils
497
2024-11-18T01:14:28.815345
MIT
true
e8743ceda119da349810ed7f6c892ecd
import unittest\nfrom multiprocess.tests import install_tests_in_module_dict\n\ninstall_tests_in_module_dict(globals(), 'spawn', only_type="processes")\n\nif __name__ == '__main__':\n unittest.main()\n
.venv\Lib\site-packages\multiprocess\tests\test_multiprocessing_spawn\test_processes.py
test_processes.py
Python
197
0.85
0.142857
0
react-lib
69
2024-12-20T16:46:20.842130
GPL-3.0
true
d74a70ef21a82900ed0f45f26d17ad8d
import unittest\nfrom multiprocess.tests import install_tests_in_module_dict\n\ninstall_tests_in_module_dict(globals(), 'spawn', only_type="threads")\n\nif __name__ == '__main__':\n unittest.main()\n
.venv\Lib\site-packages\multiprocess\tests\test_multiprocessing_spawn\test_threads.py
test_threads.py
Python
195
0.85
0.142857
0
vue-tools
537
2024-01-11T18:28:11.683059
MIT
true
db4ef79635befd315221ceaec520926a
import os.path\nimport sys\nimport unittest\nfrom test import support\nimport glob\nimport subprocess as sp\npython = sys.executable\ntry:\n import pox\n python = pox.which_python(version=True) or python\nexcept ImportError:\n pass\nshell = sys.platform[:3] == 'win'\n\nif support.PGO:\n raise unittest.SkipT...
.venv\Lib\site-packages\multiprocess\tests\test_multiprocessing_spawn\__init__.py
__init__.py
Python
639
0.85
0.2
0
python-kit
134
2025-05-28T21:34:20.578886
MIT
true
19d3276988fe33e87f1948a795babe3e
\n\n
.venv\Lib\site-packages\multiprocess\tests\test_multiprocessing_spawn\__pycache__\test_manager.cpython-313.pyc
test_manager.cpython-313.pyc
Other
493
0.7
0
0
vue-tools
541
2023-08-26T03:09:14.128153
Apache-2.0
true
48c0f81bb2c7d2ebff6a701363e91de1
\n\n
.venv\Lib\site-packages\multiprocess\tests\test_multiprocessing_spawn\__pycache__\test_misc.cpython-313.pyc
test_misc.cpython-313.pyc
Other
486
0.7
0
0
node-utils
56
2023-10-12T04:36:27.049654
Apache-2.0
true
b0c3fae9e149cf11632911c48e7166be
\n\n
.venv\Lib\site-packages\multiprocess\tests\test_multiprocessing_spawn\__pycache__\test_processes.cpython-313.pyc
test_processes.cpython-313.pyc
Other
497
0.7
0
0
node-utils
121
2024-04-08T05:43:42.542294
GPL-3.0
true
5b2e64a70a17135f29c8610b7a6b5350
\n\n
.venv\Lib\site-packages\multiprocess\tests\test_multiprocessing_spawn\__pycache__\test_threads.cpython-313.pyc
test_threads.cpython-313.pyc
Other
493
0.7
0
0
vue-tools
558
2023-10-22T22:14:44.755842
GPL-3.0
true
992d999649ac6c7b8ab25a62e8235e5a
\n\n
.venv\Lib\site-packages\multiprocess\tests\test_multiprocessing_spawn\__pycache__\__init__.cpython-313.pyc
__init__.cpython-313.pyc
Other
1,474
0.7
0.04
0
vue-tools
932
2023-11-25T21:34:36.938822
MIT
true
6911547ae639a2824f22e45b75883245
\n\n
.venv\Lib\site-packages\multiprocess\tests\__pycache__\mp_fork_bomb.cpython-313.pyc
mp_fork_bomb.cpython-313.pyc
Other
865
0.7
0
0
vue-tools
649
2024-12-16T00:00:06.507389
BSD-3-Clause
true
285d6f5bae64122ba4feebd879f6b4d0
\n\n
.venv\Lib\site-packages\multiprocess\tests\__pycache__\mp_preload.cpython-313.pyc
mp_preload.cpython-313.pyc
Other
865
0.85
0
0
python-kit
454
2023-07-17T15:54:19.873235
GPL-3.0
true
7eff44ed4e870806ede2fb787e5d62f3
\n\n
.venv\Lib\site-packages\multiprocess\tests\__pycache__\test_multiprocessing_main_handling.cpython-313.pyc
test_multiprocessing_main_handling.cpython-313.pyc
Other
15,343
0.95
0.055319
0.07732
awesome-app
521
2025-01-15T00:47:36.095345
GPL-3.0
true
07d74e7888a53486ac0be96b3bc16002
\n\n
.venv\Lib\site-packages\multiprocess\tests\__pycache__\__main__.cpython-313.pyc
__main__.cpython-313.pyc
Other
1,452
0.7
0
0
vue-tools
374
2025-07-01T04:17:56.649734
BSD-3-Clause
true
c794d0613c1573633903f0ae978f8def
\n\n
.venv\Lib\site-packages\multiprocess\__pycache__\connection.cpython-313.pyc
connection.cpython-313.pyc
Other
48,938
0.95
0.031008
0.005618
node-utils
184
2024-11-08T13:37:46.718266
Apache-2.0
false
2997942e734347c508af3a99aa2e0dcf
\n\n
.venv\Lib\site-packages\multiprocess\__pycache__\context.cpython-313.pyc
context.cpython-313.pyc
Other
17,295
0.8
0.048544
0.009901
awesome-app
456
2024-03-05T20:11:01.140241
Apache-2.0
false
443c19ef6a47cfab44f12c0203b577c1
\n\n
.venv\Lib\site-packages\multiprocess\__pycache__\forkserver.cpython-313.pyc
forkserver.cpython-313.pyc
Other
15,433
0.95
0.013072
0.029412
node-utils
805
2024-11-18T09:57:24.177378
BSD-3-Clause
false
5d82cff5fed89ab6003b22f7fbaf7325
\n\n
.venv\Lib\site-packages\multiprocess\__pycache__\heap.cpython-313.pyc
heap.cpython-313.pyc
Other
14,049
0.8
0.008547
0
awesome-app
683
2025-03-20T03:03:14.966857
MIT
false
d29fc54cef55b63e362e984e9cf80543
\n\n
.venv\Lib\site-packages\multiprocess\__pycache__\managers.cpython-313.pyc
managers.cpython-313.pyc
Other
68,784
0.75
0.028668
0.005474
node-utils
786
2024-09-20T14:52:31.559713
MIT
false
32272633bbd2d1910e78329140797771
\n\n
.venv\Lib\site-packages\multiprocess\__pycache__\pool.cpython-313.pyc
pool.cpython-313.pyc
Other
44,864
0.95
0.027431
0.005495
react-lib
776
2025-06-16T20:37:47.520832
BSD-3-Clause
false
9566800a400643dbcf86227fd32e4f47
\n\n
.venv\Lib\site-packages\multiprocess\__pycache__\popen_fork.cpython-313.pyc
popen_fork.cpython-313.pyc
Other
4,252
0.8
0
0
awesome-app
701
2023-12-06T12:07:58.304079
GPL-3.0
false
6eef9f3c961ce1c45b1c086ceaa1b867
\n\n
.venv\Lib\site-packages\multiprocess\__pycache__\popen_forkserver.cpython-313.pyc
popen_forkserver.cpython-313.pyc
Other
4,151
0.8
0.022222
0
vue-tools
257
2024-08-23T10:38:50.933234
GPL-3.0
false
4e5e21440aca4be5576a3cfa83473e45
\n\n
.venv\Lib\site-packages\multiprocess\__pycache__\popen_spawn_posix.cpython-313.pyc
popen_spawn_posix.cpython-313.pyc
Other
4,075
0.8
0
0
awesome-app
89
2024-03-31T07:47:51.934835
MIT
false
9efa2ad344f6b323ef727a9f11fc493a