Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for qcInfo (0.16 sec)

  1. src/cmd/vendor/golang.org/x/text/unicode/norm/forminfo.go

    // and its corresponding decomposing form share the same trie.  Each trie maps
    // a rune to a uint16. The values take two forms.  For v >= 0x8000:
    //   bits
    //   15:    1 (inverse of NFD_QC bit of qcInfo)
    //   13..7: qcInfo (see below). isYesD is always true (no decomposition).
    //    6..0: ccc (compressed CCC value).
    // For v < 0x8000, the respective rune has a decomposition and v is an index
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/text/unicode/norm/forminfo.go

    // and its corresponding decomposing form share the same trie.  Each trie maps
    // a rune to a uint16. The values take two forms.  For v >= 0x8000:
    //   bits
    //   15:    1 (inverse of NFD_QC bit of qcInfo)
    //   13..7: qcInfo (see below). isYesD is always true (no decomposition).
    //    6..0: ccc (compressed CCC value).
    // For v < 0x8000, the respective rune has a decomposition and v is an index
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:59:52 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/health/DaemonHealthStatsTest.groovy

    class DaemonHealthStatsTest extends Specification {
    
        def gcInfo = Stub(GarbageCollectionInfo)
        def gcMonitor = Stub(DefaultGarbageCollectionMonitor)
        def runningStats = Stub(DaemonRunningStats)
        def healthStats = new DaemonHealthStats(runningStats, gcInfo, gcMonitor)
    
        def "includes garbage collection data when present"() {
            when:
            gcInfo.getCollectionTime() >> 25
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. pkg/kubelet/stats/helper_test.go

    			},
    			{
    				Timestamp:  timestamp2,
    				FloatValue: 2.1,
    			},
    		},
    	}
    	cInfo := cadvisorapiv2.ContainerInfo{
    		Spec: cadvisorapiv2.ContainerSpec{
    			CustomMetrics: spec,
    		},
    		Stats: []*cadvisorapiv2.ContainerStats{
    			{
    				CustomMetrics: metrics,
    			},
    		},
    	}
    	assert.Contains(t, cadvisorInfoToUserDefinedMetrics(&cInfo),
    		statsapi.UserDefinedMetric{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 22 16:23:28 UTC 2020
    - 2.3K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top