Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for normalizeSearchPath (0.2 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/resource/local/PathNormalisingKeyFileStore.java

            return delegate.move(normalizePath(key), source);
        }
    
        protected String normalizePath(String path) {
            return path.replaceAll("[^\\d\\w\\./]", "_");
        }
    
        protected String normalizeSearchPath(String path) {
            return path.replaceAll("[^\\d\\w\\.\\*/]", "_");
        }
    
        @Override
        public LocallyAvailableResource add(String key, Action<File> addAction) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 06 12:56:56 UTC 2019
    - 1.8K bytes
    - Viewed (0)
Back to top