Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 711 for noinfo (0.12 sec)

  1. src/runtime/pprof/proto.go

    	period     int64
    	m          profMap
    
    	// encoding state
    	w         io.Writer
    	zw        *gzip.Writer
    	pb        protobuf
    	strings   []string
    	stringMap map[string]int
    	locs      map[uintptr]locInfo // list of locInfo starting with the given PC.
    	funcs     map[string]int      // Package path-qualified function name to Function.ID
    	mem       []memMap
    	deck      pcDeck
    }
    
    type memMap struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 13 20:40:52 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/instrumented_services.go

    	const operation = "image_fs_info"
    	defer recordOperation(operation, time.Now())
    
    	fsInfo, err := in.service.ImageFsInfo(ctx)
    	recordError(operation, err)
    	return fsInfo, nil
    }
    
    func (in instrumentedRuntimeService) CheckpointContainer(ctx context.Context, options *runtimeapi.CheckpointContainerRequest) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 10:46:06 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. cmd/xl-storage.go

    			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()
    			// Healing is 'true' when
    			// - if we found an unformatted disk (no 'format.json')
    			// - if we found healing tracker 'healing.bin'
    			dcinfo.Healing = errors.Is(err, errUnformattedDisk) || (s.Healing() != nil)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (2)
  4. test/noinit.go

    Cuong Manh Le <******@****.***> 1675970456 +0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 14 17:57:36 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/dwarf.go

    			if len(unit.Textp) == 0 {
    				cuabrv = dwarf.DW_ABRV_COMPUNIT_TEXTLESS
    			}
    			unit.DWInfo = d.newdie(&dwroot, cuabrv, unit.Lib.Pkg)
    			newattr(unit.DWInfo, dwarf.DW_AT_language, dwarf.DW_CLS_CONSTANT, int64(dwarf.DW_LANG_Go), 0)
    			// OS X linker requires compilation dir or absolute path in comp unit name to output debug info.
    			compDir := getCompilationDir()
    			// TODO: Make this be the actual compilation directory, not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  6. pkg/kubelet/stats/cri_stats_provider_windows_test.go

    		},
    	}
    
    	inputContainer := &runtimeapi.Container{
    		CreatedAt: containerStartTime.Unix(),
    		Metadata: &runtimeapi.ContainerMetadata{
    			Name: "c0",
    		},
    	}
    
    	inputRootFsInfo := &cadvisorapiv2.FsInfo{}
    
    	// Used by the getPodContainerLogStats() call in makeWinContainerStats()
    	inputPodSandboxMetadata := &runtimeapi.PodSandboxMetadata{
    		Namespace: "sb0-ns",
    		Name:      "sb0-name",
    		Uid:       "sb0-uid",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 17 00:02:10 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  7. src/runtime/defs_aix_ppc64.go

    	lr         uint64
    	ctr        uint64
    	cr         uint32
    	xer        uint32
    	fpscr      uint32
    	fpscrx     uint32
    	except     [1]uint64
    	fpr        [32]float64
    	fpeu       uint8
    	fpinfo     uint8
    	fpscr24_31 uint8
    	pad        [1]uint8
    	excp_type  int32
    }
    
    type sigactiont struct {
    	sa_handler uintptr // a union of two pointer
    	sa_mask    sigset
    	sa_flags   int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 20 21:27:51 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  8. pkg/proxy/iptables/proxier.go

    		for _, ep := range endpoints {
    			epInfo, ok := ep.(*endpointInfo)
    			if !ok {
    				continue
    			}
    			comment := fmt.Sprintf(`"%s -> %s"`, svcPortNameString, epInfo.String())
    
    			args = append(args[:0],
    				"-A", string(svcChain),
    			)
    			args = proxier.appendServiceCommentLocked(args, comment)
    			args = append(args,
    				"-m", "recent", "--name", string(epInfo.ChainName),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top