Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 207 for INITIALIZING (0.61 sec)

  1. pkg/controller/volume/attachdetach/attach_detach_controller.go

    	return adc.volumeAttachmentLister
    }
    
    // VolumeHost implementation
    // This is an unfortunate requirement of the current factoring of volume plugin
    // initializing code. It requires kubelet specific methods used by the mounting
    // code to be implemented by all initializers even if the initializer does not
    // do mounting (like this attach/detach controller).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/container_manager_linux.go

    					"might be swapped to disk and should no longer be considered secure.",
    			)
    		}
    	}
    
    	var internalCapacity = v1.ResourceList{}
    	// It is safe to invoke `MachineInfo` on cAdvisor before logically initializing cAdvisor here because
    	// machine info is computed and cached once as part of cAdvisor object creation.
    	// But `RootFsInfo` and `ImagesFsInfo` are not available at this moment so they will be called later during manager starts
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_node_status.go

    	copy(nodeTaints, kl.registerWithTaints)
    	unschedulableTaint := v1.Taint{
    		Key:    v1.TaintNodeUnschedulable,
    		Effect: v1.TaintEffectNoSchedule,
    	}
    
    	// Taint node with TaintNodeUnschedulable when initializing
    	// node to avoid race condition; refer to #63897 for more detail.
    	if node.Spec.Unschedulable &&
    		!taintutil.TaintExists(nodeTaints, &unschedulableTaint) {
    		nodeTaints = append(nodeTaints, unschedulableTaint)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ir/fmt.go

    	}
    
    	if complexinit {
    		fmt.Fprintf(s, " %v; ", n.Init())
    	}
    
    	switch n.Op() {
    	case ODCL:
    		n := n.(*Decl)
    		fmt.Fprintf(s, "var %v %v", n.X.Sym(), n.X.Type())
    
    	// Don't export "v = <N>" initializing statements, hope they're always
    	// preceded by the DCL which will be re-parsed and typechecked to reproduce
    	// the "v = <N>" again.
    	case OAS:
    		n := n.(*AssignStmt)
    		if n.Def && !complexinit {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 15:20:28 UTC 2023
    - 26K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/decl.go

    	// is such that the color value of a grey object indicates the index of
    	// that object in the object path.
    
    	// During type-checking, white objects may be assigned a type without
    	// traversing through objDecl; e.g., when initializing constants and
    	// variables. Update the colors of those objects here (rather than
    	// everywhere where we set the type) to satisfy the color invariants.
    	if obj.color() == white && obj.Type() != nil {
    		obj.setColor(black)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  6. src/go/types/decl.go

    	// is such that the color value of a grey object indicates the index of
    	// that object in the object path.
    
    	// During type-checking, white objects may be assigned a type without
    	// traversing through objDecl; e.g., when initializing constants and
    	// variables. Update the colors of those objects here (rather than
    	// everywhere where we set the type) to satisfy the color invariants.
    	if obj.color() == white && obj.Type() != nil {
    		obj.setColor(black)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31K bytes
    - Viewed (0)
  7. src/go/scanner/scanner_test.go

    	for _, s = range invalidSegments {
    		S.Scan()
    	}
    
    	if S.ErrorCount != len(invalidSegments) {
    		t.Errorf("got %d errors; want %d", S.ErrorCount, len(invalidSegments))
    	}
    }
    
    // Verify that initializing the same scanner more than once works correctly.
    func TestInit(t *testing.T) {
    	var s Scanner
    
    	// 1st init
    	src1 := "if true { }"
    	f1 := fset.AddFile("src1", fset.Base(), len(src1))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 15:38:31 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/staticinit/sched.go

    var varToMapInit map[*ir.Name]*ir.Func
    
    // MapInitToVar is the inverse of VarToMapInit; it maintains a mapping
    // from a compiler-generated init function to the map the function is
    // initializing.
    var MapInitToVar map[*ir.Func]*ir.Name
    
    // recordFuncForVar establishes a mapping between global map var "v" and
    // outlined init function "fn" (and vice versa); so that we can use
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 17:16:14 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc.go

    				// the global timeout of the http.Client is still honored.
    				provider, err := oidc.NewProvider(lifecycleCtx, issuerURL)
    				if err != nil {
    					klog.Errorf("oidc authenticator: initializing plugin: %v", err)
    					authn.healthCheck.Store(&errorHolder{err: err})
    					return false, nil
    				}
    
    				verifier := provider.Verifier(verifierConfig)
    				authn.setVerifier(&idTokenVerifier{verifier, audiences})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 19:29:33 UTC 2024
    - 37.9K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/controller.go

    		c.networkManager.HasSynced()
    }
    
    func (c *Controller) syncPods() error {
    	var err *multierror.Error
    	pods := c.podsClient.List(metav1.NamespaceAll, klabels.Everything())
    	log.Debugf("initializing %d pods", len(pods))
    	for _, s := range pods {
    		err = multierror.Append(err, c.pods.onEvent(nil, s, model.EventAdd))
    	}
    	return err.ErrorOrNil()
    }
    
    // Run all controllers until a signal is received
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
Back to top