Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for saveProperties (0.17 sec)

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

            String existingArgs = properties.getProperty(ORG_GRADLE_JVMARGS, "");
            properties.setProperty(ORG_GRADLE_JVMARGS, "-Xmx512m -XX:MaxMetaspaceSize=512m -XX:+HeapDumpOnOutOfMemoryError " + existingArgs);
            GUtil.saveProperties(properties, propertiesFile);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/GUtil.java

                throw new UncheckedIOException(e);
            } finally {
                IoActions.closeQuietly(inputStream);
            }
            return properties;
        }
    
        public static void saveProperties(Properties properties, File propertyFile) {
            try {
                FileOutputStream propertiesFileOutputStream = new FileOutputStream(propertyFile);
                try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/main/java/org/gradle/util/GUtil.java

                throw new UncheckedIOException(e);
            } finally {
                IoActions.closeQuietly(inputStream);
            }
            return properties;
        }
    
        public static void saveProperties(Properties properties, File propertyFile) {
            try {
                FileOutputStream propertiesFileOutputStream = new FileOutputStream(propertyFile);
                try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 21.3K bytes
    - Viewed (0)
Back to top