- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 21 for coordinate (0.04 sec)
-
tests/test_tuples.py
class ItemGroup(BaseModel): items: list[tuple[str, str]] class Coordinate(BaseModel): x: float y: float @app.post("/model-with-tuple/") def post_model_with_tuple(item_group: ItemGroup): return item_group @app.post("/tuple-of-models/") def post_tuple_of_models(square: tuple[Coordinate, Coordinate]): return square @app.post("/tuple-form/")
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sat Dec 27 18:19:10 UTC 2025 - 9.8K bytes - Viewed (0) -
CHANGELOG.md
this change should be automatic. **MockWebServer has a new coordinate and package name.** We didn’t like that our old artifact depends on JUnit 4 so the new one doesn’t. It also has a better API built on immutable values. (We intend to continue publishing the old `okhttp3.mockwebserver` artifact so there’s no urgency to migrate.)
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Fri Dec 05 16:02:59 UTC 2025 - 36.2K bytes - Viewed (2) -
compat/maven-model-builder/src/test/java/org/apache/maven/model/validation/DefaultModelValidatorTest.java
assertEquals("'groupId' is missing.", result.getErrors().get(0)); } @Test void testInvalidCoordinateIds() throws Exception { SimpleProblemCollector result = validate("invalid-coordinate-ids-pom.xml"); assertViolations(result, 0, 2, 0); assertEquals( "'groupId' with value 'o/a/m' does not match a valid id pattern.", result.getErrors().get(0));Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 17 10:01:14 UTC 2025 - 33.9K bytes - Viewed (0) -
docs/en/docs/contributing.md
/// * Check if there's a <a href="https://github.com/fastapi/fastapi/discussions/categories/translations" class="external-link" target="_blank">GitHub Discussion</a> to coordinate translations for your language. You can subscribe to it, and when there's a new pull request to review, an automatic comment will be added to the discussion.
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sun Sep 21 11:29:04 UTC 2025 - 15.1K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Session.java
* * @param coordinates artifact coordinates to get as a dependency coordinates * @return dependency coordinates for the given artifact * * @see DependencyCoordinatesFactory#create(Session, ArtifactCoordinates) */ @Nonnull DependencyCoordinates createDependencyCoordinates(@Nonnull ArtifactCoordinates coordinates); /**Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Jul 03 14:18:26 UTC 2025 - 36.5K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/VersionRangeResolverRequest.java
* This is the default behavior. */ RELEASE_OR_SNAPSHOT } /** * Gets the artifact coordinates whose version range should be resolved. * The coordinates may contain a version range (e.g., "[1.0,2.0)") or a single version. * * @return the artifact coordinates, never {@code null} */ @Nonnull ArtifactCoordinates getArtifactCoordinates(); /**Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Dec 16 13:41:14 UTC 2025 - 10.4K bytes - Viewed (0) -
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/GAVUtilsTest.java
UpgradeContext context = createMockContext(); Set<Coordinates> gavs = InferenceStrategy.computeAllArtifactCoordinates(context, pomMap); assertEquals(2, gavs.size()); assertTrue(gavs.contains(Coordinates.of("com.example", "parent-project", "1.0.0"))); assertTrue(gavs.contains(Coordinates.of("com.example", "child-project", "1.0.0"))); } @TestRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 18:03:26 UTC 2025 - 17.3K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyCoordinatesFactoryRequest.java
@Nonnull Session session, @Nonnull ArtifactCoordinates coordinates) { return builder() .session(requireNonNull(session, "session cannot be null")) .groupId(requireNonNull(coordinates, "coordinates cannot be null") .getGroupId()) .artifactId(coordinates.getArtifactId()) .version(coordinates.getVersionConstraint().toString())Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 12.1K bytes - Viewed (0) -
okhttp-testing-support/src/main/kotlin/okhttp3/internal/concurrent/TaskFaker.kt
require(currentTask == TestThreadSerialTask) // Queue a task to interrupt the waiting coordinator. serialTaskQueue += object : SerialTask { override fun start() { taskRunner.assertLockHeld() waitingCoordinatorInterrupted = true val coordinatorTask = waitingCoordinatorTask ?: error("no coordinator waiting") currentTask = coordinatorTask taskRunner.notifyAll()
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Wed May 28 23:28:25 UTC 2025 - 11.9K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/InferenceStrategy.java
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 18:03:26 UTC 2025 - 27.6K bytes - Viewed (0)