- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 74 for infer (0.02 seconds)
-
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/InferenceStrategy.java
if (useAll) { return true; } // Check if --infer is explicitly set if (options.infer().isPresent()) { return options.infer().get(); } // Apply default behavior: if no specific options are provided, enable --infer if (options.infer().isEmpty() && options.model().isEmpty() && options.plugins().isEmpty()
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Nov 18 18:03:26 GMT 2025 - 27.6K bytes - Click Count (0) -
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/PluginUpgradeCliTest.java
CommonsCliUpgradeOptions options = CommonsCliUpgradeOptions.parse(args); assertTrue(options.modelVersion().isPresent(), "--model-version option should be present"); assertEquals("4.1.0", options.modelVersion().get(), "--model-version should be 4.1.0"); assertTrue(options.infer().isPresent(), "--infer option should be present");
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Mon Sep 29 14:48:39 GMT 2025 - 9.9K bytes - Click Count (0) -
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/InferenceStrategyTest.java
@DisplayName("Applicability") class ApplicabilityTests { @Test @DisplayName("should be applicable when --infer option is true") void shouldBeApplicableWhenInferOptionTrue() { UpgradeOptions options = mock(UpgradeOptions.class); when(options.infer()).thenReturn(Optional.of(true)); when(options.all()).thenReturn(Optional.empty());Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Nov 18 18:03:26 GMT 2025 - 35.2K bytes - Click Count (0) -
tensorflow/c/c_api_experimental_test.cc
CHECK_EQ(TF_OK, TF_GetCode(status_)) << TF_Message(status_); // Infer shape when everything is known. CheckOutputShapes(matmul_op, /*input_shapes*/ {make_shape({3, 2}), make_shape({2, 4})}, /*input_tensors*/ {}, /*expected_shape*/ make_shape({3, 4})); // Infer shape when second operand has unknown shape. CheckOutputShapes(matmul_op,
Created: Tue Dec 30 12:39:10 GMT 2025 - Last Modified: Tue Jan 17 22:27:52 GMT 2023 - 13.1K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/AbstractUpgradeGoal.java
* * <h3>All-in-One Option</h3> * The {@code --all} option is a convenience flag equivalent to {@code --model 4.1.0 --infer --fix-model --plugins}. * It performs a complete upgrade to Maven 4.1.0 with all optimizations, compatibility fixes, and plugin upgrades. * * <h3>Maven 4 Compatibility Fixes</h3>
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Nov 18 18:03:26 GMT 2025 - 12.5K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/CompatibilityFixStrategy.java
boolean noOptionsSpecified = options.all().isEmpty() && options.infer().isEmpty() && options.model().isEmpty() && options.plugins().isEmpty() && options.modelVersion().isEmpty(); boolean allOptionsDisabled = options.all().map(v -> !v).orElse(false) && options.infer().map(v -> !v).orElse(false) && options.model().map(v -> !v).orElse(false)
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Nov 18 18:03:26 GMT 2025 - 22.2K bytes - Click Count (0) -
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/CompatibilityFixStrategyTest.java
void shouldHandleAllOptionsDisabled() { UpgradeContext context = TestUtils.createMockContext(TestUtils.createOptions( false, // --all false, // --infer false, // --fix-model false, // --plugins null // --model ));
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Nov 18 18:03:26 GMT 2025 - 12.6K bytes - Click Count (0) -
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/AbstractUpgradeGoalTest.java
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Nov 18 18:03:26 GMT 2025 - 13.7K bytes - Click Count (0) -
tensorflow/c/c_api_experimental.h
TF_CAPI_EXPORT extern void TF_DeleteShapeAndTypeList( TF_ShapeAndTypeList* shape_list); TF_CAPI_EXPORT extern void TF_DeleteShapeAndTypeListArray( TF_ShapeAndTypeList** shape_list_array, int num_items); // Infer shapes for the given `op`. The arguments mimic the arguments of the // `shape_inference::InferenceContext` constructor. Note the following: // - The inputs of the `op` are not used for shape inference. So, it is
Created: Tue Dec 30 12:39:10 GMT 2025 - Last Modified: Thu Apr 27 21:07:00 GMT 2023 - 15.1K bytes - Click Count (0) -
docs/en/docs/advanced/custom-response.md
* `path` - The file path to the file to stream. * `headers` - Any custom headers to include, as a dictionary. * `media_type` - A string giving the media type. If unset, the filename or path will be used to infer a media type. * `filename` - If set, this will be included in the response `Content-Disposition`. File responses will include appropriate `Content-Length`, `Last-Modified` and `ETag` headers.
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Wed Dec 17 20:41:43 GMT 2025 - 12.4K bytes - Click Count (0)