Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 241 for uimm16 (0.1 sec)

  1. pkg/proxy/winkernel/proxier.go

    	ip               string
    	hnsID            string
    	healthCheckHnsID string
    }
    
    type loadBalancerInfo struct {
    	hnsID string
    }
    
    type loadBalancerIdentifier struct {
    	protocol      uint16
    	internalPort  uint16
    	externalPort  uint16
    	vip           string
    	endpointsHash [20]byte
    }
    
    type loadBalancerFlags struct {
    	isILB           bool
    	isDSR           bool
    	isVipExternalIP bool
    	localRoutedVIP  bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  2. src/syscall/dir_plan9.go

    	Vers uint32 // version number for given Path
    	Type uint8  // the type of the file (syscall.QTDIR for example)
    }
    
    // A Dir contains the metadata for a file.
    type Dir struct {
    	// system-modified data
    	Type uint16 // server type
    	Dev  uint32 // server subtype
    
    	// file data
    	Qid    Qid    // unique id from server
    	Mode   uint32 // permissions
    	Atime  uint32 // last read time
    	Mtime  uint32 // last write time
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:32:38 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. src/crypto/internal/mlkem768/mlkem768.go

    		b = b[5:]
    		f[i] = fieldElement(decompress(uint16(x>>0&0b11_1111_1111), 10))
    		f[i+1] = fieldElement(decompress(uint16(x>>10&0b11_1111_1111), 10))
    		f[i+2] = fieldElement(decompress(uint16(x>>20&0b11_1111_1111), 10))
    		f[i+3] = fieldElement(decompress(uint16(x>>30&0b11_1111_1111), 10))
    	}
    	return f
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  4. src/runtime/defs_dragonfly_amd64.go

    	_EV_ERROR     = 0x4000
    	_EV_EOF       = 0x8000
    	_EVFILT_READ  = -0x1
    	_EVFILT_WRITE = -0x2
    	_EVFILT_USER  = -0x9
    
    	_NOTE_TRIGGER = 0x1000000
    )
    
    type rtprio struct {
    	_type uint16
    	prio  uint16
    }
    
    type lwpparams struct {
    	start_func uintptr
    	arg        unsafe.Pointer
    	stack      uintptr
    	tid1       unsafe.Pointer // *int32
    	tid2       unsafe.Pointer // *int32
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. src/reflect/iter.go

    	case Int32:
    		return rangeNum[int32](v.Int())
    	case Int64:
    		return rangeNum[int64](v.Int())
    	case Uint:
    		return rangeNum[uint](v.Uint())
    	case Uint8:
    		return rangeNum[uint8](v.Uint())
    	case Uint16:
    		return rangeNum[uint16](v.Uint())
    	case Uint32:
    		return rangeNum[uint32](v.Uint())
    	case Uint64:
    		return rangeNum[uint64](v.Uint())
    	case Uintptr:
    		return rangeNum[uintptr](v.Uint())
    	case Pointer:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 13:40:11 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. src/crypto/tls/handshake_messages_test.go

    func (*clientHelloMsg) Generate(rand *rand.Rand, size int) reflect.Value {
    	m := &clientHelloMsg{}
    	m.vers = uint16(rand.Intn(65536))
    	m.random = randomBytes(32, rand)
    	m.sessionId = randomBytes(rand.Intn(32), rand)
    	m.cipherSuites = make([]uint16, rand.Intn(63)+1)
    	for i := 0; i < len(m.cipherSuites); i++ {
    		cs := uint16(rand.Int31())
    		if cs == scsvRenegotiation {
    			cs += 1
    		}
    		m.cipherSuites[i] = cs
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  7. pilot/pkg/bootstrap/options.go

    	if err != nil {
    		return err
    	}
    	p.ServerOptions.TLSOptions.CipherSuits = cipherSuits
    	return nil
    }
    
    func allCiphers() map[string]uint16 {
    	acceptedCiphers := make(map[string]uint16, len(tls.CipherSuites())+len(tls.InsecureCipherSuites()))
    	for _, cipher := range tls.InsecureCipherSuites() {
    		acceptedCiphers[cipher.Name] = cipher.ID
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  8. src/cmd/internal/goobj/objfile.go

    //	   Off  int32
    //	   Siz  uint8
    //	   Type uint16
    //	   Add  int64
    //	   Sym  SymRef
    //	}
    type Reloc [RelocSize]byte
    
    const RelocSize = 4 + 1 + 2 + 8 + 8
    
    func (r *Reloc) Off() int32   { return int32(binary.LittleEndian.Uint32(r[:])) }
    func (r *Reloc) Siz() uint8   { return r[4] }
    func (r *Reloc) Type() uint16 { return binary.LittleEndian.Uint16(r[5:]) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  9. test/codegen/comparisons.go

    	if f-int32(u>>2) >= 0 {
    		return 2
    	}
    	return 0
    }
    
    func UintLtZero(a uint8, b uint16, c uint32, d uint64) int {
    	// amd64: -`(TESTB|TESTW|TESTL|TESTQ|JCC|JCS)`
    	// arm64: -`(CMPW|CMP|BHS|BLO)`
    	if a < 0 || b < 0 || c < 0 || d < 0 {
    		return 1
    	}
    	return 0
    }
    
    func UintGeqZero(a uint8, b uint16, c uint32, d uint64) int {
    	// amd64: -`(TESTB|TESTW|TESTL|TESTQ|JCS|JCC)`
    	// arm64: -`(CMPW|CMP|BLO|BHS)`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 16:31:02 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  10. pkg/proxy/ipvs/util/ipvs_linux.go

    }
    
    // stringToProtocolType returns the protocol type for the given name
    func stringToProtocol(protocol string) uint16 {
    	switch strings.ToLower(protocol) {
    	case "tcp":
    		return uint16(unix.IPPROTO_TCP)
    	case "udp":
    		return uint16(unix.IPPROTO_UDP)
    	case "sctp":
    		return uint16(unix.IPPROTO_SCTP)
    	}
    	return uint16(0)
    }
    
    // protocolTypeToString returns the name for the given protocol.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 9K bytes
    - Viewed (0)
Back to top