Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 238 for shminfo (0.2 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. pkg/proxy/nftables/proxier.go

    						externalIP.String(),
    						protocol,
    						strconv.Itoa(svcInfo.Port()),
    					},
    					Value: []string{
    						externalTrafficFilterVerdict,
    					},
    					Comment: &svcPortNameString,
    				})
    			}
    		}
    
    		usesFWChain := len(svcInfo.LoadBalancerVIPs()) > 0 && len(svcInfo.LoadBalancerSourceRanges()) > 0
    		fwChain := svcInfo.firewallChainName
    		if usesFWChain {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. pkg/proxy/iptables/proxier.go

    	// Build rules for each service-port.
    	for svcName, svc := range proxier.svcPortMap {
    		svcInfo, ok := svc.(*servicePortInfo)
    		if !ok {
    			proxier.logger.Error(nil, "Failed to cast serviceInfo", "serviceName", svcName)
    			continue
    		}
    		protocol := strings.ToLower(string(svcInfo.Protocol()))
    		svcPortNameString := svcInfo.nameString
    
    		// Figure out the endpoints for Cluster and Local traffic policy.
    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/proxy/ipvs/proxier.go

    		serv := &utilipvs.VirtualServer{
    			Address:   svcInfo.ClusterIP(),
    			Port:      uint16(svcInfo.Port()),
    			Protocol:  string(svcInfo.Protocol()),
    			Scheduler: proxier.ipvsScheduler,
    		}
    		// Set session affinity flag and timeout for IPVS service
    		if svcInfo.SessionAffinityType() == v1.ServiceAffinityClientIP {
    			serv.Flags |= utilipvs.FlagPersistent
    			serv.Timeout = uint32(svcInfo.StickyMaxAgeSeconds())
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  10. 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)
Back to top