Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 51 for duck (0.03 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/resource_access.go

    		}
    	}
    
    	resourceQuotas := []corev1.ResourceQuota{}
    	for i := range items {
    		quota := items[i]
    		quota = e.checkCache(quota)
    		// always make a copy.  We're going to muck around with this and we should never mutate the originals
    		resourceQuotas = append(resourceQuotas, *quota)
    	}
    
    	return resourceQuotas, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 13:54:56 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/shufflesharding/shufflesharding_test.go

    			handCoordinate := 0
    			for _, card := range aHand {
    				handCoordinate = handCoordinate<<7 + card
    			}
    			handCoordinateMap[handCoordinate]++
    		}
    		numHandsSeen := len(handCoordinateMap)
    
    		t.Logf("Deck size = %v, hand size = %v, number of possible hands = %d, number of hands seen = %d, number of deals = %d, expected count range = [%v, %v]", test.deckSize, test.handSize, allCoordinateCount, numHandsSeen, test.hashMax, minCount, maxCount)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 25 06:44:08 UTC 2021
    - 6.7K bytes
    - Viewed (0)
  3. src/crypto/tls/testdata/Server-TLSv10-ExportKeyingMaterial

    >>> Flow 3 (client to server)
    00000000  16 03 01 00 25 10 00 00  21 20 01 39 8b 2b 21 99  |....%...! .9.+!.|
    00000010  fd fc b8 20 f1 51 97 c7  85 13 05 64 55 41 6b c4  |... .Q.....dUAk.|
    00000020  1a 5e d5 b2 7c 8b 31 08  0f 78 14 03 01 00 01 01  |.^..|.1..x......|
    00000030  16 03 01 00 30 d8 3b e6  9f f8 a8 b2 6b 8b fb 89  |....0.;.....k...|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  4. cni/pkg/nodeagent/podcgroupns.go

    	// - 0::/../crio-45490e76e0878aaa4d9808f7d2eefba37f093c3efbba9838b6d8ab804d9bd814.scope
    	// First trim off any .scope suffix. This allows for a cleaner regex since
    	// we don't have to muck with greediness. TrimSuffix is no-copy so this
    	// is cheap.
    	cgroupPath = strings.TrimSuffix(cgroupPath, ".scope")
    
    	var matchResults map[string]string
    	for _, regex := range cgroupREs {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 21:47:31 UTC 2024
    - 11K bytes
    - Viewed (0)
  5. maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/ClassMap.java

            // Short circuit for the (hopefully) majority of cases where the
            // clazz is public
            if (Modifier.isPublic(clazz.getModifiers())) {
                return methods;
            }
    
            // No luck - the class is not public, so we're going the longer way.
            MethodInfo[] methodInfos = new MethodInfo[methods.length];
            for (int i = methods.length; i-- > 0; ) {
                methodInfos[i] = new MethodInfo(methods[i]);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 17 17:55:08 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  6. src/crypto/ecdh/ecdh_test.go

    		// the probability of a rejection is 1-ord(G)/2^ceil(log2(ord(G))),
    		// which for all curves is small enough (at most 2^-32, for P-256) that
    		// a bit flip is more likely to make this test fail than bad luck.
    		// Account for the extra MaybeReadByte byte, too.
    		if got, expected := r.n, len(k.Bytes())+1; got > expected {
    			t.Errorf("expected GenerateKey to consume at most %v bytes, got %v", expected, got)
    		}
    	})
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 18K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/analysis/doc.go

    can be easily selected, incorporated, and reused in a wide range of
    driver programs including command-line tools (such as vet), text editors and
    IDEs, build and test systems (such as go build, Bazel, or Buck), test
    frameworks, code review tools, code-base indexers (such as SourceGraph),
    documentation viewers (such as godoc), batch pipelines for large code
    bases, and so on.
    
    # Analyzer
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. src/runtime/string.go

    	}
    	s, b := rawstring(n1 + 4)
    	n2 := 0
    	for i := 0; str[i] != 0; i++ {
    		// check for race
    		if n2 >= n1 {
    			break
    		}
    		n2 += encoderune(b[n2:], rune(str[i]))
    	}
    	b[n2] = 0 // for luck
    	return s[:n2]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  9. src/crypto/x509/name_constraints_test.go

    		},
    		noOpenSSL: true, // OpenSSL's chain building is not informed by constraints.
    	},
    
    	// #23: (same as the previous test, but in the other order in ensure
    	// that we don't pass it by luck.)
    	{
    		roots: make([]constraintsSpec, 1),
    		intermediates: [][]constraintsSpec{
    			{
    				{
    					ok: []string{"dns:.example.com"},
    				},
    				{
    					ok: []string{"dns:.foo.com"},
    				},
    			},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 22:40:21 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  10. pkg/kube/kclient/client_test.go

    	c := kube.NewFakeClient()
    	// Prevent List from succeeding
    	c.Kube().(*fake.Clientset).Fake.PrependReactor("*", "*", func(action k8stesting.Action) (bool, runtime.Object, error) {
    		return true, nil, fmt.Errorf("nope, out of luck")
    	})
    	c.RunAndWait(test.NewStop(t))
    	deployments := kclient.New[*appsv1.Deployment](c)
    	deployments.Start(test.NewStop(t))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 15:12:54 UTC 2024
    - 17.2K bytes
    - Viewed (0)
Back to top