Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,327 for pcpu (0.24 sec)

  1. pkg/kubelet/cm/cpumanager/policy_options.go

    	// towards the terminoloy k8s hints. We acknowledge this is confusing.
    	//
    	// looking at https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/,
    	// any possible naming scheme will lead to ambiguity to some extent.
    	// We picked "pcpu" because it the established docs hints at vCPU already.
    	FullPhysicalCPUsOnly bool
    	// Flag to evenly distribute CPUs across NUMA nodes in cases where more
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  2. src/internal/cpu/cpu.go

    }
    
    // processOptions enables or disables CPU feature values based on the parsed env string.
    // The env string is expected to be of the form cpu.feature1=value1,cpu.feature2=value2...
    // where feature names is one of the architecture specific list stored in the
    // cpu packages options variable and values are either 'on' or 'off'.
    // If env contains cpu.all=off then all cpu features referenced through the options
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/sys/cpu/cpu.go

    // license that can be found in the LICENSE file.
    
    // Package cpu implements processor feature detection for
    // various CPU architectures.
    package cpu
    
    import (
    	"os"
    	"strings"
    )
    
    // Initialized reports whether the CPU features were initialized.
    //
    // For some GOOS/GOARCH combinations initialization of the CPU features depends
    // on reading an operating specific file, e.g. /proc/self/auxv on linux/arm
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. src/internal/cpu/cpu.s

    // Copyright 2020 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This assembly file exists to allow internal/cpu to call
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 29 13:49:26 UTC 2020
    - 276 bytes
    - Viewed (0)
  5. src/internal/trace/testdata/testprog/cpu-profile.go

    		// than the CPU profiler when filtered to this goroutine via labels.
    		cpuHogger(cpuHog1, &salt1, dur)
    	}()
    
    	trace.Stop()
    	pprof.StopCPUProfile()
    
    	// Summarize the CPU profile to stderr so the test can check against it.
    
    	prof, err := profile.Parse(cpuBuf)
    	if err != nil {
    		log.Fatalf("failed to parse CPU profile: %v", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  6. cmd/metrics-v3-system-cpu.go

    	sysCPUAvgIdleMD   = NewGaugeMD(sysCPUAvgIdle, "Average CPU idle time")
    	sysCPUAvgIOWaitMD = NewGaugeMD(sysCPUAvgIOWait, "Average CPU IOWait time")
    	sysCPULoadMD      = NewGaugeMD(sysCPULoad, "CPU load average 1min")
    	sysCPULoadPercMD  = NewGaugeMD(sysCPULoadPerc, "CPU load average 1min (percentage)")
    	sysCPUNiceMD      = NewGaugeMD(sysCPUNice, "CPU nice time")
    	sysCPUStealMD     = NewGaugeMD(sysCPUSteal, "CPU steal time")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Apr 23 23:56:12 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/riscv/cpu.go

    Wang Yaduo <******@****.***> 1706668655 +0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  8. src/cmd/pprof/testdata/cpu.go

    Michael Pratt <******@****.***> 1623086889 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 17 14:53:37 UTC 2021
    - 792 bytes
    - Viewed (0)
  9. src/runtime/os_freebsd_arm.go

    	}
    }
    
    func archauxv(tag, val uintptr) {
    	switch tag {
    	case _AT_HWCAP:
    		cpu.HWCap = uint(val)
    	case _AT_HWCAP2:
    		cpu.HWCap2 = uint(val)
    	case _AT_PLATFORM:
    		cpu.Platform = gostringnocopy((*byte)(unsafe.Pointer(val)))
    	}
    }
    
    //go:nosplit
    func cputicks() int64 {
    	// runtime·nanotime() is a poor approximation of CPU ticks that is enough for the profiler.
    	return nanotime()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. src/runtime/os_openbsd_arm.go

    	// osinit not called yet, so ncpu not set: must use getncpu directly.
    	if getncpu() > 1 && goarm < 7 {
    		print("runtime: this system has multiple CPUs and must use\n")
    		print("atomic synchronization instructions. Recompile using GOARM=7.\n")
    		exit(1)
    	}
    }
    
    //go:nosplit
    func cputicks() int64 {
    	// runtime·nanotime() is a poor approximation of CPU ticks that is enough for the profiler.
    	return nanotime()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 662 bytes
    - Viewed (0)
Back to top