Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for qcInfo (0.1 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/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)
  6. src/compress/zlib/reader_test.go

    		[]byte{
    			0x78, 0x9c, 0x4b, 0xcf, 0xcf, 0x4f, 0x49, 0xaa,
    			0x4c, 0xd5, 0x51, 0x28, 0xcf, 0x2f, 0xca, 0x49,
    			0x01, 0x00, 0x28, 0xa5, 0x05, 0x5e,
    		},
    		nil,
    		nil,
    	},
    	{
    		"bad header (CINFO)",
    		"",
    		[]byte{0x88, 0x98, 0x03, 0x00, 0x00, 0x00, 0x00, 0x01},
    		nil,
    		ErrHeader,
    	},
    	{
    		"bad header (FCHECK)",
    		"",
    		[]byte{0x78, 0x9f, 0x03, 0x00, 0x00, 0x00, 0x00, 0x01},
    		nil,
    		ErrHeader,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 30 02:16:17 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  7. src/compress/zlib/writer.go

    }
    
    // writeHeader writes the ZLIB header.
    func (z *Writer) writeHeader() (err error) {
    	z.wroteHeader = true
    	// ZLIB has a two-byte header (as documented in RFC 1950).
    	// The first four bits is the CINFO (compression info), which is 7 for the default deflate window size.
    	// The next four bits is the CM (compression method), which is 8 for deflate.
    	z.scratch[0] = 0x78
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 27 18:51:27 UTC 2023
    - 5.2K bytes
    - Viewed (0)
Back to top