Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,660 for hash_code (0.16 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/initialization/loadercache/DefaultClassLoaderCache.java

            }
    
            @Override
            public int hashCode() {
                int result = implementationHash.hashCode();
                result = 31 * result + classPath.hashCode();
                result = 31 * result + (filterSpec != null ? filterSpec.hashCode() : 0);
                result = 31 * result + (parent != null ? parent.hashCode() : 0);
                return result;
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/modulecache/artifacts/TwoStageModuleArtifactCacheTest.groovy

    import org.gradle.internal.hash.HashCode
    import spock.lang.Specification
    import spock.lang.Subject
    
    import java.nio.file.Path
    
    class TwoStageModuleArtifactCacheTest extends Specification {
        Path readOnlyPath = Stub(Path)
        File artifact = Stub(File)
        HashCode hashCode = Stub(HashCode)
        def key = Stub(ArtifactAtRepositoryKey)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-application/src/main/java/org/gradle/api/internal/plugins/DefaultJavaAppStartScriptGenerationDetails.java

        }
    
        @Override
        public int hashCode() {
            int result = applicationName != null ? applicationName.hashCode() : 0;
            result = 31 * result + (optsEnvironmentVar != null ? optsEnvironmentVar.hashCode() : 0);
            result = 31 * result + (exitEnvironmentVar != null ? exitEnvironmentVar.hashCode() : 0);
            result = 31 * result + (mainClassName != null ? mainClassName.hashCode() : 0);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/impl/DefaultImmutableWorkspaceMetadataStore.java

                ImmutableListMultimap<String, HashCode> outputPropertyHashes = metadata.getOutputPropertyHashes();
                encoder.writeSmallInt(outputPropertyHashes.keySet().size());
                for (Map.Entry<String, Collection<HashCode>> entry : outputPropertyHashes.asMap().entrySet()) {
                    encoder.writeString(entry.getKey());
                    Collection<HashCode> hashes = entry.getValue();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 14:27:26 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. platforms/core-execution/build-cache-local/src/main/java/org/gradle/caching/local/internal/DirectoryBuildCache.java

        }
    
        @Override
        public void withTempFile(HashCode key, Consumer<? super File> action) {
            persistentCache.withFileLock(() -> tempFileStore.withTempFile(key, action));
        }
    
        @Override
        public void close() {
            persistentCache.close();
        }
    
        private File getCacheEntryFile(HashCode key) {
            return new File(persistentCache.getBaseDir(), key.toString());
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:53 UTC 2024
    - 7K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/impl/SerializableFileCollectionFingerprint.java

    import org.gradle.internal.hash.HashCode;
    
    import java.util.Map;
    
    public class SerializableFileCollectionFingerprint implements FileCollectionFingerprint {
    
        private final Map<String, FileSystemLocationFingerprint> fingerprints;
        private final ImmutableMultimap<String, HashCode> rootHashes;
        private final HashCode strategyConfigurationHash;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/hash/DefaultChecksumService.java

        }
    
        @Override
        public HashCode md5(File file) {
            return doHash(file, md5);
        }
    
        @Override
        public HashCode sha1(File file) {
            return doHash(file, sha1);
        }
    
        @Override
        public HashCode sha256(File file) {
            return doHash(file, sha256);
        }
    
        @Override
        public HashCode sha512(File file) {
            return doHash(file, sha512);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jun 04 22:23:37 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  8. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/HashCodeSerializer.java

    import org.gradle.internal.hash.HashCode;
    
    import java.io.IOException;
    
    @Immutable
    public class HashCodeSerializer extends AbstractSerializer<HashCode> {
        @Override
        public HashCode read(Decoder decoder) throws IOException {
            byte hashSize = decoder.readByte();
            byte[] hash = new byte[hashSize];
            decoder.readBytes(hash);
            return HashCode.fromBytes(hash);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 12:33:49 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. platforms/jvm/normalization-java/src/main/java/org/gradle/api/internal/changedetection/state/ResourceSnapshotterCacheService.java

    import org.gradle.internal.hash.HashCode;
    import org.gradle.internal.snapshot.FileSystemLocationSnapshot;
    
    import javax.annotation.Nullable;
    import java.io.IOException;
    
    public interface ResourceSnapshotterCacheService {
        @Nullable
        HashCode hashFile(FileSystemLocationSnapshot snapshot, FileSystemLocationSnapshotHasher hasher, HashCode configurationHash) throws IOException;
    
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/signatures/KtFe10FunctionLikeSignature.kt

            return true
        }
    
        override fun hashCode(): Int {
            var result = backingSymbol.hashCode()
            result = 31 * result + backingReturnType.hashCode()
            result = 31 * result + (backingReceiverType?.hashCode() ?: 0)
            result = 31 * result + backingValueParameters.hashCode()
            return result
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top