Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for putWorkingDirForSelector (0.19 sec)

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

                        if (workingDir == null) {
                            return null;
                        }
    
                        inMemoryCache.putWorkingDirForSelector(repository, selector.getVersionConstraint(), workingDir);
                    }
                    return workingDir;
                }
            });
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. 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)
Back to top