Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for withSystemProperty (0.18 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/SystemProperties.java

         * @param value The value to temporarily set the property to
         * @param factory Instance created by the Factory implementation
         */
        public synchronized <T> T withSystemProperty(String propertyName, String value, Factory<T> factory) {
            String originalValue = overrideProperty(propertyName, value);
    
            try {
                return factory.create();
            } finally {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top