Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 194 for digests (0.1 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/gen_test.go

    	ans := make([]RequestDigest, 0, n)
    	for len(ans) < n && len(digests) > 0 {
    		i := rng.Intn(len(digests))
    		digest := digests[i]
    		ans = append(ans, digest)
    		digests[i] = digests[len(digests)-1]
    		digests = digests[:len(digests)-1]
    		if rule != nil {
    			thisMatches := matchesPolicyRule(digest, rule)
    			if toMatch {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 24.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/match_test.go

    		})
    	}
    }
    
    func checkFTR(t *testing.T, ftr *fsTestingRecord) {
    	for expectMatch, digests1 := range ftr.digests {
    		if testDebugLogs {
    			t.Logf("%s.digests[%v] = %#+v", ftr.fs.Name, expectMatch, digests1)
    		}
    		for _, digests2 := range digests1 {
    			for _, digest := range digests2 {
    				actualMatch := matchesFlowSchema(digest, ftr.fs)
    				if expectMatch != actualMatch {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  3. operator/pkg/validate/common.go

    		optional(literal(`:`), match(`[0-9]+`)))
    
    	// TagRegexp matches valid tag names. From docker/docker:graph/tags.go.
    	TagRegexp = match(`[\w][\w.-]{0,127}`)
    
    	// DigestRegexp matches valid digests.
    	DigestRegexp = match(`[A-Za-z][A-Za-z0-9]*(?:[-_+.][A-Za-z][A-Za-z0-9]*)*[:][[:xdigit:]]{32,}`)
    
    	// NameRegexp is the format for the name component of references. The
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 10 15:35:03 UTC 2023
    - 11K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/controller_test.go

    	// Use this to make sure all these requests have started executing
    	// before the next reconfiguration
    	var startWG sync.WaitGroup
    	for matches, digests1 := range ftr.digests {
    		for isResource, digests2 := range digests1 {
    			for _, rd := range digests2 {
    				finishCh := make(chan struct{})
    				rdu := uniqify(rd)
    				cts.requestWG.Add(1)
    				startWG.Add(1)
    				go func(matches, isResource bool, rdu RequestDigest) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  5. pkg/kubelet/container/runtime.go

    	// PullImage pulls an image from the network to local storage using the supplied
    	// secrets if necessary. It returns a reference (digest or ID) to the pulled image.
    	PullImage(ctx context.Context, image ImageSpec, pullSecrets []v1.Secret, podSandboxConfig *runtimeapi.PodSandboxConfig) (string, error)
    	// GetImageRef gets the reference (digest or ID) of the image which has already been in
    	// the local storage. It returns ("", nil) if the image isn't in the local storage.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_controller.go

    	priorityLevelMaxSeatsPercent = float64(0.15)
    )
    
    // This file contains a simple local (to the apiserver) controller
    // that digests API Priority and Fairness config objects (FlowSchema
    // and PriorityLevelConfiguration) into the data structure that the
    // filter uses.  At this first level of development this controller
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 48.8K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/http/HttpAuthenticationDependencyResolutionIntegrationTest.groovy

            'basic'            | 'authentication { auth(BasicAuthentication) }'                                | BASIC             | ['Basic']
            'digest'           | 'authentication { auth(DigestAuthentication) }'                               | DIGEST            | ['None', 'Digest']
            'default'          | ''                                                                            | BASIC             | ['None', 'Basic']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/HeadersChallengesTest.kt

            .add("WWW-Authenticate", "Digest,Basic realm=\"myrealm\"")
            .build()
        assertThat(headers.parseChallenges("WWW-Authenticate")).containsExactly(
          Challenge("Digest", mapOf()),
          Challenge("Basic", mapOf("realm" to "myrealm")),
        )
      }
    
      @Test fun multipleSeparatorsBetweenChallenges() {
        val headers =
          Headers.Builder()
            .add("WWW-Authenticate", "Digest,,,, Basic ,,realm=\"myrealm\"")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb1/SMB1SigningDigest.java

                return; /* CRITICAL */
            }
            this.digest.update(input, offset, len);
            this.updates++;
        }
    
    
        /**
         * @return calculated digest
         */
        public byte[] digest () {
            byte[] b;
    
            b = this.digest.digest();
    
            if ( log.isTraceEnabled() ) {
                log.trace("digest: ");
                log.trace(Hexdump.toHexString(b, 0, b.length));
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Aug 05 09:45:59 UTC 2018
    - 10.6K bytes
    - Viewed (0)
  10. platforms/core-execution/hashing/src/main/java/org/gradle/internal/hash/Hashing.java

            private MessageDigest digest;
    
            public MessageDigestHasher(MessageDigest digest) {
                this.digest = digest;
            }
    
            private MessageDigest getDigest() {
                if (digest == null) {
                    throw new IllegalStateException("Cannot reuse hasher!");
                }
                return digest;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:30 UTC 2024
    - 12.3K bytes
    - Viewed (0)
Back to top