Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for contentHash (0.14 sec)

  1. internal/hash/reader.go

    				}
    			}
    		}
    		if r.contentHasher != nil {
    			if r.contentHash.Type.Trailing() {
    				var err error
    				r.contentHash.Encoded = r.trailer.Get(r.contentHash.Type.Key())
    				r.contentHash.Raw, err = base64.StdEncoding.DecodeString(r.contentHash.Encoded)
    				if err != nil || len(r.contentHash.Raw) == 0 {
    					return 0, ChecksumMismatch{Got: r.contentHash.Encoded}
    				}
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 18 17:00:54 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/DefaultSourceIncludesResolver.java

            final File file;
            final String includePath;
            final HashCode contentHash;
    
            SystemIncludeFile(File file, String includePath, HashCode contentHash) {
                this.file = file;
                this.includePath = includePath;
                this.contentHash = contentHash;
            }
    
            @Override
            public String getPath() {
                return includePath;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 24.4K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GroovyScriptClassCompiler.java

            private final String contentHash;
    
            public BuildScriptRemapper(ClassVisitor cv, ScriptSource source, String originalClassName, String contentHash) {
                super(AsmConstants.ASM_LEVEL, cv);
                this.scriptSource = source;
                this.originalClassName = originalClassName;
                this.contentHash = contentHash;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:23:24 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/CrossBuildScriptCachingIntegrationSpec.groovy

                        def contentHash = o.class.getMethod('getContentHash').invoke(o)
                        assert originalClassName
                        assert contentHash
                        println "Action type: ${originalClassName} (remapped name: ${o.class})"
                        println "Action hash: ${contentHash}"
                        if (!seen.add(contentHash)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 17:32:21 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/classpath/DefaultCachedClasspathTransformer.java

            if (snapshot.getType() == FileType.Missing) {
                return empty();
            }
            if (shouldUseFromCache(original)) {
                final HashCode contentHash = snapshot.getHash();
                if (!seen.add(contentHash)) {
                    // Already seen an entry with the same content hash, ignore it
                    return empty();
                }
                // It's a new content hash, transform it
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config.go

    // It does not attempt to decode or load the config, and serves as a cheap check to determine if the file has changed.
    func GetEncryptionConfigHash(filepath string) (string, error) {
    	_, contentHash, err := loadDataAndHash(filepath)
    	return contentHash, err
    }
    
    // prefixTransformersAndProbes creates the set of transformers and KMS probes based on the given resource config.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/objfile.go

    	}
    	w.tmpHash64 = contentHash64(s)
    	w.Bytes(w.tmpHash64[:])
    }
    
    func (w *writer) Hash(s *LSym) {
    	if !s.ContentAddressable() {
    		panic("Hash of non-content-addressable symbol")
    	}
    	w.tmpHash = w.contentHash(s)
    	w.Bytes(w.tmpHash[:])
    }
    
    // contentHashSection returns a mnemonic for s's section.
    // The goal is to prevent content-addressability from moving symbols between sections.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24K bytes
    - Viewed (0)
  8. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/Module.java

         * Defaults to the project directory.
         * If null, the directory containing the output file will be used.
         */
        public Path getContentPath() {
            return contentPath;
        }
    
        public void setContentPath(Path contentPath) {
            this.contentPath = contentPath;
        }
    
        /**
         * The directories containing the production sources.
         * Must not be null.
         */
        public Set<Path> getSourceFolders() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 21.2K bytes
    - Viewed (0)
Back to top