- Sort Score
- Result 10 results
- Languages All
Results 201 - 210 of 346 for moduleId (0.06 sec)
-
mockwebserver-junit5/README.md
- MockWebServer for JUnit 5
- =========================
- This module integrates mockwebserver3.MockWebServer with JUnit 5.
- To use, first add this library as a test dependency:
- ```
- testRuntimeOnly("com.squareup.okhttp3:mockwebserver3-junit5:4.12.0")
- ```
- Then in tests annotated `@org.junit.jupiter.api.Test`, you may add a [MockWebServer] as a test
- method parameter. It will be shut down automatically after the test runs.
- ```
- class MyTest {
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sun Jan 14 10:20:09 UTC 2024 - 1.3K bytes - Viewed (0) -
tests/test_tutorial/test_custom_docs_ui/test_tutorial001.py
- import os
- from pathlib import Path
- import pytest
- from fastapi.testclient import TestClient
- @pytest.fixture(scope="module")
- def client():
- static_dir: Path = Path(os.getcwd()) / "static"
- print(static_dir)
- static_dir.mkdir(exist_ok=True)
- from docs_src.custom_docs_ui.tutorial001 import app
- with TestClient(app) as client:
- yield client
- static_dir.rmdir()
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Thu May 23 22:59:02 UTC 2024 - 1.3K bytes - Viewed (0) -
docs/pt/docs/deployment/manually.md
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Sep 20 11:10:02 UTC 2024 - 8.2K bytes - Viewed (0) -
tests/test_tutorial/test_events/test_tutorial001.py
- import pytest
- from fastapi import FastAPI
- from fastapi.testclient import TestClient
- @pytest.fixture(name="app", scope="module")
- def get_app():
- with pytest.warns(DeprecationWarning):
- from docs_src.events.tutorial001 import app
- yield app
- def test_events(app: FastAPI):
- with TestClient(app) as client:
- response = client.get("/items/foo")
- assert response.status_code == 200, response.text
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Wed Oct 18 12:36:40 UTC 2023 - 3.6K bytes - Viewed (0) -
docs/debugging/s3-verify/go.mod
- module github.com/minio/minio/docs/debugging/s3-verify
- go 1.21
- require github.com/minio/minio-go/v7 v7.0.70
- require (
- github.com/dustin/go-humanize v1.0.1 // indirect
- github.com/goccy/go-json v0.10.2 // indirect
- github.com/google/uuid v1.6.0 // indirect
- github.com/klauspost/compress v1.17.8 // indirect
- github.com/klauspost/cpuid/v2 v2.2.7 // indirect
- github.com/minio/md5-simd v1.1.2 // indirect
- github.com/rs/xid v1.5.0 // indirect
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon May 13 17:59:52 UTC 2024 - 688 bytes - Viewed (0) -
docs/en/docs/fastapi-cli.md
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 6.1K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultTransformerContextBuilder.java
- for (String module : rawModel.getModules()) {
- Path moduleFile = defaultModelBuilder
- .getModelProcessor()
- .locateExistingPom(pom.getParent().resolve(module));
- if (moduleFile != null) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 9.1K bytes - Viewed (1) -
compat/maven-model-builder/src/test/resources/poms/inheritance/tricky-flat-artifactId-urls-expected.xml
- </parent>
- <groupId>inheritance</groupId>
- <artifactId>child-artifact-id</artifactId>
- <version>11-SNAPSHOT</version>
- <name>Model urls inheritance test child</name>
- <description>Flat directory structure case: module = ../child-artifact-id + child directory path != child-artifact-id</description>
- <!-- 5 inherited urls with ../${project.artifactId} added to parent -->
- <url>http://www.apache.org/path/to/parent/../child-artifact-id/</url>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2K bytes - Viewed (0) -
regression-test/README.md
- Regression Test
- ===============
- A gradle module for running Regression tests on a device, emulator or JVM.
- 1. Add an Emulator named `pixel5`, if you don't already have one
- ```
- $ sdkmanager --install "system-images;android-29;google_apis;x86"
- $ echo "no" | avdmanager --verbose create avd --force --name "pixel5" --device "pixel" --package "system-images;android-29;google_apis;x86" --tag "google_apis" --abi "x86"
- ```
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Fri Nov 13 07:09:56 UTC 2020 - 2.5K bytes - Viewed (0) -
okcurl/build.gradle.kts
- testApi(libs.assertk)
- testImplementation(kotlin("test"))
- }
- animalsniffer {
- isIgnoreFailures = true
- }
- tasks.jar {
- manifest {
- attributes("Automatic-Module-Name" to "okhttp3.curl")
- attributes("Main-Class" to "okhttp3.curl.MainCommandLineKt")
- }
- }
- tasks.shadowJar {
- mergeServiceFiles()
- }
- graal {
- mainClass("okhttp3.curl.MainCommandLineKt")
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Wed Dec 20 23:27:07 UTC 2023 - 1.8K bytes - Viewed (0)