Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 187 for InfoS (0.04 sec)

  1. src/os/dir_plan9.go

    				dirents = append(dirents, dirEntry{f})
    			} else {
    				infos = append(infos, f)
    			}
    		}
    		d.bufp += m
    		n--
    	}
    
    	if n > 0 && len(names)+len(dirents)+len(infos) == 0 {
    		return nil, nil, nil, io.EOF
    	}
    	return names, dirents, infos, nil
    }
    
    type dirEntry struct {
    	fs *fileStat
    }
    
    func (de dirEntry) Name() string            { return de.fs.Name() }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 20:52:06 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. pkg/kubelet/runonce.go

    			} else {
    				klog.InfoS("Unable to start pod because container failed", "pod", klog.KObj(res.Pod), "containerName", failedContainerName)
    			}
    			failedPods = append(failedPods, format.Pod(res.Pod))
    		} else {
    			klog.InfoS("Started pod", "pod", klog.KObj(res.Pod))
    		}
    	}
    	if len(failedPods) > 0 {
    		return results, fmt.Errorf("error running pods: %v", failedPods)
    	}
    	klog.InfoS("Pods started", "numPods", len(pods))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 04 06:56:50 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/memorymanager/fake_memory_manager.go

    	klog.InfoS("Start()")
    	return nil
    }
    
    func (m *fakeManager) Policy() Policy {
    	klog.InfoS("Policy()")
    	return NewPolicyNone()
    }
    
    func (m *fakeManager) Allocate(pod *v1.Pod, container *v1.Container) error {
    	klog.InfoS("Allocate", "pod", klog.KObj(pod), "containerName", container.Name)
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  4. 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)
  5. pkg/proxy/winkernel/proxier.go

    				*ep.refCount++
    			}
    
    			ep.hnsID = newHnsEndpoint.hnsID
    
    			klog.V(3).InfoS("Endpoint resource found", "endpointInfo", ep)
    		}
    
    		klog.V(3).InfoS("Associated endpoints for service", "endpointInfo", hnsEndpoints, "serviceName", svcName)
    
    		if len(svcInfo.hnsID) > 0 {
    			// This should not happen
    			klog.InfoS("Load Balancer already exists -- Debug ", "hnsID", svcInfo.hnsID)
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  6. pkg/kubelet/volumemanager/reconciler/reconstruct.go

    			klog.V(4).InfoS("Volume exists in desired state, skip cleaning up mounts", "podName", volume.podName, "volumeSpecName", volume.volumeSpecName)
    			continue
    		}
    		klog.InfoS("Cleaning up mounts for volume that could not be reconstructed", "podName", volume.podName, "volumeSpecName", volume.volumeSpecName)
    		rc.cleanupMounts(volume)
    	}
    
    	klog.V(2).InfoS("Orphan volume cleanup finished")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:23:12 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/devicemanager/plugin/v1beta1/stub.go

    			return false, nil
    		}
    		conn.Close()
    		return true, nil
    	})
    	if lastDialErr != nil {
    		return lastDialErr
    	}
    
    	klog.InfoS("Starting to serve on socket", "socket", m.socket)
    	return nil
    }
    
    func (m *Stub) Restart() error {
    	klog.InfoS("Restarting Device Plugin server")
    	if m.server == nil {
    		return nil
    	}
    
    	m.server.Stop()
    	m.server = nil
    
    	return m.Start()
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 11:19:10 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  8. 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)
  9. cmd/data-usage-utils.go

    	dui.TierStats.populateStats(ts)
    
    	infos := make([]madmin.TierInfo, 0, len(ts))
    	for tier, stats := range ts {
    		infos = append(infos, madmin.TierInfo{
    			Name:  tier,
    			Type:  globalTierConfigMgr.TierType(tier),
    			Stats: stats,
    		})
    	}
    
    	sort.Slice(infos, func(i, j int) bool {
    		if infos[i].Type == "internal" {
    			return true
    		}
    		if infos[j].Type == "internal" {
    			return false
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Mar 10 09:15:15 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  10. 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)
Back to top