Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 265 for UInt32 (0.15 sec)

  1. pilot/pkg/model/service.go

    	// The port that the user provides in the meshNetworks config is the service port.
    	// We translate that to the appropriate node port here.
    	ClusterExternalPorts map[cluster.ID]map[uint32]uint32
    
    	PassthroughTargetPorts map[uint32]uint32
    
    	K8sAttributes
    }
    
    type NamespacedHostname struct {
    	Hostname  host.Name
    	Namespace string
    }
    
    type K8sAttributes struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  2. src/math/big/float.go

    		}
    	}
    	return z
    }
    
    // msb32 returns the 32 most significant bits of x.
    func msb32(x nat) uint32 {
    	i := len(x) - 1
    	if i < 0 {
    		return 0
    	}
    	if debugFloat && x[i]&(1<<(_W-1)) == 0 {
    		panic("x not normalized")
    	}
    	switch _W {
    	case 32:
    		return uint32(x[i])
    	case 64:
    		return uint32(x[i] >> 32)
    	}
    	panic("unreachable")
    }
    
    // msb64 returns the 64 most significant bits of x.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 44.5K bytes
    - Viewed (0)
  3. src/crypto/tls/handshake_messages_test.go

    	m := &newSessionTicketMsgTLS13{}
    	m.lifetime = uint32(rand.Intn(500000))
    	m.ageAdd = uint32(rand.Intn(500000))
    	m.nonce = randomBytes(rand.Intn(100), rand)
    	m.label = randomBytes(rand.Intn(1000), rand)
    	if rand.Intn(10) > 5 {
    		m.maxEarlyData = uint32(rand.Intn(500000))
    	}
    	return reflect.ValueOf(m)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/elfexec/elfexec.go

    		if _, err := io.ReadFull(r, noteHeader); err == io.EOF {
    			break
    		} else if err != nil {
    			return nil, err
    		}
    		namesz := order.Uint32(noteHeader[0:4])
    		descsz := order.Uint32(noteHeader[4:8])
    		typ := order.Uint32(noteHeader[8:12])
    
    		if uint64(namesz) > uint64(maxNoteSize) {
    			return nil, fmt.Errorf("note name too long (%d bytes)", namesz)
    		}
    		var name string
    		if namesz > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/listener_inbound.go

    	}
    	return ingressPortListSet
    }
    
    func (lb *ListenerBuilder) getFilterChainsByServicePort(enableSidecarServiceInboundListenerMerge bool) map[uint32]inboundChainConfig {
    	chainsByPort := make(map[uint32]inboundChainConfig)
    	ingressPortListSet := sets.New[int]()
    	sidecarScope := lb.node.SidecarScope
    	if sidecarScope.HasIngressListener() {
    		ingressPortListSet = getSidecarIngressPortList(lb.node)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  6. internal/grid/connection.go

    	// We may have reads that aren't locked, so update atomically.
    	gotState := atomic.LoadUint32((*uint32)(&c.state))
    	if gotState == StateShutdown || State(gotState) == s {
    		return
    	}
    	if s == StateConnected {
    		atomic.StoreInt64(&c.LastPong, time.Now().UnixNano())
    	}
    	atomic.StoreUint32((*uint32)(&c.state), uint32(s))
    	if debugPrint {
    		fmt.Println(c.Local, "updateState:", gotState, "->", s)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/network.go

    	if len(previousGateways) == 0 && len(gateways) == 0 {
    		return false
    	}
    
    	newGateways := make(model.NetworkGatewaySet)
    	// check if we have node port mappings
    	nodePortMap := make(map[uint32]uint32)
    	if svc.Attributes.ClusterExternalPorts != nil {
    		if npm, exists := svc.Attributes.ClusterExternalPorts[n.clusterID]; exists {
    			nodePortMap = npm
    		}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 22:23:22 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  8. src/runtime/export_test.go

    		if s.state.get() == mSpanInUse {
    			counted += s.npages
    		}
    	}
    
    	startTheWorld(stw)
    
    	return
    }
    
    func Fastrand() uint32          { return uint32(rand()) }
    func Fastrand64() uint64        { return rand() }
    func Fastrandn(n uint32) uint32 { return randn(n) }
    
    type ProfBuf profBuf
    
    func NewProfBuf(hdrsize, bufwords, tags int) *ProfBuf {
    	return (*ProfBuf)(newProfBuf(hdrsize, bufwords, tags))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:50:53 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  9. pkg/workloadapi/workload.proto

    // PorList represents the ports for a service
    message PortList {
      repeated Port ports = 1;
    }
    
    message Port {
      // Port the service is reached at (frontend).
      uint32 service_port = 1;
      // Port the service forwards to (backend).
      uint32 target_port = 2;
    }
    
    // TunnelProtocol indicates the tunneling protocol for requests.
    enum TunnelProtocol {
      // NONE means requests should be forwarded as-is, without tunneling.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  10. src/syscall/exec_linux.go

    		Close(mapPipe[1])
    	}
    
    	return pid, 0
    }
    
    const _LINUX_CAPABILITY_VERSION_3 = 0x20080522
    
    type capHeader struct {
    	version uint32
    	pid     int32
    }
    
    type capData struct {
    	effective   uint32
    	permitted   uint32
    	inheritable uint32
    }
    type caps struct {
    	hdr  capHeader
    	data [2]capData
    }
    
    // See CAP_TO_INDEX in linux/capability.h:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
Back to top