Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 37 for InfoS (0.09 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/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)
  3. 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)
  4. pkg/kubelet/cm/devicemanager/plugin/v1beta1/handler.go

    	} else {
    		f.Close()
    		klog.V(4).InfoS("Created deprecation file", "path", f.Name())
    	}
    	return s
    }
    
    func (s *server) RegisterPlugin(pluginName string, endpoint string, versions []string, pluginClientTimeout *time.Duration) error {
    	klog.V(2).InfoS("Registering plugin at endpoint", "plugin", pluginName, "endpoint", endpoint)
    	return s.connectClient(pluginName, endpoint)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:21:15 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. src/os/dir_unix.go

    				// Treat as if it didn't exist.
    				continue
    			}
    			if err != nil {
    				return nil, nil, infos, err
    			}
    			infos = append(infos, info)
    		}
    	}
    
    	if n > 0 && len(names)+len(dirents)+len(infos) == 0 {
    		return nil, nil, nil, io.EOF
    	}
    	return names, dirents, infos, nil
    }
    
    // readInt returns the size-bytes unsigned integer in native byte order at offset off.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 20:11:45 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. src/os/dir_darwin.go

    				// Treat as if it didn't exist.
    				continue
    			}
    			if err != nil {
    				return nil, nil, infos, err
    			}
    			infos = append(infos, info)
    		}
    		runtime.KeepAlive(f)
    	}
    
    	if n > 0 && len(names)+len(dirents)+len(infos) == 0 {
    		return nil, nil, nil, io.EOF
    	}
    	return names, dirents, infos, nil
    }
    
    func dtToType(typ uint8) FileMode {
    	switch typ {
    	case syscall.DT_BLK:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 20:52:06 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. istioctl/pkg/util/handlers/handlers.go

    	builder.ResourceNames("pods", resname)
    	infos, err := builder.Do().Infos()
    	if err != nil {
    		return nil, "", "", "", fmt.Errorf("failed retrieving: %v in the %q namespace", err, ns)
    	}
    	if len(infos) != 1 {
    		return nil, "", "", "", errors.New("expected a resource")
    	}
    	_, ok := infos[0].Object.(*corev1.Pod)
    	if ok {
    		// If we got a pod, just use its name
    		return nil, infos[0].Name, infos[0].Namespace, "", nil
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 06 15:01:41 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. pkg/kubelet/prober/prober.go

    		klog.V(3).InfoS("Probe succeeded with a warning", "probeType", probeType, "pod", klog.KObj(pod), "podUID", pod.UID, "containerName", container.Name, "output", output)
    	} else {
    		klog.V(3).InfoS("Probe succeeded", "probeType", probeType, "pod", klog.KObj(pod), "podUID", pod.UID, "containerName", container.Name)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 10:50:13 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/devicemanager/plugin/v1beta1/server.go

    	}
    
    	dir, name := filepath.Split(socketPath)
    
    	klog.V(2).InfoS("Creating device plugin registration server", "version", api.Version, "socket", socketPath)
    	s := &server{
    		socketName: name,
    		socketDir:  dir,
    		rhandler:   rh,
    		chandler:   ch,
    		clients:    make(map[string]Client),
    	}
    
    	return s, nil
    }
    
    func (s *server) Start() error {
    	klog.V(2).InfoS("Starting device plugin registration server")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 27 02:10:25 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. 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)
Back to top