Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 566 for checkPub (0.15 sec)

  1. src/cmd/go/internal/modfetch/sumdb.go

    		// The checksum database provides a stronger guarantee,
    		// so we don't make that exception.
    
    		// Otherwise, require the checksum database.
    		if must {
    			return true
    		}
    	}
    	return cfg.GOSUMDB != "off" && !module.MatchPrefixPatterns(cfg.GONOSUMDB, mod.Path)
    }
    
    // lookupSumDB returns the Go checksum database's go.sum lines for the given module,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 20 15:02:47 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  2. src/crypto/sha1/sha1.go

    	crypto.RegisterHash(crypto.SHA1, New)
    }
    
    // The size of a SHA-1 checksum in bytes.
    const Size = 20
    
    // The blocksize of SHA-1 in bytes.
    const BlockSize = 64
    
    const (
    	chunk = 64
    	init0 = 0x67452301
    	init1 = 0xEFCDAB89
    	init2 = 0x98BADCFE
    	init3 = 0x10325476
    	init4 = 0xC3D2E1F0
    )
    
    // digest represents the partial evaluation of a checksum.
    type digest struct {
    	h   [5]uint32
    	x   [chunk]byte
    	nx  int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:50:58 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. .github/workflows/vulncheck.yml

          - master
    
      push:
        branches:
          - master
    
    permissions:
      contents: read # to fetch code (actions/checkout)
    
    jobs:
      vulncheck:
        name: Analysis
        runs-on: ubuntu-latest
        steps:
          - name: Check out code into the Go module directory
            uses: actions/checkout@v4
          - name: Set up Go
            uses: actions/setup-go@v5
            with:
              go-version: 1.22.4
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 15:44:53 UTC 2024
    - 687 bytes
    - Viewed (0)
  4. src/hash/adler32/adler32_test.go

    		if len(in) > 220 {
    			in = in[:100] + "..." + in[len(in)-100:]
    		}
    		p := []byte(g.in)
    		if got := checksum(p); got != g.out {
    			t.Errorf("simple implementation: checksum(%q) = 0x%x want 0x%x", in, got, g.out)
    			continue
    		}
    		if got := Checksum(p); got != g.out {
    			t.Errorf("optimized implementation: Checksum(%q) = 0x%x want 0x%x", in, got, g.out)
    			continue
    		}
    	}
    }
    
    func TestGoldenMarshal(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 01 21:04:12 UTC 2017
    - 5.5K bytes
    - Viewed (0)
  5. platforms/software/resources/src/main/java/org/gradle/internal/resource/metadata/ExternalResourceMetaData.java

        /**
         * Returns -1 when the content length is unknown.
         */
        long getContentLength();
    
        /**
         * Some kind of opaque checksum that was advertised by the remote “server”.
         *
         * For HTTP this is likely the value of the ETag header but it may be any kind of opaque checksum.
         *
         * @return The entity tag, or null if there was no advertised or suitable etag.
         */
        @Nullable
        String getEtag();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. src/crypto/md5/md5.go

    )
    
    func init() {
    	crypto.RegisterHash(crypto.MD5, New)
    }
    
    // The size of an MD5 checksum in bytes.
    const Size = 16
    
    // The blocksize of MD5 in bytes.
    const BlockSize = 64
    
    const (
    	init0 = 0x67452301
    	init1 = 0xEFCDAB89
    	init2 = 0x98BADCFE
    	init3 = 0x10325476
    )
    
    // digest represents the partial evaluation of a checksum.
    type digest struct {
    	s   [4]uint32
    	x   [BlockSize]byte
    	nx  int
    	len uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  7. .teamcity/src/main/kotlin/promotion/BasePublishGradleDistribution.kt

        init {
            artifactRules = """
            **/build/git-checkout/platforms/core-runtime/base-services/build/generated-resources/build-receipt/org/gradle/build-receipt.properties
            **/build/distributions/*.zip => promote-build-distributions
            **/build/website-checkout/data/releases.xml
            **/build/git-checkout/build/reports/integTest/** => distribution-tests
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 17:05:02 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/filestore/TwoStageArtifactIdentifierFileStore.java

        }
    
        @Override
        public File whereIs(ModuleComponentArtifactIdentifier artifactId, String checksum) {
            File file = writableStore.whereIs(artifactId, checksum);
            if (file.exists()) {
                return file;
            }
            return readOnlyStore.whereIs(artifactId, checksum);
        }
    
        @Override
        public FileAccessTracker getFileAccessTracker() {
            return fileAccessTracker;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. src/main/java/jcifs/pac/Pac.java

                log.trace(
                    String.format(
                        "Checksum data %s type %d signature %s",
                        Hexdump.toHexString(checksumData),
                        this.serverSignature.getType(),
                        Hexdump.toHexString(this.serverSignature.getChecksum())));
            }
    
            byte checksum[] = PacMac.calculateMac(this.serverSignature.getType(), keys, checksumData);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 6.5K bytes
    - Viewed (0)
  10. src/runtime/debug/mod.go

    	Settings []BuildSetting
    }
    
    // A Module describes a single module included in a build.
    type Module struct {
    	Path    string  // module path
    	Version string  // module version
    	Sum     string  // checksum
    	Replace *Module // replaced by this module
    }
    
    // A BuildSetting is a key-value pair describing one setting that influenced a build.
    //
    // Defined keys include:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 15:06:51 UTC 2023
    - 7.6K bytes
    - Viewed (0)
Back to top