Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 106 for InfoS (0.04 sec)

  1. pkg/kubelet/cm/topologymanager/policy.go

    		if len(hints) == 0 {
    			klog.InfoS("Hint Provider has no preference for NUMA affinity with any resource")
    			allProviderHints = append(allProviderHints, []TopologyHint{{nil, true}})
    			continue
    		}
    
    		// Otherwise, accumulate the hints for each resource type into allProviderHints.
    		for resource := range hints {
    			if hints[resource] == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 09:45:25 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  2. pkg/proxy/endpointschangetracker.go

    func (ect *EndpointsChangeTracker) EndpointSliceUpdate(endpointSlice *discovery.EndpointSlice, removeSlice bool) bool {
    	if !supportedEndpointSliceAddressTypes.Has(endpointSlice.AddressType) {
    		klog.V(4).InfoS("EndpointSlice address type not supported by kube-proxy", "addressType", endpointSlice.AddressType)
    		return false
    	}
    
    	// This should never happen
    	if endpointSlice == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:44:08 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  3. pkg/kubelet/container/helpers.go

    	if pod.Spec.RestartPolicy == v1.RestartPolicyNever {
    		klog.V(4).InfoS("Already ran container, do nothing", "pod", klog.KObj(pod), "containerName", container.Name)
    		return false
    	}
    	if pod.Spec.RestartPolicy == v1.RestartPolicyOnFailure {
    		// Check the exit code.
    		if status.ExitCode == 0 {
    			klog.V(4).InfoS("Already successfully ran container, do nothing", "pod", klog.KObj(pod), "containerName", container.Name)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  4. pkg/kubelet/volume_host.go

    		csiDriverInformer := informerFactory.Storage().V1().CSIDrivers()
    		csiDriverLister = csiDriverInformer.Lister()
    		csiDriversSynced = csiDriverInformer.Informer().HasSynced
    
    	} else {
    		klog.InfoS("KubeClient is nil. Skip initialization of CSIDriverLister")
    	}
    
    	kvh := &kubeletVolumeHost{
    		kubelet:                   kubelet,
    		volumePluginMgr:           volume.VolumePluginMgr{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 11:00:37 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_container_linux.go

    		}
    
    		pageSize, err := v1helper.HugePageSizeFromResourceName(resourceObj)
    		if err != nil {
    			klog.InfoS("Failed to get hugepage size from resource", "object", resourceObj, "err", err)
    			continue
    		}
    
    		sizeString, err := v1helper.HugePageUnitSizeFromByteSize(pageSize.Value())
    		if err != nil {
    			klog.InfoS("Size is invalid", "object", resourceObj, "err", err)
    			continue
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/etcd3/metrics/metrics.go

    	for i, m := range monitors {
    		storageClusterID := fmt.Sprintf("etcd-%d", i)
    
    		klog.V(4).InfoS("Start collecting storage metrics", "storage_cluster_id", storageClusterID)
    		ctx, cancel := context.WithTimeout(context.Background(), time.Second)
    		metrics, err := m.Monitor(ctx)
    		cancel()
    		m.Close()
    		if err != nil {
    			klog.InfoS("Failed to get storage metrics", "storage_cluster_id", storageClusterID, "err", err)
    			continue
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 21:15:32 UTC 2024
    - 11K bytes
    - Viewed (0)
  7. pkg/volume/projected/projected_test.go

    		t.Fatalf("couldn't read symlink, %s", datadirSymlink)
    	}
    	datadirPath := filepath.Join(volumePath, datadir)
    
    	infos, err := os.ReadDir(volumePath)
    	if err != nil {
    		t.Fatalf("couldn't find volume path, %s", volumePath)
    	}
    	if len(infos) != 0 {
    		for _, fi := range infos {
    			if fi.Name() != "..data" && fi.Name() != datadir {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 40.5K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modcmd/download.go

    		base.Fatalf("go mod download -reuse cannot be used inside a module")
    	}
    
    	var mods []*ModuleJSON
    	type token struct{}
    	sem := make(chan token, runtime.GOMAXPROCS(0))
    	infos, infosErr := modload.ListModules(ctx, args, 0, *downloadReuse)
    
    	// There is a bit of a chicken-and-egg problem here: ideally we need to know
    	// which Go version to switch to to download the requested modules, but if we
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 19:32:39 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  9. pkg/kubelet/preemption/preemption.go

    		// record that we are evicting the pod
    		c.recorder.Eventf(pod, v1.EventTypeWarning, events.PreemptContainer, message)
    		// this is a blocking call and should only return when the pod and its containers are killed.
    		klog.V(3).InfoS("Preempting pod to free up resources", "pod", klog.KObj(pod), "podUID", pod.UID, "insufficientResources", insufficientResources)
    		err := c.killPodFunc(pod, true, nil, func(status *v1.PodStatus) {
    			status.Phase = v1.PodFailed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 02 16:53:19 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  10. pkg/kubelet/util/manager/watch_based_manager.go

    		// - doing that would require significant refactoring to reflector
    		// we limit ourselves to just quickly stop the reflector here.
    		if c.isImmutable(object) {
    			item.setImmutable()
    			if item.stop() {
    				klog.V(4).InfoS("Stopped watching for changes - object is immutable", "obj", klog.KRef(namespace, name))
    			}
    		}
    		return object, nil
    	}
    	return nil, fmt.Errorf("unexpected object type: %v", obj)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 11.6K bytes
    - Viewed (0)
Back to top