Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 498 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. src/main/java/jcifs/internal/smb2/Smb3KeyDerivation.java

     */
    package jcifs.internal.smb2;
    
    
    import java.nio.charset.StandardCharsets;
    
    import org.bouncycastle.crypto.DerivationParameters;
    import org.bouncycastle.crypto.digests.SHA256Digest;
    import org.bouncycastle.crypto.generators.KDFCounterBytesGenerator;
    import org.bouncycastle.crypto.macs.HMac;
    import org.bouncycastle.crypto.params.KDFCounterParameters;
    
    
    /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 5.7K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/ops/gen/README.md

    > addition to convenience, this should aid consistency between generated code in
    > each target language._
    
    The *Controller* is in the ***common/*** directory. It is the workhorse used by
    the language generators; it digests the Op registry and API definitions to build
    the model and provides utilities for the language generators.
    
    The *View* and rendering classes map the language-independent Model classes
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 21 18:51:25 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. pkg/kubelet/nodestatus/setters_test.go

    			imageList: []kubecontainer.Image{{Size: 3}, {Size: 1}, {Size: 4}, {Size: 2}},
    		},
    		{
    			desc:      "repo digests and tags both show up in image names",
    			maxImages: -1,
    			// makeExpectedImageList will use both digests and tags
    			imageList: []kubecontainer.Image{
    				{
    					RepoDigests: []string{"foo", "bar"},
    					RepoTags:    []string{"baz", "quux"},
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  9. 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)
  10. pkg/util/parsers/parsers.go

    	if ok {
    		tag = tagged.Tag()
    	}
    
    	digested, ok := named.(dockerref.Digested)
    	if ok {
    		digest = digested.Digest().String()
    	}
    	// If no tag was specified, use the default "latest".
    	if len(tag) == 0 && len(digest) == 0 {
    		tag = "latest"
    	}
    	return repoToPull, tag, digest, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 01 01:53:40 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top