Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 68 for cook (0.18 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. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/cmd/go/internal/modload/init.go

    					}
    				}
    			}
    		}
    	}
    
    	// Look for Godeps.json declaring import path.
    	data, _ := os.ReadFile(filepath.Join(dir, "Godeps/Godeps.json"))
    	var cfg1 struct{ ImportPath string }
    	json.Unmarshal(data, &cfg1)
    	if cfg1.ImportPath != "" {
    		return cfg1.ImportPath, nil
    	}
    
    	// Look for vendor.json declaring import path.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  9. src/time/format.go

    // Format or Parse. The rest of this comment can be ignored unless you are
    // creating a custom layout string.
    //
    // To define your own format, write down what the reference time would look like
    // formatted your way; see the values of constants like [ANSIC], [StampMicro] or
    // [Kitchen] for examples. The model is to demonstrate what the reference time
    // looks like so that the Format and Parse methods can apply the same
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    Usually, this deprecation is caused by mutating a configuration in a link:{javadocPath}/org/gradle/api/artifacts/ResolvableDependencies.html#beforeResolve-org.gradle.api.Action-[`beforeResolve`] hook.
    This hook is only executed after a configuration is fully resolved but not when it is partially resolved for computing task dependencies.
    
    Consider the following code that showcases the deprecated behavior:
    
    =====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
Back to top