Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for UC (0.01 sec)

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

                throw new UncheckedIOException(e);
            }
        }
    
        public static Properties loadProperties(URL url) {
            try {
                URLConnection uc = url.openConnection();
                uc.setUseCaches(false);
                return loadProperties(uc.getInputStream());
            } catch (IOException e) {
                throw new UncheckedIOException(e);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/main/java/org/gradle/util/GUtil.java

                throw new UncheckedIOException(e);
            }
        }
    
        public static Properties loadProperties(URL url) {
            try {
                URLConnection uc = url.openConnection();
                uc.setUseCaches(false);
                return loadProperties(uc.getInputStream());
            } catch (IOException e) {
                throw new UncheckedIOException(e);
            }
        }
    
    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