Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 91 for PROPERTIES (0.21 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

                properties.put("sun.stdout.encoding", getDefaultCharacterEncoding());
                properties.put("sun.stderr.encoding", getDefaultCharacterEncoding());
            } else if (getJavaVersionFromJavaHome().isCompatibleWith(JavaVersion.VERSION_19)) {
                properties.put("stdout.encoding", getDefaultCharacterEncoding());
                properties.put("stderr.encoding", getDefaultCharacterEncoding());
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradlePomModuleDescriptorParserProfileTest.groovy

                <activation>
                    <activeByDefault>true</activeByDefault>
                </activation>
                <properties>
                    <some.group>group-one</some.group>
                    <some.artifact>artifact-one</some.artifact>
                    <some.version>version-one</some.version>
                </properties>
            </profile>
        </profiles>
    </project>
    """
    
            when:
            parsePom()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 49.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    Gradle does this by loading the properties files and only considering the individual properties during up-to-date checks or build cache key calculations.
    
    It is sometimes the case, though, that certain properties have a runtime impact, while others do not.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    It works for properties that are publicly seen as `final` (without a setter) and have type `Property` or `ConfigurableFileCollection`.
    Since properties have to be `final`, our general recommendation is not to implement custom setters for properties with lazy types and, if possible, implement such properties via an abstract getter.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  5. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

        }
    
        // ----------------------------------------------------------------------
        // Properties handling
        // ----------------------------------------------------------------------
    
        static void populateProperties(
                CommandLine commandLine, Properties paths, Properties systemProperties, Properties userProperties)
                throws Exception {
            EnvironmentUtils.addEnvVars(systemProperties);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    === Fine-grained tracking of Gradle properties as build configuration inputs
    
    Currently, all external sources of Gradle properties (`gradle.properties` in project directories and in the `<<directory_layout.adoc#dir:gradle_user_home,GRADLE_USER_HOME>>`, environment variables and system properties that set properties, and properties specified with
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/Project.java

     * <code>rootProject</code> property.  The properties of this scope are readable or writable depending on the presence
     * of the corresponding getter or setter method.</li>
     *
     * <li>The extra properties of the project.  Each project maintains a map of extra properties, which
     * can contain any arbitrary name -&gt; value pair.  Once defined, the properties of this scope are readable and writable.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

              "type": "array",
              "items": { "type": "string", "default": "" }
            },
            "x-kubernetes-list-type": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  9. docs/metrics/prometheus/grafana/minio-dashboard.json

              ],
              "unit": "bytes"
            },
            "overrides": [
              {
                "matcher": {
                  "id": "byName",
                  "options": "Free"
                },
                "properties": [
                  {
                    "id": "color",
                    "value": {
                      "fixedColor": "green",
                      "mode": "fixed"
                    }
                  }
                ]
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 15 10:03:01 UTC 2024
    - 93K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParser.java

            return "Ivy file";
        }
    
        private Map<String, String> populateProperties() {
            HashMap<String, String> properties = new HashMap<>();
            String baseDir = new File(".").getAbsolutePath();
            properties.put("ivy.default.settings.dir", baseDir);
            properties.put("ivy.basedir", baseDir);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 65K bytes
    - Viewed (0)
Back to top