Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 37 for rthash (0.2 sec)

  1. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/AssignImmutableWorkspaceStep.java

            return outputSnapshots.entrySet().stream()
                .flatMap(entry ->
                    entry.getValue().roots()
                        .map(locationSnapshot -> immutableEntry(entry.getKey(), locationSnapshot.getHash())))
                .collect(toImmutableListMultimap(
                    Map.Entry::getKey,
                    Map.Entry::getValue
                ));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 16:44:11 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  2. operator/pkg/helmreconciler/prune.go

    // RemoveObject removes object with objHash in componentName from the object cache.
    func (h *HelmReconciler) removeFromObjectCache(componentName, objHash string) {
    	crHash, err := h.getCRHash(componentName)
    	if err != nil {
    		scope.Error(err.Error())
    	}
    	cache.RemoveObject(crHash, objHash)
    	scope.Infof("Removed object %s from Cache.", objHash)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  3. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/vfs/impl/DefaultFileSystemAccess.java

                switch (fileMetadata.getType()) {
                    case RegularFile:
                        HashCode hash = hasher.hash(file, fileMetadata.getLength(), fileMetadata.getLastModified());
                        return vfsStorer.store(new RegularFileSnapshot(location, file.getName(), hash, fileMetadata));
                    case Missing:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:35 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/services/CacheInstrumentationDataBuildService.java

                    if (snapshot.getType() == FileType.Missing) {
                        return null;
                    }
    
                    hasher.putHash(snapshot.getHash());
                    hasher.putString(file.getName());
                    return hasher.hash().toString();
                });
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 15:08:33 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  5. src/crypto/tls/handshake_server_tls13.go

    // interfaces implemented by standard library hashes to clone the state of in
    // to a new instance of h. It returns nil if the operation fails.
    func cloneHash(in hash.Hash, h crypto.Hash) hash.Hash {
    	// Recreate the interface to avoid importing encoding.
    	type binaryMarshaler interface {
    		MarshalBinary() (data []byte, err error)
    		UnmarshalBinary(data []byte) error
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  6. platforms/jvm/scala/src/main/java/org/gradle/api/internal/tasks/scala/ZincScalaCompilerFactory.java

            return version.startsWith("3.");
        }
    
        private static ClassLoader getCachedClassLoader(HashedClasspath classpath, ClassLoader parent) {
            try {
                return CLASSLOADER_CACHE.get(classpath.getHash(), new Callable<ClassLoader>() {
                    @Override
                    public ClassLoader call() throws Exception {
                        return getClassLoader(classpath.getClasspath(), parent);
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:31 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  7. platforms/jvm/normalization-java/src/main/java/org/gradle/internal/fingerprint/classpath/impl/ClasspathFingerprintingStrategy.java

    import org.gradle.internal.fingerprint.impl.DefaultFileSystemLocationFingerprint;
    import org.gradle.internal.fingerprint.impl.IgnoredPathFileSystemLocationFingerprint;
    import org.gradle.internal.hash.HashCode;
    import org.gradle.internal.hash.Hasher;
    import org.gradle.internal.hash.Hashing;
    import org.gradle.internal.snapshot.FileSystemLocationSnapshot;
    import org.gradle.internal.snapshot.FileSystemLocationSnapshot.FileSystemLocationSnapshotVisitor;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  8. platforms/core-execution/hashing/src/main/java/org/gradle/internal/hash/HashCode.java

     */
    
    package org.gradle.internal.hash;
    
    import com.google.common.annotations.VisibleForTesting;
    
    import javax.annotation.Nonnull;
    import javax.annotation.Nullable;
    import java.io.Serializable;
    import java.math.BigInteger;
    
    import static org.gradle.internal.hash.HashCode.Usage.CLONE_BYTES_IF_NECESSARY;
    import static org.gradle.internal.hash.HashCode.Usage.SAFE_TO_REUSE_BYTES;
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 14 19:25:07 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/IncrementalCompileFilesFactory.java

                    if (includeFile == null) {
                        // Include file not found (but previously was found)
                        return false;
                    }
                    HashCode hash = includeFile.getContentHash();
                    if (!hash.equals(includeFileEdge.getResolvedTo())) {
                        // Include file changed
                        return false;
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  10. pilot/pkg/status/distribution/reporter.go

    				}
    			} else if err != nil {
    				scope.Errorf("Encountered error retrieving version %s of key %s from Store: %v", nonce, key, err)
    				continue
    			} else if nonce == r.ledger.RootHash() {
    				scope.Warnf("Cache appears to be missing latest version of %s", key)
    			}
    			if out.InProgressResources[key] >= out.DataPlaneCount {
    				// if this resource is done reconciling, let's not worry about it anymore
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 30 17:25:17 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top