Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for SourceCacheKey (0.23 sec)

  1. compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultModelCache.java

                return "GavCacheKey{" + "gav='" + gav + '\'' + ", tag='" + tag + '\'' + '}';
            }
        }
    
        private static final class SourceCacheKey {
            private final Source source;
    
            private final String tag;
    
            private final int hash;
    
            SourceCacheKey(Source source, String tag) {
                this.source = source;
                this.tag = tag;
                this.hash = Objects.hash(source, tag);
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top