Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 739 for PROPERTIES (0.12 sec)

  1. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/CacheBuilder.java

        /**
         * Specifies the additional key properties for the cache. The cache is treated as invalid if any of the properties do not match the properties used to create the cache. The default for this is an
         * empty map.
         *
         * @param properties additional properties for the cache.
         * @return this
         */
        CacheBuilder withProperties(Map<String, ?> properties);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/SingleUseDaemonIntegrationTest.groovy

        @Requires(IntegTestPreconditions.JavaHomeWithDifferentVersionAvailable)
        def "forks build with default daemon JVM args when java home from gradle properties does not match current process"() {
            def javaHome = AvailableJavaHomes.differentJdk.javaHome.canonicalFile
    
            file('gradle.properties').writeProperties("org.gradle.java.home": javaHome.path)
    
            file('build.gradle') << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 13:41:21 UTC 2024
    - 7K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheIncludedBuildInputsChangesIntegrationTest.groovy

        def "invalidates cache upon change to #inputName used by included build"() {
    
            assumeFalse(
                'property from gradle.properties is not available to included build',
                inputName == 'gradle.properties'
            )
    
            given:
            def configurationCache = newConfigurationCacheFixture()
            def fixture = new BuildLogicChangeFixture(file('build-logic'))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/annotations/impl/DefaultTypeAnnotationMetadata.java

        private final ImmutableSortedSet<PropertyAnnotationMetadata> properties;
        private final ReplayingTypeValidationContext validationProblems;
    
        public DefaultTypeAnnotationMetadata(Iterable<? extends Annotation> annotations, Iterable<? extends PropertyAnnotationMetadata> properties, ReplayingTypeValidationContext validationProblems) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:21 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  5. .github/workflows/contributor-pr.yml

          - uses: actions/upload-artifact@v4
            with:
              name: build-receipt.properties
              path: platforms/core-runtime/base-services/build/generated-resources/build-receipt/org/gradle/build-receipt.properties
        outputs:
          matrix: ${{ steps.setup-matrix.outputs.matrix }}
          sys-prop-args: ${{ steps.determine-sys-prop-args.outputs.sys-prop-args }}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            assertThat(pom.getValue("build/filters[1]").toString(), endsWith("child-a.properties"));
            assertThat(pom.getValue("build/filters[2]").toString(), endsWith("child-c.properties"));
            assertThat(pom.getValue("build/filters[3]").toString(), endsWith("child-b.properties"));
            assertThat(pom.getValue("build/filters[4]").toString(), endsWith("child-d.properties"));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
  7. platforms/core-runtime/wrapper-main/build.gradle.kts

        }
        from(layout.projectDirectory.dir("src/executable/resources"))
        from(sourceSets.main.get().output)
        // Exclude properties files from this project as they are not needed for the executable JAR
        exclude("gradle-*-classpath.properties")
        exclude("gradle-*-parameter-names.properties")
    }
    
    // Using Gr8 plugin with ProGuard to minify the wrapper JAR.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/ArtifactDescriptorReaderDelegate.java

                properties.put("license." + i + ".name", license.getName());
                properties.put("license." + i + ".url", license.getUrl());
                properties.put("license." + i + ".comments", license.getComments());
                properties.put("license." + i + ".distribution", license.getDistribution());
            }
    
            result.setProperties(properties);
    
            setArtifactProperties(result, model);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/TaskNodeCodec.kt

    import org.gradle.internal.fingerprint.LineEndingSensitivity
    import org.gradle.internal.properties.InputBehavior
    import org.gradle.internal.properties.InputFilePropertyType
    import org.gradle.internal.properties.OutputFilePropertyType
    import org.gradle.internal.properties.PropertyValue
    import org.gradle.internal.properties.PropertyVisitor
    import org.gradle.internal.serialize.graph.Codec
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildSrcChangesIntegrationTest.groovy

        }
    
        def "invalidates cache upon change to #inputName used by buildSrc"() {
    
            assumeFalse(
                'property from gradle.properties is not available to buildSrc',
                inputName == 'gradle.properties'
            )
    
            given:
            def configurationCache = newConfigurationCacheFixture()
            file("buildSrc/build.gradle.kts").text = """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top