Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 37 of 37 for rthash (1.13 sec)

  1. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/impl/DirectorySnapshotter.java

                FileMetadata metadata = DefaultFileMetadata.file(lastModified, fileLength, accessType);
                HashCode hash = hasher.hash(absoluteFilePath.toFile(), fileLength, lastModified);
                return new RegularFileSnapshot(internedRemappedAbsoluteFilePath, internedName, hash, metadata);
            }
    
            /**
             * unlistable directories (and maybe some locked files) will stop here
             */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 24.4K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/internal/classpath/DefaultCachedClasspathTransformerTest.groovy

            fingerprint(_, _) >> { FileSystemSnapshot snapshot, FileCollectionFingerprint previous ->
                Stub(CurrentFileCollectionFingerprint) {
                    getHash() >> (snapshot as FileSystemLocationSnapshot).hash
                }
            }
        }
        def classpathElementTransformFactoryForAgent = new ClasspathElementTransformFactoryForAgent(classpathBuilder, classpathWalker)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  3. src/internal/fuzz/worker.go

    	// to shared memory after completing minimization.
    	success, err := ws.minimizeInput(ctx, vals, mem, args)
    	if success {
    		writeToMem(vals, mem)
    		outHash := sha256.Sum256(mem.valueCopy())
    		mem.header().rawInMem = false
    		resp.WroteToMem = true
    		if err != nil {
    			resp.Err = err.Error()
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  4. android/guava-testlib/src/com/google/common/testing/FreshValueGenerator.java

        return new Equivalence<T>() {
          @Override
          protected boolean doEquivalent(T a, T b) {
            return false;
          }
    
          @Override
          protected int doHash(T t) {
            return 0;
          }
    
          final String string = paramString(Equivalence.class, generateInt());
    
          @Override
          public String toString() {
            return string;
          }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 28K bytes
    - Viewed (0)
  5. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/file/TestFile.java

            private final long modTime;
            private final HashCode hash;
    
            public Snapshot(long modTime, HashCode hash) {
                this.modTime = modTime;
                this.hash = hash;
            }
    
            public long getModTime() {
                return modTime;
            }
    
            public HashCode getHash() {
                return hash;
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 18:31:52 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  6. guava-testlib/src/com/google/common/testing/FreshValueGenerator.java

        return new Equivalence<T>() {
          @Override
          protected boolean doEquivalent(T a, T b) {
            return false;
          }
    
          @Override
          protected int doHash(T t) {
            return 0;
          }
    
          final String string = paramString(Equivalence.class, generateInt());
    
          @Override
          public String toString() {
            return string;
          }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  7. docs/vi/docs/index.md

    ---
    
    "_Thành thật, những gì bạn đã xây dựng nhìn siêu chắc chắn và bóng bẩy. Theo nhiều cách, nó là những gì tôi đã muốn Hug trở thành - thật sự truyền cảm hứng để thấy ai đó xây dựng nó._"
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 21.9K bytes
    - Viewed (0)
Back to top