Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Everything (0.98 sec)

  1. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    	}
    	return storage.SelectionPredicate{
    		Label:    labels.Everything().Add(*l),
    		Field:    fields.Everything(),
    		GetAttrs: getPodAttrs,
    	}
    }
    
    func matchEverything() storage.SelectionPredicate {
    	return storage.SelectionPredicate{
    		Label: labels.Everything(),
    		Field: fields.Everything(),
    		GetAttrs: func(obj runtime.Object) (label labels.Set, field fields.Set, err error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    //		option. Packages named main are ignored.
    //
    //	-buildmode=exe
    //		Build the listed main packages and everything they import into
    //		executables. Packages not named main are ignored.
    //
    //	-buildmode=pie
    //		Build the listed main packages and everything they import into
    //		position independent executables (PIE). Packages not named
    //		main are ignored.
    //
    //	-buildmode=plugin
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/data.go

    	}
    }
    
    func (p *GCProg) AddSym(s loader.Sym) {
    	ldr := p.ctxt.loader
    	typ := ldr.SymGoType(s)
    
    	// Things without pointers should be in sym.SNOPTRDATA or sym.SNOPTRBSS;
    	// everything we see should have pointers and should therefore have a type.
    	if typ == 0 {
    		switch ldr.SymName(s) {
    		case "runtime.data", "runtime.edata", "runtime.bss", "runtime.ebss":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_test.go

    		apiStatus := kubelet.generateAPIPodStatus(pod, podStatus, false)
    		verifyContainerStatuses(t, apiStatus.ContainerStatuses, test.expectedState, test.expectedLastTerminationState, fmt.Sprintf("case %d", i))
    	}
    
    	// Everything should be the same for init containers
    	for i, test := range tests {
    		kubelet.reasonCache = NewReasonCache()
    		for n, e := range test.reasons {
    			kubelet.reasonCache.add(pod.UID, n, e, "")
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_pods.go

    	if kl.serviceLister == nil {
    		// Kubelets without masters (e.g. plain GCE ContainerVM) don't set env vars.
    		return m, nil
    	}
    	services, err := kl.serviceLister.List(labels.Everything())
    	if err != nil {
    		return m, fmt.Errorf("failed to list services when setting up env vars")
    	}
    
    	// project the services in namespace ns onto the master services
    	for i := range services {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  6. src/net/http/server.go

    	// ACK if maxRSTAvoidanceDelay has elapsed.
    	time.Sleep(rstAvoidanceDelay)
    }
    
    // validNextProto reports whether the proto is a valid ALPN protocol name.
    // Everything is valid except the empty string and built-in protocol types,
    // so that those can't be overridden with alternate implementations.
    func validNextProto(proto string) bool {
    	switch proto {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
Back to top