Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 117 for shminfo (0.17 sec)

  1. src/syscall/mksysctl_openbsd.pl

    	#debug				# Special handling required
    	hw
    	#machdep			# Arch specific
    	user
    	ddb
    	#vfs				# Special handling required
    	fs.posix
    	kern.forkstat
    	kern.intrcnt
    	kern.malloc
    	kern.nchstats
    	kern.seminfo
    	kern.shminfo
    	kern.timecounter
    	kern.tty
    	kern.watchdog
    	net.bpf
    	net.ifq
    	net.inet
    	net.inet.ah
    	net.inet.carp
    	net.inet.divert
    	net.inet.esp
    	net.inet.etherip
    	net.inet.gre
    	net.inet.icmp
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 14 13:21:46 UTC 2018
    - 5K bytes
    - Viewed (0)
  2. src/internal/sysinfo/sysinfo.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package sysinfo implements high level hardware information gathering
    // that can be used for debugging or information purposes.
    package sysinfo
    
    import (
    	"internal/cpu"
    	"sync"
    )
    
    var CPUName = sync.OnceValue(func() string {
    	if name := cpu.Name(); name != "" {
    		return name
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:42:42 UTC 2024
    - 518 bytes
    - Viewed (0)
  3. src/runtime/vdso_elf64.go

    	sh_addr      uint64 /* Section virtual addr at execution */
    	sh_offset    uint64 /* Section file offset */
    	sh_size      uint64 /* Section size in bytes */
    	sh_link      uint32 /* Link to another section */
    	sh_info      uint32 /* Additional section information */
    	sh_addralign uint64 /* Section alignment */
    	sh_entsize   uint64 /* Entry size if section holds table */
    }
    
    type elfDyn struct {
    	d_tag int64  /* Dynamic entry type */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 19 19:32:35 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  4. src/runtime/vdso_elf32.go

    	sh_addr      uint32 /* Section virtual addr at execution */
    	sh_offset    uint32 /* Section file offset */
    	sh_size      uint32 /* Section size in bytes */
    	sh_link      uint32 /* Link to another section */
    	sh_info      uint32 /* Additional section information */
    	sh_addralign uint32 /* Section alignment */
    	sh_entsize   uint32 /* Entry size if section holds table */
    }
    
    type elfDyn struct {
    	d_tag int32  /* Dynamic entry type */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  5. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/health/memory/MemInfoOsMemoryInfo.java

        }
    
    
        /**
         * Given output from /proc/meminfo, return a system memory snapshot.
         */
        @VisibleForTesting
        OsMemoryStatusSnapshot getOsSnapshotFromMemInfo(final List<String> meminfoLines) {
            final Meminfo meminfo = new Meminfo();
    
            for (String line : meminfoLines) {
                if (line.startsWith("MemAvailable")) {
                    meminfo.setAvailable(parseMeminfoBytes(line));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  6. pkg/proxy/conntrack/cleanup.go

    		if svcInfo, ok := svcPortMap[svcPortName]; ok {
    			klog.V(4).InfoS("Newly-active UDP service may have stale conntrack entries", "servicePortName", svcPortName)
    			conntrackCleanupServiceIPs.Insert(svcInfo.ClusterIP().String())
    			for _, extIP := range svcInfo.ExternalIPs() {
    				conntrackCleanupServiceIPs.Insert(extIP.String())
    			}
    			for _, lbIP := range svcInfo.LoadBalancerVIPs() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 15 18:09:05 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  7. src/cmd/dist/sys_windows.go

    	PROCESSOR_ARCHITECTURE_INTEL = 0
    	PROCESSOR_ARCHITECTURE_ARM   = 5
    	PROCESSOR_ARCHITECTURE_ARM64 = 12
    	PROCESSOR_ARCHITECTURE_IA64  = 6
    )
    
    var sysinfo systeminfo
    
    func sysinit() {
    	syscall.Syscall(procGetSystemInfo.Addr(), 1, uintptr(unsafe.Pointer(&sysinfo)), 0, 0)
    	switch sysinfo.wProcessorArchitecture {
    	case PROCESSOR_ARCHITECTURE_AMD64:
    		gohostarch = "amd64"
    	case PROCESSOR_ARCHITECTURE_INTEL:
    		gohostarch = "386"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 16:42:41 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. src/runtime/export_linux_test.go

    // Export guts for testing.
    
    package runtime
    
    const SiginfoMaxSize = _si_max_size
    const SigeventMaxSize = _sigev_max_size
    
    var NewOSProc0 = newosproc0
    var Mincore = mincore
    
    type Siginfo siginfo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 21 20:20:01 UTC 2023
    - 378 bytes
    - Viewed (0)
  9. src/cmd/internal/metadata/main.go

    //go:build ignore
    
    package main
    
    import (
    	"cmd/internal/osinfo"
    	"fmt"
    	"internal/sysinfo"
    	"runtime"
    )
    
    func main() {
    	fmt.Printf("# GOARCH: %s\n", runtime.GOARCH)
    	fmt.Printf("# CPU: %s\n", sysinfo.CPUName())
    
    	fmt.Printf("# GOOS: %s\n", runtime.GOOS)
    	ver, err := osinfo.Version()
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 17 21:40:36 UTC 2023
    - 876 bytes
    - Viewed (0)
  10. src/runtime/defs_dragonfly.go

    	SIGTTIN   = C.SIGTTIN
    	SIGTTOU   = C.SIGTTOU
    	SIGIO     = C.SIGIO
    	SIGXCPU   = C.SIGXCPU
    	SIGXFSZ   = C.SIGXFSZ
    	SIGVTALRM = C.SIGVTALRM
    	SIGPROF   = C.SIGPROF
    	SIGWINCH  = C.SIGWINCH
    	SIGINFO   = C.SIGINFO
    	SIGUSR1   = C.SIGUSR1
    	SIGUSR2   = C.SIGUSR2
    
    	FPE_INTDIV = C.FPE_INTDIV
    	FPE_INTOVF = C.FPE_INTOVF
    	FPE_FLTDIV = C.FPE_FLTDIV
    	FPE_FLTOVF = C.FPE_FLTOVF
    	FPE_FLTUND = C.FPE_FLTUND
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top