Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for constraintCacheKey (0.23 sec)

  1. platforms/software/version-control/src/main/java/org/gradle/vcs/internal/resolver/VcsVersionSelectionCache.java

            String cacheKey = constraintCacheKey(repository, constraint);
            return resolvedVersions.get(cacheKey);
        }
    
        public void putWorkingDirForSelector(VersionControlRepositoryConnection repository, VersionConstraint constraint, File workingDir) {
            String cacheKey = constraintCacheKey(repository, constraint);
            resolvedVersions.put(cacheKey, workingDir);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  2. platforms/software/version-control/src/main/java/org/gradle/vcs/internal/resolver/PersistentVcsMetadataCache.java

                    return workingDirCache.getIfPresent(constraintCacheKey(repository, constraint));
                }
            });
        }
    
        public void putVersionForSelector(final VersionControlRepositoryConnection repository, final VersionConstraint constraint, final VersionRef selectedVersion) {
            cache.useCache(() -> workingDirCache.put(constraintCacheKey(repository, constraint), selectedVersion));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:50 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top