- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 11 for 4141 (0.02 seconds)
-
ci/official/requirements_updater/requirements.in
wheel ~= 0.41.2 h5py >= 3.11.0, < 3.15.0 ; python_version <= "3.13" h5py ~= 3.15.1 ; python_version == "3.14" lit ~= 17.0.2 opt_einsum == 3.3.0 astunparse == 1.6.3 dill == 0.3.7 astor == 0.7.1 typing_extensions ~= 4.14.1 gast == 0.4.0 termcolor == 2.3.0 wrapt == 1.16.0 tblib == 2.0.0 ml_dtypes >= 0.5.4, < 0.6.0 auditwheel >= 6.1.0 # Install tensorboard, and keras
Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Tue Mar 10 13:31:27 GMT 2026 - 1.5K bytes - Click Count (0) -
ci/official/requirements_updater/numpy1_requirements/requirements.in
# Requirements for NumPy 1.x numpy ~= 1.26.0 wheel ~= 0.41.2 h5py >= 3.11.0, < 3.15.0 lit ~= 17.0.2 opt_einsum == 3.3.0 astunparse == 1.6.3 dill == 0.3.7 astor == 0.7.1 typing_extensions ~= 4.14.1 gast == 0.4.0 termcolor == 2.3.0 wrapt == 1.16.0 tblib == 2.0.0 ml_dtypes >= 0.5.1, < 0.6.0 auditwheel >= 6.1.0 # Install tensorboard, and keras # Note that here we want the latest version that matches TF major.minor version
Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Mon Jan 26 22:44:40 GMT 2026 - 1.2K bytes - Click Count (0) -
build-tools-internal/src/integTest/groovy/org/elasticsearch/gradle/internal/test/rerun/InternalTestRerunPluginFuncTest.groovy
id 'elasticsearch.internal-test-rerun' } repositories { mavenCentral() } dependencies { testImplementation 'junit:junit:4.13.1' } tasks.named("test").configure { maxParallelForks = 4 testLogging { events "standard_out", "failed" exceptionFormat "short"
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Fri Sep 03 10:22:28 GMT 2021 - 8.9K bytes - Click Count (0) -
scripts/tests/test_translation_fixer/test_code_blocks/test_code_blocks_mermaid.py
).read_text("utf-8") assert fixed_content == expected_content # Translated doc remains unchanged assert ( "Skipping mermaid code block replacement (lines 41-44). This should be checked manually." ) in result.output @pytest.mark.parametrize( "copy_test_files", [ ( f"{data_path}/en_doc.md",
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Jan 10 22:43:44 GMT 2026 - 1.8K bytes - Click Count (0) -
.github/workflows/people.yml
name: FastAPI People on: schedule: - cron: "0 14 1 * *" workflow_dispatch: inputs: debug_enabled: description: Run the build with tmate debugging enabled (https://github.com/marketplace/actions/debugging-with-tmate) required: false default: "false" jobs: job: if: github.repository_owner == 'fastapi' runs-on: ubuntu-latest permissions: contents: write steps:Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Jan 10 22:02:57 GMT 2026 - 1.5K bytes - Click Count (0) -
fastapi/sse.py
from annotated_doc import Doc from pydantic import AfterValidator, BaseModel, Field, model_validator from starlette.responses import StreamingResponse # Canonical SSE event schema matching the OpenAPI 3.2 spec # (Section 4.14.4 "Special Considerations for Server-Sent Events") _SSE_EVENT_SCHEMA: dict[str, Any] = { "type": "object", "properties": { "data": {"type": "string"}, "event": {"type": "string"},
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sun Mar 01 09:21:52 GMT 2026 - 6.2K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/ElasticsearchJavaBasePlugin.java
compilerArgs.add("-Xdoclint:-missing"); compileOptions.setEncoding("UTF-8"); compileOptions.setIncremental(true); // workaround for https://github.com/gradle/gradle/issues/14141 compileTask.getConventionMapping().map("sourceCompatibility", () -> java.getSourceCompatibility().toString());
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Mon Sep 27 16:04:42 GMT 2021 - 8K bytes - Click Count (0) -
src/test/resources/plugin/repo3/fess-crawler-webdriver/maven-metadata.xml
<version>1.2.0</version> <version>1.2.1</version> <version>1.3.0</version> <version>1.3.1</version> <version>1.3.2</version> <version>1.4.0</version> <version>1.4.1</version> <version>1.4.2</version> <version>1.4.3</version> <version>1.5.0</version> <version>1.5.1</version> <version>1.5.2</version> <version>1.5.3</version>
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Jun 17 13:30:41 GMT 2024 - 3.6K bytes - Click Count (0) -
src/test/resources/plugin/repo3/fess-crawler-es/maven-metadata.xml
<version>1.2.0</version> <version>1.2.1</version> <version>1.3.0</version> <version>1.3.1</version> <version>1.3.2</version> <version>1.4.0</version> <version>1.4.1</version> <version>1.4.2</version> <version>1.4.3</version> <version>1.5.0</version> <version>1.5.1</version> <version>1.5.2</version> <version>1.5.3</version>
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Jun 17 13:30:41 GMT 2024 - 4.2K bytes - Click Count (0) -
internal/http/dial_linux.go
// Enable TCP fast connect // TCPFastOpenConnect sets the underlying socket to use // the TCP fast open connect. This feature is supported // since Linux 4.11. _ = syscall.SetsockoptInt(fd, syscall.IPPROTO_TCP, unix.TCP_FASTOPEN_CONNECT, 1) // Enable TCP quick ACK, John Nagle says // "Set TCP_QUICKACK. If you find a case where that makes things worse, let me know."
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Tue Jul 23 10:53:03 GMT 2024 - 5K bytes - Click Count (0)