Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Programmed (0.19 sec)

  1. pilot/pkg/config/kube/gateway/conversion.go

    		string(k8s.GatewayConditionProgrammed): {
    			reason:  string(k8s.GatewayReasonProgrammed),
    			message: "Resource programmed",
    		},
    	}
    
    	if gatewayErr != nil {
    		gatewayConditions[string(k8s.GatewayConditionAccepted)].error = gatewayErr
    	}
    
    	if len(internal) > 0 {
    		msg := fmt.Sprintf("Resource programmed, assigned to service(s) %s", humanReadableJoin(internal))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  2. pkg/kubelet/pod_workers.go

    	if status.terminatingAt.IsZero() {
    		klog.V(4).InfoS("Pod worker is complete but did not have terminatingAt set, likely programmer error", "pod", klog.KObj(pod), "podUID", pod.UID)
    	}
    	if !status.terminatedAt.IsZero() {
    		klog.V(4).InfoS("Pod worker is complete and had terminatedAt set, likely programmer error", "pod", klog.KObj(pod), "podUID", pod.UID)
    	}
    	status.finished = true
    	status.working = false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  3. cmd/kubelet/app/server.go

    	cleanFlagSet.SetNormalizeFunc(cliflag.WordSepNormalizeFunc)
    	kubeletFlags := options.NewKubeletFlags()
    
    	kubeletConfig, err := options.NewKubeletConfiguration()
    	// programmer error
    	if err != nil {
    		klog.ErrorS(err, "Failed to create a new kubelet configuration")
    		os.Exit(1)
    	}
    
    	cmd := &cobra.Command{
    		Use: componentKubelet,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  4. cmd/xl-storage.go

    	if err = Fdatasync(w); err != nil {
    		w.Close()
    		return err
    	}
    
    	// Dealing with error returns from close() - 'man 2 close'
    	//
    	// A careful programmer will check the return value of close(), since it is quite possible that
    	// errors on a previous write(2) operation are reported only on the final close() that releases
    	// the open file descriptor.
    	//
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    func (e *Store) NamespaceScoped() bool {
    	if e.CreateStrategy != nil {
    		return e.CreateStrategy.NamespaceScoped()
    	}
    	if e.UpdateStrategy != nil {
    		return e.UpdateStrategy.NamespaceScoped()
    	}
    
    	panic("programmer error: no CRUD for resource, override NamespaceScoped too")
    }
    
    // GetCreateStrategy implements GenericStore.
    func (e *Store) GetCreateStrategy() rest.RESTCreateStrategy {
    	return e.CreateStrategy
    }
    
    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. src/cmd/go/go_test.go

    		tg.t.Errorf("wrong reason for Stale=false: %q, want %q", why, reason)
    	}
    }
    
    // If -testwork is specified, the test prints the name of the temp directory
    // and does not remove it when done, so that a programmer can
    // poke at the test file tree afterward.
    var testWork = flag.Bool("testwork", false, "")
    
    // cleanup cleans up a test that runs testgo.
    func (tg *testgoData) cleanup() {
    	tg.t.Helper()
    	if *testWork {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
Back to top