Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 111 for tophash (0.43 sec)

  1. guava/src/com/google/common/base/Equivalence.java

     *     source-compatible</a> since 4.0)
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    /*
     * The type parameter is <T> rather than <T extends @Nullable> so that we can use T in the
     * doEquivalent and doHash methods to indicate that the parameter cannot be null.
     */
    public abstract class Equivalence<T> implements BiPredicate<@Nullable T, @Nullable T> {
      /** Constructor for use by subclasses. */
      protected Equivalence() {}
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/internal/IdeaDependenciesProvider.java

                library.setModuleVersion(DefaultModuleVersionIdentifier.newId(moduleId.getModuleIdentifier(), moduleId.getVersion()));
                Set<Path> sourcePaths = new LinkedHashSet<>();
                for (ResolvedArtifactResult sourceArtifact : sources) {
                    sourcePaths.add(toPath(ideaModule, sourceArtifact.getFile()));
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  3. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/file/TestFile.java

            if (Files.isSymbolicLink(this.toPath())) {
                try {
                    Files.delete(toPath());
                } catch (IOException e) {
                    throw new UncheckedIOException(e);
                }
            }
            try {
                getParentFile().mkdirs();
                Files.createSymbolicLink(this.toPath(), target.toPath());
            } catch (IOException e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 18:31:52 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modfetch/fetch.go

    	// Do the file I/O before acquiring the go.sum lock.
    	ziphash, err := CachePath(ctx, mod, "ziphash")
    	if err != nil {
    		base.Fatalf("verifying %v", module.VersionError(mod, err))
    	}
    	data, err := lockedfile.Read(ziphash)
    	if err != nil {
    		base.Fatalf("verifying %v", module.VersionError(mod, err))
    	}
    	data = bytes.TrimSpace(data)
    	if !isValidSum(data) {
    		// Recreate ziphash file from zip file and use that to check the mod sum.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/DependencyManagementBuildTreeScopeServices.java

                "resource-at-url",
                timeProvider,
                cacheAccessCoordinator,
                externalResourceFileStore.getFileAccessTracker(),
                artifactCacheMetadata.getCacheDir().toPath()
            );
        }
    
        @Provides
        FileStoreAndIndexProvider createFileStoreAndIndexProvider(
            BuildCommencedTimeProvider timeProvider,
            ArtifactCachesProvider artifactCaches,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  6. src/cmd/go/internal/search/search.go

    			_, elem := filepath.Split(path)
    			if strings.HasPrefix(elem, ".") || strings.HasPrefix(elem, "_") || elem == "testdata" {
    				want = false
    			}
    
    			name := filepath.ToSlash(path[len(src):])
    			if m.pattern == "std" && (!IsStandardImportPath(name) || name == "cmd") {
    				// The name "std" is only the standard library.
    				// If the name is cmd, it's the root of the command tree.
    				want = false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 31 20:33:05 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  7. src/runtime/type.go

    			} else {
    				t = prev.typemap[typeOff(tl)]
    			}
    			// Add to typehash if not seen before.
    			tlist := typehash[t.Hash]
    			for _, tcur := range tlist {
    				if tcur == t {
    					continue collect
    				}
    			}
    			typehash[t.Hash] = append(tlist, t)
    		}
    
    		if md.typemap == nil {
    			// If any of this module's typelinks match a type from a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/incremental/transaction/CompileTransactionTest.groovy

        private List<String> listAllFiles(File file) {
            return Files.find(file.toPath(), 99, { path, attributes -> attributes.isRegularFile() })
                .collect { file.toPath().relativize(it).toString().replace("\\", "/") }
                .toSorted()
        }
    
        private boolean hasOnlyDirectories(File file) {
            try (Stream<Path> stream = Files.walk(file.toPath())) {
                return stream.allMatch { Files.isDirectory(it) }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 18K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/test/groovy/org/gradle/tooling/internal/provider/continuous/ContinuousBuildActionExecutorTest.groovy

            then:
            conditions.eventually {
                waitingForChangesMessageAppears()
            }
    
            when:
            changeListeners.broadcastChange(FileWatcherRegistry.Type.MODIFIED, file.toPath())
    
            then:
            conditions.eventually {
                rebuiltBecauseOfChange()
            }
    
            cleanup:
            cancellationToken.cancel()
            buildExits(runningBuild)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/base/Equivalence.java

     *     source-compatible</a> since 4.0)
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    /*
     * The type parameter is <T> rather than <T extends @Nullable> so that we can use T in the
     * doEquivalent and doHash methods to indicate that the parameter cannot be null.
     */
    public abstract class Equivalence<T> {
      /** Constructor for use by subclasses. */
      protected Equivalence() {}
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu May 16 14:34:47 UTC 2024
    - 13.8K bytes
    - Viewed (0)
Back to top