Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 123 for cook (0.08 sec)

  1. pkg/apis/admissionregistration/validation/validation.go

    		allErrors = append(allErrors, field.Invalid(fldPath.Child("timeoutSeconds"), *hook.TimeoutSeconds, "the timeout value must be between 1 and 30 seconds"))
    	}
    
    	if hook.NamespaceSelector != nil {
    		allErrors = append(allErrors, metav1validation.ValidateLabelSelector(hook.NamespaceSelector, labelSelectorValidationOpts, fldPath.Child("namespaceSelector"))...)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/collect/IteratorsTest.java

        assertTrue(Iterators.all(list.iterator(), predicate));
        list.add("pants");
        assertFalse(Iterators.all(list.iterator(), predicate));
      }
    
      public void testFind_firstElement() {
        Iterable<String> list = Lists.newArrayList("cool", "pants");
        Iterator<String> iterator = list.iterator();
        assertEquals("cool", Iterators.find(iterator, Predicates.equalTo("cool")));
        assertEquals("pants", iterator.next());
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 13:01:51 UTC 2024
    - 55.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    				"self.val1.split(' ') == ['Rook', 'takes', '👑']":   6,
    				"self.val1.split(' ', 2) == ['Rook', 'takes 👑']":   6,
    				"self.val1.substring(5) == 'takes 👑'":              5,
    				"self.val1.substring(0, 4) == 'Rook'":              5,
    				"self.val1.substring(4, 10).trim() == 'takes'":     6,
    				"self.val1.upperAscii() == 'ROOK TAKES 👑'":         6,
    				"self.val1.lowerAscii() == 'rook takes 👑'":         6,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/css/manual.css

    	body.book #header .details br {
    		display: block;
    	}
    
    	body.book #header .details br+span:before {
    		content: none !important;
    	}
    
    	body.book #toc {
    		border: 0 !important;
    		text-align: left !important;
    		padding: 0 !important;
    		margin: 0 !important;
    	}
    
    	body.book #toc,
    	body.book #preamble,
    	body.book h1.sect0,
    	body.book .sect1>h2 {
    		page-break-before: always;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    // AfterDeleteFunc is the type used for the Store.AfterDelete hook.
    type AfterDeleteFunc func(obj runtime.Object, options *metav1.DeleteOptions)
    
    // BeginCreateFunc is the type used for the Store.BeginCreate hook.
    type BeginCreateFunc func(ctx context.Context, obj runtime.Object, options *metav1.CreateOptions) (FinishFunc, error)
    
    // AfterCreateFunc is the type used for the Store.AfterCreate hook.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  6. cmd/bucket-handlers.go

    	if err := objectAPI.MakeBucket(ctx, bucket, opts); err != nil {
    		if _, ok := err.(BucketExists); ok {
    			// Though bucket exists locally, we send the site-replication
    			// hook to ensure all sites have this bucket. If the hook
    			// succeeds, the client will still receive a bucket exists
    			// message.
    			globalSiteReplicationSys.MakeBucketHook(ctx, bucket, opts)
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/kuberuntime_container.go

    	}()
    
    	select {
    	case <-time.After(time.Duration(gracePeriod) * time.Second):
    		klog.V(2).InfoS("PreStop hook not completed in grace period", "pod", klog.KObj(pod), "podUID", pod.UID,
    			"containerName", containerSpec.Name, "containerID", containerID.String(), "gracePeriod", gracePeriod)
    	case <-done:
    		klog.V(3).InfoS("PreStop hook completed", "pod", klog.KObj(pod), "podUID", pod.UID,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  8. src/reflect/type.go

    	typ := t.common()
    
    	// Look in cache.
    	ckey := cacheKey{Chan, typ, nil, uintptr(dir)}
    	if ch, ok := lookupCache.Load(ckey); ok {
    		return ch.(*rtype)
    	}
    
    	// This restriction is imposed by the gc compiler and the runtime.
    	if typ.Size_ >= 1<<16 {
    		panic("reflect.ChanOf: element size too large")
    	}
    
    	// Look in known types.
    	var s string
    	switch dir {
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  9. src/encoding/xml/marshal_test.go

    	{Value: &Domain{Name: []byte("google.com"), Comment: []byte(" &friends ")}, ExpectXML: `<domain>google.com<!-- &friends --></domain>`},
    	{Value: &Book{Title: "Pride & Prejudice"}, ExpectXML: `<book>Pride &amp; Prejudice</book>`},
    	{Value: &Event{Year: -3114}, ExpectXML: `<event>-3114</event>`},
    	{Value: &Movie{Length: 13440}, ExpectXML: `<movie>13440</movie>`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  10. src/cmd/dist/test.go

    		// hookPkgs is the set of package patterns to apply
    		// the maymorestack hook to.
    		hookPkgs := []string{"runtime/...", "reflect", "sync"}
    		// unhookPkgs is the set of package patterns to
    		// exclude from hookPkgs.
    		unhookPkgs := []string{"runtime/testdata/..."}
    		for _, hook := range hooks {
    			// Construct the build flags to use the
    			// maymorestack hook in the compiler and
    			// assembler. We pass this via the GOFLAGS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
Back to top