Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for qcInfo (0.13 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/health/DaemonHealthStats.java

        }
    
        @VisibleForTesting
        DaemonHealthStats(DaemonRunningStats runningStats, GarbageCollectionInfo gcInfo, GarbageCollectionMonitor gcMonitor) {
            this.runningStats = runningStats;
            this.scheduler = null;
            this.gcInfo = gcInfo;
            this.gcMonitor = gcMonitor;
        }
    
        @VisibleForTesting
        public GarbageCollectionMonitor getGcMonitor() {
            return gcMonitor;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:23:18 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    		switch resourceName {
    		case v1.ResourceMemory:
    			cInfo.currentContainerResources.memoryLimit = cInfo.desiredContainerResources.memoryLimit
    			cInfo.currentContainerResources.memoryRequest = cInfo.desiredContainerResources.memoryRequest
    		case v1.ResourceCPU:
    			cInfo.currentContainerResources.cpuLimit = cInfo.desiredContainerResources.cpuLimit
    			cInfo.currentContainerResources.cpuRequest = cInfo.desiredContainerResources.cpuRequest
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K 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. cmd/xl-storage.go

    		func(ctx context.Context) (DiskInfo, error) {
    			dcinfo := DiskInfo{}
    			di, err := getDiskInfo(s.drivePath)
    			if err != nil {
    				return dcinfo, err
    			}
    			dcinfo.Major = di.Major
    			dcinfo.Minor = di.Minor
    			dcinfo.Total = di.Total
    			dcinfo.Free = di.Free
    			dcinfo.Used = di.Used
    			dcinfo.UsedInodes = di.Files - di.Ffree
    			dcinfo.FreeInodes = di.Ffree
    			dcinfo.FSType = di.FSType
    			diskID, err := s.GetDiskID()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (2)
  5. 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)
  6. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    			// default resize policy when pod resize feature is enabled
    			pod.Spec.Containers[idx].Resources = tc.apiSpecResources[idx]
    			pod.Status.ContainerStatuses[idx].Resources = &tc.apiStatusResources[idx]
    			cInfo := containerToUpdateInfo{
    				apiContainerIdx: idx,
    				kubeContainerID: kubecontainer.ContainerID{},
    				desiredContainerResources: containerResources{
    					memoryLimit:   tc.apiSpecResources[idx].Limits.Memory().Value(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
Back to top