Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for qcInfo (0.09 sec)

  1. pkg/kubelet/stats/cadvisor_stats_provider.go

    		}
    		cinfosByPodCgroupKey[podCgroupKey] = cinfo
    		if !isPodManagedContainer(&cinfo) {
    			continue
    		}
    		cinfoID := containerID{
    			podRef:        buildPodRef(cinfo.Spec.Labels),
    			containerName: kubetypes.GetContainerName(cinfo.Spec.Labels),
    		}
    		cinfoMap[cinfoID] = append(cinfoMap[cinfoID], containerInfoWithCgroup{
    			cinfo:  cinfo,
    			cgroup: key,
    		})
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 16 13:34:22 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  2. pkg/kubelet/stats/provider_test.go

    			TxBytes:  0,
    			TxErrors: 0,
    		}},
    	}
    	return cinfo
    }
    
    func getContainerInfoWithZeroCpuMem(seed int, podName string, podNamespace string, containerName string) cadvisorapiv2.ContainerInfo {
    	cinfo := getTestContainerInfo(seed, podName, podNamespace, containerName)
    	cinfo.Stats[0].Memory.RSS = 0
    	cinfo.Stats[0].CpuInst.Usage.Total = 0
    	return cinfo
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 20K bytes
    - Viewed (0)
  3. cmd/object-api-datatypes.go

    		ReplicationStatusInternal:  o.ReplicationStatusInternal,
    		VersionPurgeStatusInternal: o.VersionPurgeStatusInternal,
    	}
    	cinfo.UserDefined = make(map[string]string, len(o.UserDefined))
    	for k, v := range o.UserDefined {
    		cinfo.UserDefined[k] = v
    	}
    	return cinfo
    }
    
    func (o ObjectInfo) tierStats() tierStats {
    	ts := tierStats{
    		TotalSize:   uint64(o.Size),
    		NumVersions: 1,
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  4. src/runtime/stkframe.go

    			// getStackMap from "leaking param content:
    			// frame".  That leak propagates up to getgcmask, then
    			// GCMask, then verifyGCInfo, which converts the stack
    			// gcinfo tests into heap gcinfo tests :(
    		}
    	}
    
    	return
    }
    
    var methodValueCallFrameObjs [1]stackObjectRecord // initialized in stackobjectinit
    
    func stkobjinit() {
    	var abiRegArgsEface any = abi.RegArgs{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. pkg/kubelet/stats/cri_stats_provider.go

    			return nil, fmt.Errorf("%s: %w", msg, err)
    		}
    		return nil, nil
    	}
    	return &fsInfo, nil
    }
    
    // buildPodStats returns a PodStats that identifies the Pod managing cinfo
    func buildPodStats(podSandbox *runtimeapi.PodSandbox) *statsapi.PodStats {
    	return &statsapi.PodStats{
    		PodRef: statsapi.PodReference{
    			Name:      podSandbox.Metadata.Name,
    			UID:       podSandbox.Metadata.Uid,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 35.1K bytes
    - Viewed (0)
Back to top