Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 70 for InfoS (0.1 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/DefaultVersionResolver.java

                    merge(artifact, infos, v, repository);
                }
    
                if (RELEASE.equals(version)) {
                    resolve(result, infos, RELEASE);
                } else if (LATEST.equals(version)) {
                    if (!resolve(result, infos, LATEST)) {
                        resolve(result, infos, RELEASE);
                    }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  2. pkg/kubelet/volumemanager/reconciler/reconciler_common.go

    	}
    	if err == nil {
    		if remountingLogStr == "" {
    			klog.V(1).InfoS(volumeToMount.GenerateMsgDetailed("operationExecutor.MountVolume started", remountingLogStr), "pod", klog.KObj(volumeToMount.Pod))
    		} else {
    			klog.V(5).InfoS(volumeToMount.GenerateMsgDetailed("operationExecutor.MountVolume started", remountingLogStr), "pod", klog.KObj(volumeToMount.Pod))
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:23:12 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  3. pkg/kubelet/stats/cadvisor_stats_provider_test.go

    		"/":        uint64(1 << 30),
    		"/pod2-c0": uint64(1 << 15),
    	}
    	for name, memoryLimitOverride := range memoryLimitOverrides {
    		info, found := infos[name]
    		if !found {
    			t.Errorf("No container defined with name %v", name)
    		}
    		info.Spec.Memory.Limit = memoryLimitOverride
    		infos[name] = info
    	}
    	// any container for which cadvisor should return no stats (as might be the case for an exited init container)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  4. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultVersionResolver.java

                    merge(artifact, infos, v, repository);
                }
    
                if (RELEASE.equals(version)) {
                    resolve(result, infos, RELEASE);
                } else if (LATEST.equals(version)) {
                    if (!resolve(result, infos, LATEST)) {
                        resolve(result, infos, RELEASE);
                    }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  5. pkg/kubelet/images/image_gc_manager.go

    			klog.V(5).InfoS("Setting Image ID lastUsed", "imageID", imageKey, "lastUsed", now)
    			im.imageRecords[imageKey].lastUsed = now
    		}
    
    		klog.V(5).InfoS("Image ID has size", "imageID", imageKey, "size", image.Size)
    		im.imageRecords[imageKey].size = image.Size
    
    		klog.V(5).InfoS("Image ID is pinned", "imageID", imageKey, "pinned", image.Pinned)
    		im.imageRecords[imageKey].pinned = image.Pinned
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  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