Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for qcInfo (0.07 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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