Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for currentUpgradedProperties (0.14 sec)

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

            List<UpgradedProperty> currentUpgradedProperties = UpgradedProperties.parse(params.get(CURRENT_UPGRADED_PROPERTIES_KEY));
            List<UpgradedProperty> baselineUpgradedProperties = UpgradedProperties.parse(params.get(BASELINE_UPGRADED_PROPERTIES_KEY));
            context.putUserData(CURRENT_ACCESSORS_OF_UPGRADED_PROPERTIES, diff(
                currentAccessorsOfUpgradedProperties(currentUpgradedProperties),
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Mon Aug 19 15:30:48 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/BinaryCompatibilityHelper.groovy

                    ])
                    addSetupRule(UpgradePropertiesRuleSetup, [
                        currentUpgradedProperties: currentUpgradedPropertiesFile.absolutePath,
                        baselineUpgradedProperties: baselineUpgradedPropertiesFile.absolutePath
                    ])
    
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Tue Jun 11 17:15:16 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  3. build-logic/binary-compatibility/src/main/groovy/gradlebuild.binary-compatibility.gradle

    def extractGradleApiInfo = tasks.register("extractGradleApiInfo", gradlebuild.binarycompatibility.ExtractGradleApiInfoTask) {
        currentDistributionJars = currentDistroJars
        baselineDistributionJars = baselineJars
        currentUpgradedProperties = currentUpgradedPropertiesFile
        baselineUpgradedProperties = baselineUpgradedPropertiesFile
    }
    
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Fri Jul 26 08:15:16 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top