Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,255 for PROPERTIES (0.13 sec)

  1. subprojects/core/src/test/resources/META-INF/gradle-plugins/org.gradle.custom-rule-source.properties

    Adam Murdoch <******@****.***> 1715297124 +1000
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 70 bytes
    - Viewed (0)
  2. platforms/jvm/plugins-java-library/src/main/resources/META-INF/gradle-plugins/org.gradle.java-library-distribution.properties

    Tom Tresansky <******@****.***> 1708617374 -0500
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 675 bytes
    - Viewed (0)
  3. subprojects/core/src/test/resources/META-INF/gradle-plugins/org.gradle.custom-plugin-with-injection.properties

    Adam Murdoch <******@****.***> 1715297124 +1000
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 79 bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/core/io/PropertiesUtilTest.java

            final Properties properties = new Properties();
            PropertiesUtil.load(properties, inputStreamReader);
        }
    
        /**
         * Test method for
         * {@link org.codelibs.core.io.PropertiesUtil#load(Properties, File)} .
         */
        @Test
        public void testLoadPropertiesFile() {
            final Properties properties = new Properties();
            PropertiesUtil.load(properties, inputFile);
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  5. platforms/core-execution/build-cache-base/src/main/java/org/gradle/caching/internal/origin/OriginMetadataFactory.java

            return outputStream -> {
                Properties properties = new Properties();
                properties.setProperty(BUILD_INVOCATION_ID_KEY, currentBuildInvocationId);
                properties.setProperty(TYPE_KEY, workType.getCanonicalName());
                properties.setProperty(IDENTITY_KEY, identity);
                properties.setProperty(CACHE_KEY, buildCacheKey.toString());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 20 15:16:00 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/build_environment.adoc

    _Default is the number of CPU processors._
    
    === Using Gradle properties
    
    The following examples demonstrate how to use Gradle properties.
    
    *Example 1:* Setting Gradle properties with a `gradle.properties` file:
    ====
    include::sample[dir="snippets/tutorial/gradleProperties/groovy",files="gradle.properties[tags=gradle-properties]"]
    ====
    
    *Example 2:* Reading Gradle properties at configuration time:
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/util/PropertiesUtils.java

         * </ul>
         */
        public static void store(Properties properties, File propertyFile) throws IOException {
            store(properties, propertyFile, null);
        }
    
        /**
         * Writes {@link java.util.Properties} in a way that the results can be expected to be reproducible.
         *
         * Uses defaults for the arguments of {@link PropertiesUtils#store(Properties, File, String, Charset, String)}:
         * <ul>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 14:17:21 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/converter/LayoutToPropertiesConverter.java

            Map<String, String> properties = new HashMap<>();
            configureFromHomeDir(layout.getGradleInstallationHomeDir(), properties);
            configureFromBuildDir(layout, properties);
            configureFromHomeDir(layout.getGradleUserHomeDir(), properties);
            configureFromSystemPropertiesOfThisJvm(Cast.uncheckedNonnullCast(properties));
            properties.putAll(initialProperties.getRequestedSystemProperties());
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 21:41:57 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  9. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/DefaultPersistentDirectoryCacheTest.groovy

            0 * _
            loadProperties(dir.file("cache.properties")) == properties
        }
    
        def rebuildsCacheWhenPropertyIsAdded() {
            given:
            def dir = createCacheDir()
            def properties = properties + [newProp: 'newValue']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 16:40:49 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultProfileActivationContext.java

            return map != null ? Collections.unmodifiableMap(map) : Collections.emptyMap();
        }
    
        private static Map<String, String> toMap(Properties properties) {
            if (properties != null && !properties.isEmpty()) {
                return properties.entrySet().stream()
                        .collect(Collectors.toMap(e -> String.valueOf(e.getKey()), e -> String.valueOf(e.getValue())));
    
            } else {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 6.9K bytes
    - Viewed (0)
Back to top