Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 131 for INITIALIZING (0.18 sec)

  1. pkg/scheduler/framework/runtime/framework.go

    	"k8s.io/kubernetes/pkg/util/slice"
    )
    
    const (
    	// Specifies the maximum timeout a permit plugin can return.
    	maxTimeout = 15 * time.Minute
    )
    
    // frameworkImpl is the component responsible for initializing and running scheduler
    // plugins.
    type frameworkImpl struct {
    	registry             Registry
    	snapshotSharedLister framework.SharedLister
    	waitingPods          *waitingPodsMap
    	scorePluginWeight    map[string]int
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  2. pkg/istio-agent/xds_proxy.go

    			for _, cert := range caCerts {
    				trustBundle = util.AppendCertByte(trustBundle, []byte(cert))
    			}
    			return ia.secretCache.UpdateConfigTrustBundle(trustBundle)
    		}
    	}
    
    	proxyLog.Infof("Initializing with upstream address %q and cluster %q", proxy.istiodAddress, proxy.clusterID)
    
    	if err = proxy.initDownstreamServer(); err != nil {
    		return nil, err
    	}
    
    	if err = proxy.initIstiodDialOptions(ia); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  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