Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 281 for PROPERTIES (0.15 sec)

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

                return true;
            }
            File daemonJvmProperties = new File(getWorkingDir(), "gradle/gradle-daemon-jvm.properties");
            if (daemonJvmProperties.isFile()) {
                Properties properties = GUtil.loadProperties(daemonJvmProperties);
                String requestedVersion = properties.getProperty("toolchainVersion");
                if (requestedVersion != null) {
                    try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  2. maven-compat/src/test/java/org/apache/maven/AbstractCoreMavenComponentTestCase.java

            return createMavenSession(pom, new Properties());
        }
    
        protected MavenSession createMavenSession(File pom, Properties executionProperties) throws Exception {
            return createMavenSession(pom, executionProperties, false);
        }
    
        protected MavenSession createMavenSession(File pom, Properties executionProperties, boolean includeModules)
                throws Exception {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. maven-core/src/test/java/org/apache/maven/AbstractCoreMavenComponentTestCase.java

            return createMavenSession(pom, new Properties());
        }
    
        protected MavenSession createMavenSession(File pom, Properties executionProperties) throws Exception {
            return createMavenSession(pom, executionProperties, false);
        }
    
        protected MavenSession createMavenSession(File pom, Properties executionProperties, boolean includeModules)
                throws Exception {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelInterpolator.java

            private final Instant startTime;
            private final Map<String, String> properties;
    
            BuildTimestampValueSource(Instant startTime, Map<String, String> properties) {
                super(false);
                this.startTime = startTime;
                this.properties = properties;
            }
    
            @Override
            public Object getValue(String expression) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 20K bytes
    - Viewed (0)
  5. tests/test_tutorial/test_request_forms_and_files/test_tutorial001_an.py

                        "title": "Body_create_file_files__post",
                        "required": ["file", "fileb", "token"],
                        "type": "object",
                        "properties": {
                            "file": {"title": "File", "type": "string", "format": "binary"},
                            "fileb": {
                                "title": "Fileb",
                                "type": "string",
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/Task.java

     *
     * </ul>
     *
     * <h3>Using a Task in a Build File</h3>
     *
     * <a id="properties"></a> <h4>Dynamic Properties</h4>
     *
     * <p>A {@code Task} has 4 'scopes' for properties. You can access these properties by name from the build file or by
     * calling the {@link #property(String)} method. You can change the value of these properties by calling the {@link #setProperty(String, Object)} method.</p>
     *
     * <ul>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 17:25:12 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/classpath/Instrumented.java

            return oldValue;
        }
    
        public static void setSystemProperties(Properties properties, String consumer) {
            listener().systemPropertiesCleared(consumer);
            properties.forEach((k, v) -> listener().systemPropertyChanged(k, v, consumer));
            System.setProperties(properties);
        }
    
        // Called by generated code.
        public static Integer getInteger(String key, String consumer) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  8. android/pom.xml

            <jdk>[11,13)</jdk>
          </activation>
          <properties>
            <maven-javadoc-plugin.additionalJOptions>--no-module-directories</maven-javadoc-plugin.additionalJOptions>
          </properties>
        </profile>
        <profile>
          <id>open-jre-modules</id>
          <activation>
            <jdk>[9,]</jdk>
          </activation>
          <properties>
            <!--
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  9. pom.xml

            <jdk>[11,13)</jdk>
          </activation>
          <properties>
            <maven-javadoc-plugin.additionalJOptions>--no-module-directories</maven-javadoc-plugin.additionalJOptions>
          </properties>
        </profile>
        <profile>
          <id>open-jre-modules</id>
          <activation>
            <jdk>[9,]</jdk>
          </activation>
          <properties>
            <!--
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/LoggingConfigurationBuildOptions.java

                );
            }
    
            @Override
            public void applyFromProperty(Map<String, String> properties, LoggingConfiguration settings) {
                String value = properties.get(property);
    
                if (value != null) {
                    LogLevel level = parseLogLevel(value);
                    settings.setLogLevel(level);
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 21:41:57 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top