Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 185 for InfoS (0.06 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. pkg/kubelet/util/swap/swap_util.go

    			// Turning off swap in unprivileged tmpfs mounts unsupported
    			// https://github.com/torvalds/linux/blob/v6.8/mm/shmem.c#L4004-L4011
    			// https://github.com/kubernetes/kubernetes/issues/125137
    			klog.InfoS("Running under a user namespace - tmpfs noswap is not supported")
    			return false
    		}
    
    		kernelVersion, err := utilkernel.GetVersion()
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 10:07:06 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. pkg/proxy/ipvs/graceful_termination.go

    	rs.Weight = 0
    	err = m.ipvs.UpdateRealServer(vs, rs)
    	if err != nil {
    		return err
    	}
    	klog.V(5).InfoS("Adding real server to graceful delete real server list", "realServer", ele)
    	m.rsList.add(ele)
    	return nil
    }
    
    func (m *GracefulTerminationManager) deleteRsFunc(rsToDelete *listItem) (bool, error) {
    	klog.V(5).InfoS("Trying to delete real server", "realServer", rsToDelete)
    	rss, err := m.ipvs.GetRealServers(rsToDelete.VirtualServer)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/testing/v2/kms_plugin_mock.go

    	var resp *kmsapi.StatusResponse
    
    	updatePollErr := wait.PollImmediate(1*time.Second, wait.ForeverTestTimeout, func() (bool, error) {
    		resp, gRPCErr = plugin.Status(context.Background(), &kmsapi.StatusRequest{})
    		klog.InfoS("WaitForBase64PluginToBeUpdated", "keyID", resp.KeyId)
    		return gRPCErr == nil && resp.Healthz == "ok" && resp.KeyId == "2", nil
    	})
    
    	if updatePollErr != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 19:25:52 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/util/util.go

    	sandboxStatus := podStatus.SandboxStatuses[0]
    	if readySandboxCount > 1 {
    		klog.V(2).InfoS("Multiple sandboxes are ready for Pod. Need to reconcile them", "pod", klog.KObj(pod))
    		return true, sandboxStatus.Metadata.Attempt + 1, sandboxStatus.Id
    	}
    	if sandboxStatus.State != runtimeapi.PodSandboxState_SANDBOX_READY {
    		klog.V(2).InfoS("No ready sandbox for pod can be found. Need to start a new one", "pod", klog.KObj(pod))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 13 23:14:48 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/memory/discovery.go

    	if len(requests) == 0 {
    		return maps.Values(sd.addresses), nil
    	}
    
    	var infos []model.AddressInfo
    	removed := sets.String{}
    	for req := range requests {
    		if _, found := sd.addresses[req]; !found {
    			removed.Insert(req)
    		} else {
    			infos = append(infos, sd.addresses[req])
    		}
    	}
    	return infos, removed
    }
    
    func (sd *ServiceDiscovery) AdditionalPodSubscriptions(
    	*model.Proxy,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 23:10:01 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  10. src/go/token/position_test.go

    		},
    		{
    			name: "offset1 == file size",
    			infos: []lineInfo{
    				{Offset: filesize, Filename: filename, Line: 2, Column: 1},
    			},
    			want: nil,
    		},
    		{
    			name: "offset1 > file size",
    			infos: []lineInfo{
    				{Offset: filesize + 1, Filename: filename, Line: 2, Column: 1},
    			},
    			want: nil,
    		},
    		{
    			name: "offset2 == file size",
    			infos: []lineInfo{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 20:26:14 UTC 2024
    - 14.3K bytes
    - Viewed (0)
Back to top