Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 125 for InfoS (0.04 sec)

  1. pkg/kubelet/userns/userns_manager.go

    	return ok
    }
    
    func (m *UsernsManager) releaseWithLock(pod types.UID) {
    	v, ok := m.usedBy[pod]
    	if !ok {
    		klog.V(5).InfoS("pod user namespace allocation not present", "podUID", pod)
    		return
    	}
    	delete(m.usedBy, pod)
    
    	klog.V(5).InfoS("releasing pod user namespace allocation", "podUID", pod)
    	m.removed++
    
    	_ = os.Remove(filepath.Join(m.kl.GetPodDir(pod), mappingsFile))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  2. src/go/token/position.go

    // information for line directives such as //line filename:line:column.
    func (f *File) AddLineColumnInfo(offset int, filename string, line, column int) {
    	f.mutex.Lock()
    	if i := len(f.infos); (i == 0 || f.infos[i-1].Offset < offset) && offset < f.size {
    		f.infos = append(f.infos, lineInfo{offset, filename, line, column})
    	}
    	f.mutex.Unlock()
    }
    
    // fixOffset fixes an out-of-bounds offset such that 0 <= offset <= f.size.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  3. cmd/metacache-set.go

    	case "auto":
    		return -1
    	}
    	// defaults to 'strict'
    	return driveCount
    }
    
    func calcCommonWritesDeletes(infos []DiskInfo, readQuorum int) (commonWrite, commonDelete uint64) {
    	deletes := make([]uint64, len(infos))
    	writes := make([]uint64, len(infos))
    	for index, di := range infos {
    		deletes[index] = di.Metrics.TotalDeletes
    		writes[index] = di.Metrics.TotalWrites
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 22:18:44 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/node_container_manager_linux.go

    	if cm.CgroupsPerQOS && nc.EnforceNodeAllocatable.Has(kubetypes.NodeAllocatableEnforcementKey) {
    		nodeAllocatable = cm.getNodeAllocatableInternalAbsolute()
    	}
    
    	klog.V(4).InfoS("Attempting to enforce Node Allocatable", "config", nc)
    
    	cgroupConfig := &CgroupConfig{
    		Name:               cm.cgroupRoot,
    		ResourceParameters: getCgroupConfig(nodeAllocatable),
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/devicemanager/topology_hints.go

    	for resource, requested := range accumulatedResourceRequests {
    		// Only consider devices that actually contain topology information.
    		if aligned := m.deviceHasTopologyAlignment(resource); !aligned {
    			klog.InfoS("Resource does not have a topology preference", "resource", resource)
    			deviceHints[resource] = nil
    			continue
    		}
    
    		// Short circuit to regenerate the same hints if there are already
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 27 02:10:25 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  6. pkg/proxy/serviceport.go

    	info.externalIPs = ipFamilyMap[ipFamily]
    
    	// Log the IPs not matching the ipFamily
    	if ips, ok := ipFamilyMap[proxyutil.OtherIPFamily(ipFamily)]; ok && len(ips) > 0 {
    		klog.V(4).InfoS("Service change tracker ignored the following external IPs for given service as they don't match IP Family",
    			"ipFamily", ipFamily, "externalIPs", ips, "service", klog.KObj(service))
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 09 08:17:56 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  7. pkg/proxy/topology.go

    	if !ok || zone == "" {
    		klog.V(2).InfoS("Skipping topology aware endpoint filtering since node is missing label", "label", v1.LabelTopologyZone)
    		return false
    	}
    
    	hasEndpointForZone := false
    	for _, endpoint := range endpoints {
    		if !endpoint.IsReady() {
    			continue
    		}
    		if endpoint.ZoneHints().Len() == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 06:46:03 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/dynamic_cafile_content.go

    func (c *DynamicFileCAContent) Run(ctx context.Context, workers int) {
    	defer utilruntime.HandleCrash()
    	defer c.queue.ShutDown()
    
    	klog.InfoS("Starting controller", "name", c.name)
    	defer klog.InfoS("Shutting down controller", "name", c.name)
    
    	// doesn't matter what workers say, only start one.
    	go wait.Until(c.runWorker, time.Second, ctx.Done())
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/analysis/resource_alias_analysis.cc

        CaseOrIfOp case_or_if_op, llvm::ArrayRef<func::FuncOp> functions,
        const BacktrackAnalysis& backtrack_analysis) {
      llvm::SmallVector<const BacktrackAnalysisInfo*, 2> infos;
      infos.reserve(functions.size());
      for (func::FuncOp func : functions)
        infos.push_back(&backtrack_analysis.GetAnalysisForFunc(func));
    
      // If a result is a passthrough of all branches' inputs, merge the resource
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  10. pkg/proxy/util/utils.go

    	if !helper.IsServiceIPSet(service) {
    		klog.V(3).InfoS("Skipping service due to cluster IP", "service", klog.KObj(service), "clusterIP", service.Spec.ClusterIP)
    		return true
    	}
    	// Even if ClusterIP is set, ServiceTypeExternalName services don't get proxied
    	if service.Spec.Type == v1.ServiceTypeExternalName {
    		klog.V(3).InfoS("Skipping service due to Type=ExternalName", "service", klog.KObj(service))
    		return true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 11:57:43 UTC 2024
    - 7.4K bytes
    - Viewed (0)
Back to top