Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,729 for info2 (0.05 sec)

  1. pkg/kubelet/logs/container_log_manager.go

    			return
    		}
    
    		info, err = c.osInterface.Stat(path)
    		if err != nil {
    			klog.ErrorS(err, "Failed to stat container log after reopen", "worker", worker, "containerID", id, "path", path)
    			return
    		}
    	}
    	if info.Size() < c.policy.MaxSize {
    		klog.V(7).InfoS("log file doesn't need to be rotated", "worker", worker, "containerID", id, "path", path, "currentSize", info.Size(), "maxSize", c.policy.MaxSize)
    		return
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 15K bytes
    - Viewed (0)
  2. cmd/metacache-set.go

    }
    
    func getQuorumDiskInfos(disks []StorageAPI, infos []DiskInfo, readQuorum int) (newDisks []StorageAPI, newInfos []DiskInfo) {
    	commonMutations := calcCommonCounter(infos, readQuorum)
    	for i, info := range infos {
    		mutations := info.Metrics.TotalDeletes + info.Metrics.TotalWrites
    		if mutations >= commonMutations {
    			newDisks = append(newDisks, disks[i])
    			newInfos = append(newInfos, infos[i])
    		}
    	}
    
    	return newDisks, newInfos
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 22:18:44 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  3. cmd/import-boss/main.go

    	// Check forbidden first.
    	for _, forbidden := range r.ForbiddenPrefixes {
    		klog.V(5).Infof("checking %q against forbidden prefix %q", imp, forbidden)
    		if hasPathPrefix(imp, forbidden) {
    			klog.V(5).Infof("this import of %q is forbidden", imp)
    			return DepForbidden
    		}
    	}
    	for _, allowed := range r.AllowedPrefixes {
    		klog.V(5).Infof("checking %q against allowed prefix %q", imp, allowed)
    		if hasPathPrefix(imp, allowed) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 12:36:49 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  4. tests/integration/pilot/mcs/discoverability/discoverability_test.go

    	for _, c := range t.Clusters() {
    		info := IPs{
    			Cluster: c.StableName(),
    		}
    
    		// Get pod IPs for service B.
    		pods, err := c.PodsForSelector(context.TODO(), destNS, "app="+destName)
    		if err == nil {
    			for _, destPod := range pods.Items {
    				info.TargetPod = append(info.TargetPod, destPod.Status.PodIP)
    			}
    			sort.Strings(info.TargetPod)
    		}
    
    		// Get the East-West Gateway IP
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  5. pkg/kubelet/stats/cri_stats_provider.go

    		cs.Memory = memory
    	}
    }
    
    func getCRICadvisorStats(infos map[string]cadvisorapiv2.ContainerInfo) (map[string]cadvisorapiv2.ContainerInfo, map[string]cadvisorapiv2.ContainerInfo) {
    	stats := make(map[string]cadvisorapiv2.ContainerInfo)
    	filteredInfos, cinfosByPodCgroupKey := filterTerminatedContainerInfoAndAssembleByPodCgroupKey(infos)
    	for key, info := range filteredInfos {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  6. cni/pkg/plugin/plugin.go

    			log.Infof("excluded due to DISABLE_ENVOY on istio-proxy", podNamespace, podName)
    			return nil
    		}
    	}
    
    	if !pi.Containers.Contains(ISTIOPROXY) {
    		log.Infof("excluded because it does not have istio-proxy container (have %v)", sets.SortedList(pi.Containers))
    		return nil
    	}
    
    	if pi.ProxyType != "" && pi.ProxyType != "sidecar" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/container_manager_linux.go

    		return false, fmt.Errorf("failed to find pid namespace of init process")
    	}
    	klog.V(10).InfoS("Found init PID namespace", "namespace", initPidNs)
    	processPidNs, err := os.Readlink(fmt.Sprintf("/proc/%d/ns/pid", pid))
    	if err != nil {
    		return false, fmt.Errorf("failed to find pid namespace of process %q", pid)
    	}
    	klog.V(10).InfoS("Process info", "pid", pid, "namespace", processPidNs)
    	return initPidNs == processPidNs, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  8. cmd/storage-rest-client.go

    			if err != nil {
    				return info, toStorageErr(err)
    			}
    			info = *infop
    			if info.Error != "" {
    				return info, toStorageErr(errors.New(info.Error))
    			}
    			return info, nil
    		},
    	)
    
    	return client.diskInfoCache.GetWithCtx(ctx)
    }
    
    // MakeVolBulk - create multiple volumes in a bulk operation.
    func (client *storageRESTClient) MakeVolBulk(ctx context.Context, volumes ...string) (err error) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  9. pilot/pkg/xds/delta.go

    	configSizeBytes.With(typeTag.Value(w.TypeUrl)).Record(float64(configSize))
    
    	ptype := "PUSH"
    	info := ""
    	if logdata.Incremental {
    		ptype = "PUSH INC"
    	}
    	if len(logdata.AdditionalInfo) > 0 {
    		info = " " + logdata.AdditionalInfo
    	}
    	if len(logFiltered) > 0 {
    		info += logFiltered
    	}
    
    	if err := con.sendDelta(resp, newResourceNames); err != nil {
    		logger := deltaLog.Debugf
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  10. pkg/log/scope.go

    func (s *Scope) WarnEnabled() bool {
    	return s.GetOutputLevel() >= WarnLevel
    }
    
    // Info outputs a message at info level.
    func (s *Scope) Info(msg any) {
    	if s.GetOutputLevel() >= InfoLevel {
    		s.emit(zapcore.InfoLevel, fmt.Sprint(msg))
    	}
    }
    
    // Infof uses fmt.Sprintf to construct and log a message at info level.
    func (s *Scope) Infof(format string, args ...any) {
    	if s.GetOutputLevel() >= InfoLevel {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 16:47:01 UTC 2024
    - 10.7K bytes
    - Viewed (0)
Back to top