Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 279 for InfoS (0.06 sec)

  1. pkg/kubelet/pluginmanager/reconciler/reconciler.go

    					klog.V(5).InfoS("An updated version of plugin has been found, unregistering the plugin first before reregistering", "plugin", registeredPlugin)
    					unregisterPlugin = true
    					break
    				}
    			}
    		}
    
    		if unregisterPlugin {
    			klog.V(5).InfoS("Starting operationExecutor.UnregisterPlugin", "plugin", registeredPlugin)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 6.2K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/GradleVsMavenBuildPerformanceResults.groovy

        void assertFasterThanMaven() {
            builds.groupBy { it.displayName - 'Gradle ' - 'Maven ' }.each { scenario, infos ->
                def gradle = buildResults[infos.find { it.displayName.startsWith 'Gradle ' }]
                def maven = buildResults[infos.find { it.displayName.startsWith 'Maven ' }]
                def baselineVersion = new BaselineVersion("Maven")
                baselineVersion.results.addAll(maven)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/pod_container_manager_linux.go

    	removed := map[int]bool{}
    	for i := 0; i < 5; i++ {
    		if i != 0 {
    			klog.V(3).InfoS("Attempt failed to kill all unwanted process from cgroup, retrying", "attempt", i, "cgroupName", podCgroup)
    		}
    		errlist = []error{}
    		for _, pid := range pidsToKill {
    			if _, ok := removed[pid]; ok {
    				continue
    			}
    			klog.V(3).InfoS("Attempting to kill process from cgroup", "pid", pid, "cgroupName", podCgroup)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 16:38:36 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/qos_container_manager_linux.go

    	resources := m.getNodeAllocatable()
    	allocatableResource, ok := resources[v1.ResourceMemory]
    	if !ok {
    		klog.V(2).InfoS("Allocatable memory value could not be determined, not setting QoS memory limits")
    		return
    	}
    	allocatable := allocatableResource.Value()
    	if allocatable == 0 {
    		klog.V(2).InfoS("Allocatable memory reported as 0, might be in standalone mode, not setting QoS memory limits")
    		return
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 20:42:59 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/cpumanager/state/state_checkpoint.go

    			}
    			tmpAssignments[pod][container] = tmpContainerCPUSet
    		}
    	}
    
    	sc.cache.SetDefaultCPUSet(tmpDefaultCPUSet)
    	sc.cache.SetCPUAssignments(tmpAssignments)
    
    	klog.V(2).InfoS("State checkpoint: restored state from checkpoint")
    	klog.V(2).InfoS("State checkpoint: defaultCPUSet", "defaultCpuSet", tmpDefaultCPUSet.String())
    
    	return nil
    }
    
    // saves state to a checkpoint, caller is responsible for locking
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 00:59:30 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  6. pkg/kubelet/status/status_manager.go

    	klog.V(3).InfoS("Patch status for pod", "pod", klog.KObj(pod), "podUID", uid, "patch", string(patchBytes))
    
    	if err != nil {
    		klog.InfoS("Failed to update status for pod", "pod", klog.KObj(pod), "err", err)
    		return
    	}
    	if unchanged {
    		klog.V(3).InfoS("Status for pod is up-to-date", "pod", klog.KObj(pod), "statusVersion", status.version)
    	} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 44.3K bytes
    - Viewed (0)
  7. pkg/kubelet/eviction/eviction_manager.go

    		}
    	}
    
    	if len(thresholds) == 0 {
    		klog.V(3).InfoS("Eviction manager: no resources are starved")
    		return nil, nil
    	}
    
    	// rank the thresholds by eviction priority
    	sort.Sort(byEvictionPriority(thresholds))
    	thresholdToReclaim, resourceToReclaim, foundAny := getReclaimableThreshold(thresholds)
    	if !foundAny {
    		return nil, nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 27 18:55:56 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/topologymanager/scope_container.go

    		bestHint, admit := s.calculateAffinity(pod, &container)
    		klog.InfoS("Best TopologyHint", "bestHint", bestHint, "pod", klog.KObj(pod), "containerName", container.Name)
    
    		if !admit {
    			metrics.TopologyManagerAdmissionErrorsTotal.Inc()
    			return admission.GetPodAdmitResult(&TopologyAffinityError{})
    		}
    		klog.InfoS("Topology Affinity", "bestHint", bestHint, "pod", klog.KObj(pod), "containerName", container.Name)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 14 14:44:24 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  9. pkg/kubectl/cmd/convert/convert.go

    		Flatten().
    		Do()
    
    	err := r.Err()
    	if err != nil {
    		return err
    	}
    
    	singleItemImplied := false
    	infos, err := r.IntoSingleItemImplied(&singleItemImplied).Infos()
    	if err != nil {
    		return err
    	}
    
    	if len(infos) == 0 {
    		return fmt.Errorf("no objects passed to convert")
    	}
    
    	var specifiedOutputVersion schema.GroupVersion
    	if len(o.OutputVersion) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 03:21:17 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  10. pkg/kubelet/stats/cri_stats_provider_test.go

    	checkCRILogsStats(assert, c1, &rootFsInfo, containerLogStats1)
    	checkCRINetworkStats(assert, p0.Network, infos[sandbox0.PodSandboxStatus.Id].Stats[0].Network)
    	checkCRIPodCPUAndMemoryStats(assert, p0, infos[sandbox0Cgroup].Stats[0])
    	checkCRIPodSwapStats(assert, p0, infos[sandbox0Cgroup].Stats[0])
    
    	p1 := podStatsMap[statsapi.PodReference{Name: "sandbox1-name", UID: "sandbox1-uid", Namespace: "sandbox1-ns"}]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 54.5K bytes
    - Viewed (0)
Back to top