Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 130 for memhash (0.21 sec)

  1. 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)
  2. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/plugins/JavaGradlePluginPluginIntegrationTest.groovy

                        }
                    }
                }
            """
            expect:
            succeeds "jar"
            def descriptorHash = file("build/resources/main/META-INF/gradle-plugins/test-plugin.properties").md5Hash
            descriptorHash == "0698dda8ffafedc3b054c5fe3aae95f1"
        }
    
        def "Plugin descriptor generation is up-to-date if declarations did not change"() {
            given:
            buildFile()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  3. 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)
  4. api/go1.19.txt

    pkg go/doc/comment, type Text interface, unexported methods #51082
    pkg go/types, method (*Func) Origin() *Func #51682
    pkg go/types, method (*Var) Origin() *Var #51682
    pkg hash/maphash, func Bytes(Seed, []uint8) uint64 #42710
    pkg hash/maphash, func String(Seed, string) uint64 #42710
    pkg html/template, method (*Template) Funcs(template.FuncMap) *Template #46121
    pkg html/template, type FuncMap = template.FuncMap #46121
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 02 16:29:41 UTC 2022
    - 17.9K bytes
    - Viewed (0)
  5. platforms/jvm/normalization-java/src/main/java/org/gradle/internal/fingerprint/classpath/impl/ClasspathFingerprintingStrategy.java

                    } else if (relativePath.isRoot()) {
                        return nonZipFingerprintingStrategy.determineNonJarFingerprint(fileSnapshot.getHash());
                    } else {
                        return classpathResourceHasher.hash(fileSnapshotContext);
                    }
                } catch (IOException e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/IncrementalCompileFilesFactory.java

            }
    
            private boolean graphHasNotChanged(File sourceFile, HashCode fileHash, SourceFileState previousState, Set<File> existingHeaders) {
                if (!fileHash.equals(previousState.getHash())) {
                    // Source file has changed
                    return false;
                }
                if (previousState.getEdges().isEmpty()) {
                    // Source file has not changed and no include files
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  7. src/crypto/aes/gcm_ppc64x.s

    	STXVD2X VHH, (XIP+R10)
    	MOVD    $0xc0, R10
    	STXVD2X VH2L, (XIP+R8)  // save H^4
    	STXVD2X VH2, (XIP+R9)
    	STXVD2X VH2H, (XIP+R10)
    
    	RET
    
    // func gcmHash(output []byte, productTable *[256]byte, inp []byte, len int)
    TEXT ยทgcmHash(SB), NOSPLIT, $0-64
    	MOVD output+0(FP), XIP
    	MOVD productTable+24(FP), HTBL
    	MOVD inp+32(FP), INP
    	MOVD len+56(FP), LEN
    
    	MOVD   $0x10, R8
    	MOVD   $0x20, R9
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  8. platforms/software/resources-gcs/src/integTest/groovy/org/gradle/integtests/resource/gcs/fixtures/GcsServer.groovy

                            "etag": "${calculateEtag(file)}",
                            "size": "0",
                            "updated": "${RCF_3339_DATE_FORMAT.print(file.lastModified())}",
                            "md5Hash": "${encodeBase64String(Hashing.md5().hashFile(file).toByteArray())}"
                        }
                        """
                    }
                }
            }
            expect(httpStub)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  9. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/impl/DirectorySnapshotter.java

                                    targetSnapshot.getAbsolutePath(),
                                    internedFileName,
                                    AccessType.VIA_SYMLINK,
                                    targetSnapshot.getHash(),
                                    targetSnapshot.getChildren()
                                );
                                builder.visitDirectory(directorySnapshotAccessedViaSymlink);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 24.4K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/internal/classpath/DefaultCachedClasspathTransformerTest.groovy

        def classpathFingerprinter = Stub(ClasspathFingerprinter) {
            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)
Back to top