Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for Applicability (0.06 sec)

  1. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/StrategyOrchestrator.java

            this.strategies = strategies;
        }
    
        /**
         * Executes all applicable upgrade strategies in priority order.
         * Each strategy is checked for applicability before execution.
         *
         * @param context the upgrade context
         * @param pomMap map of all POM files in the project
         * @return the overall result of all strategy executions
         */
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Nov 18 18:03:26 UTC 2025
    - 7K bytes
    - Viewed (0)
  2. impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/UpgradeWorkflowIntegrationTest.java

                // Verify success
                assertEquals(0, result, "Apply should succeed");
    
                // Verify POM was potentially modified (depending on strategy applicability)
                String pomContent = Files.readString(pomFile);
                assertTrue(
                        pomContent.contains("<groupId>com.example</groupId>"),
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 10:01:14 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  3. impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/CompatibilityFixStrategyTest.java

            return TestUtils.createMockContext(options);
        }
    
        private UpgradeOptions createDefaultOptions() {
            return TestUtils.createDefaultOptions();
        }
    
        @Nested
        @DisplayName("Applicability")
        class ApplicabilityTests {
    
            @Test
            @DisplayName("should be applicable when --model option is true")
            void shouldBeApplicableWhenModelOptionTrue() {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Nov 18 18:03:26 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  4. impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/PluginUpgradeStrategyTest.java

            return TestUtils.createMockContext(options);
        }
    
        private UpgradeOptions createDefaultOptions() {
            return TestUtils.createDefaultOptions();
        }
    
        @Nested
        @DisplayName("Applicability")
        class ApplicabilityTests {
    
            @Test
            @DisplayName("should be applicable when --plugins option is true")
            void shouldBeApplicableWhenPluginsOptionTrue() {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Nov 18 18:03:26 UTC 2025
    - 27.8K bytes
    - Viewed (0)
  5. impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/ModelUpgradeStrategyTest.java

            return TestUtils.createMockContext(options);
        }
    
        @Nested
        @DisplayName("Applicability")
        class ApplicabilityTests {
    
            @ParameterizedTest
            @MethodSource("provideApplicabilityScenarios")
            @DisplayName("should determine applicability based on options")
            void shouldDetermineApplicabilityBasedOnOptions(
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Nov 18 18:03:26 UTC 2025
    - 38.8K bytes
    - Viewed (0)
  6. impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/InferenceStrategyTest.java

            return TestUtils.createMockContext(options);
        }
    
        private UpgradeOptions createDefaultOptions() {
            return TestUtils.createDefaultOptions();
        }
    
        @Nested
        @DisplayName("Applicability")
        class ApplicabilityTests {
    
            @Test
            @DisplayName("should be applicable when --infer option is true")
            void shouldBeApplicableWhenInferOptionTrue() {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Nov 18 18:03:26 UTC 2025
    - 35.2K bytes
    - Viewed (0)
  7. docs/en/docs/deployment/docker.md

    Using Linux containers has several advantages including **security**, **replicability**, **simplicity**, and others.
    
    /// tip
    
    In a hurry and already know this stuff? Jump to the [`Dockerfile` below 👇](#build-a-docker-image-for-fastapi).
    
    ///
    
    <details>
    <summary>Dockerfile Preview 👀</summary>
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Sep 20 12:58:04 UTC 2025
    - 29.5K bytes
    - Viewed (1)
Back to top