Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for ChecksumEntry (0.21 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/writer/ChecksumEntry.java

    import java.io.File;
    
    class ChecksumEntry extends VerificationEntry {
    
        private final ChecksumKind checksumKind;
        private final int hashCode;
    
        // This field is mutable and is just a performance optimization
        // to avoid creating an extra map in the end, so it does NOT
        // participate in equals/hashcode
        private String checksum;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. pkg/wasm/cache_test.go

    		initialCachedChecksums map[string]*checksumEntry
    		fetchURL               string
    		purgeInterval          time.Duration
    		wasmModuleExpiry       time.Duration
    		checkPurgeTimeout      time.Duration
    		getOptions             GetOptions
    		wantCachedModules      map[moduleKey]*cacheEntry
    		wantCachedChecksums    map[string]*checksumEntry
    		wantFileName           string
    		wantErrorMsgPrefix     string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/writer/WriteDependencyVerificationFile.java

                // previous entry was on unrelated module
                pgpEntry = null;
                previousEntry.set(null);
            }
            if (entry instanceof ChecksumEntry) {
                ChecksumEntry checksum = (ChecksumEntry) entry;
                if (pgpEntry == null || (entry.id.equals(pgpEntry.id) && pgpEntry.isRequiringChecksums())) {
                    String origin = "Generated by Gradle";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  4. pkg/wasm/cache.go

    type LocalFileCache struct {
    	// Map from Wasm module checksum to cache entry.
    	modules map[moduleKey]*cacheEntry
    	// Map from tagged URL to checksum
    	checksums map[string]*checksumEntry
    	// http fetcher fetches Wasm module with HTTP get.
    	httpFetcher *HTTPFetcher
    
    	// directory path used to store Wasm module.
    	dir string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top