Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for baselines (0.19 sec)

  1. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/JapicmpTask.java

            List<JApiCmpWorkerAction.Archive> baseline = !oldArchives.isEmpty() ? toArchives(oldArchives) : inferArchives(getOldClasspath());
            List<JApiCmpWorkerAction.Archive> current = !newArchives.isEmpty() ? toArchives(newArchives) : inferArchives(getNewClasspath());
            execForNewGradle(baseline, current);
        }
    
        private void execForNewGradle(final List<JApiCmpWorkerAction.Archive> baseline, final List<JApiCmpWorkerAction.Archive> current) {
    Java
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Apr 26 10:58:32 GMT 2023
    - 13.3K bytes
    - Viewed (0)
  2. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/UpgradePropertiesRuleSetup.java

    public class UpgradePropertiesRuleSetup implements SetupRule {
    
        private static final String CURRENT_UPGRADED_PROPERTIES_KEY = "currentUpgradedProperties";
        private static final String BASELINE_UPGRADED_PROPERTIES_KEY = "baselineUpgradedProperties";
    
        private final Map<String, String> params;
    
        public UpgradePropertiesRuleSetup(Map<String, String> params) {
            this.params = params;
        }
    
    Java
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue Apr 23 08:40:36 GMT 2024
    - 4.2K bytes
    - Viewed (0)
  3. maven-core/src/test/java/org/apache/maven/graph/DefaultProjectDependencyGraphTest.java

            assertEquals(depender1, sortedProjects.get(1));
        }
    
        @Test
        void testVerifyExpectedParentStructure() throws CycleDetectedException, DuplicateProjectException {
            // This test verifies the baseline structure used in subsequent tests. If this fails, the rest will fail.
            ProjectDependencyGraph graph = threeProjectsDependingOnASingle();
            final List<MavenProject> sortedProjects = graph.getSortedProjects();
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Sep 22 06:02:04 GMT 2023
    - 7.2K bytes
    - Viewed (0)
Back to top