Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 81 for shminfo (0.2 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/runtime/defs_netbsd.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)
  7. pkg/proxy/servicechangetracker_test.go

    						svcInfo.port != expectedInfo.port ||
    						svcInfo.protocol != expectedInfo.protocol ||
    						svcInfo.healthCheckNodePort != expectedInfo.healthCheckNodePort ||
    						!reflect.DeepEqual(svcInfo.externalIPs, expectedInfo.externalIPs) ||
    						!reflect.DeepEqual(svcInfo.loadBalancerSourceRanges, expectedInfo.loadBalancerSourceRanges) ||
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  8. cmd/object-handlers.go

    		srcInfo.metadataOnly = true
    		srcInfo.keyRotation = true
    	} else {
    		if isSourceEncrypted || isTargetEncrypted {
    			// We are not only copying just metadata instead
    			// we are creating a new object at this point, even
    			// if source and destination are same objects.
    			if !srcInfo.keyRotation {
    				srcInfo.metadataOnly = false
    			}
    		}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  9. src/runtime/defs_darwin.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
    - 4.3K bytes
    - Viewed (0)
  10. cmd/erasure-server-pool.go

    		if dstOpts.Versioned && srcOpts.VersionID != dstOpts.VersionID && !srcInfo.Legacy {
    			// CopyObject optimization where we don't create an entire copy
    			// of the content, instead we add a reference.
    			srcInfo.versionOnly = true
    			return z.serverPools[poolIdx].CopyObject(ctx, srcBucket, srcObject, dstBucket, dstObject, srcInfo, srcOpts, dstOpts)
    		}
    	}
    
    	putOpts := ObjectOptions{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
Back to top