Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 601 for uimm16 (0.26 sec)

  1. pilot/cmd/pilot-agent/status/ready/probe_test.go

    	err = probe.Check()
    	g.Expect(err).NotTo(HaveOccurred())
    	g.Expect(probe.atleastOnceReady).Should(BeTrue())
    	server.Close()
    
    	server = testserver.CreateAndStartServer(noServerStats)
    	probe.AdminPort = uint16(server.Listener.Addr().(*net.TCPAddr).Port)
    	err = probe.Check()
    	g.Expect(err).NotTo(HaveOccurred())
    	g.Expect(probe.atleastOnceReady).Should(BeTrue())
    	server.Close()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    	NetSetupWorkgroupName
    	NetSetupDomainName
    )
    
    type UserInfo10 struct {
    	Name       *uint16
    	Comment    *uint16
    	UsrComment *uint16
    	FullName   *uint16
    }
    
    //sys	NetUserGetInfo(serverName *uint16, userName *uint16, level uint32, buf **byte) (neterr error) = netapi32.NetUserGetInfo
    //sys	NetGetJoinInformation(server *uint16, name **uint16, bufType *uint32) (neterr error) = netapi32.NetGetJoinInformation
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  3. src/compress/bzip2/huffman.go

    type huffmanNode struct {
    	left, right           uint16
    	leftValue, rightValue uint16
    }
    
    // invalidNodeValue is an invalid index which marks a leaf node in the tree.
    const invalidNodeValue = 0xffff
    
    // Decode reads bits from the given bitReader and navigates the tree until a
    // symbol is found.
    func (t *huffmanTree) Decode(br *bitReader) (v uint16) {
    	nodeIndex := uint16(0) // node 0 is the root of the tree.
    
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:44:37 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/syscall_hurd_386.go

    // license that can be found in the LICENSE file.
    
    //go:build 386 && hurd
    
    package unix
    
    const (
    	TIOCGETA = 0x62251713
    )
    
    type Winsize struct {
    	Row    uint16
    	Col    uint16
    	Xpixel uint16
    	Ypixel uint16
    }
    
    type Termios struct {
    	Iflag  uint32
    	Oflag  uint32
    	Cflag  uint32
    	Lflag  uint32
    	Cc     [20]uint8
    	Ispeed int32
    	Ospeed int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 447 bytes
    - Viewed (0)
  5. src/runtime/defs_windows_amd64.go

    	p5home               uint64
    	p6home               uint64
    	contextflags         uint32
    	mxcsr                uint32
    	segcs                uint16
    	segds                uint16
    	seges                uint16
    	segfs                uint16
    	seggs                uint16
    	segss                uint16
    	eflags               uint32
    	dr0                  uint64
    	dr1                  uint64
    	dr2                  uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 08:26:52 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  6. src/runtime/defs_freebsd_amd64.go

    	mc_r12           uint64
    	mc_r13           uint64
    	mc_r14           uint64
    	mc_r15           uint64
    	mc_trapno        uint32
    	mc_fs            uint16
    	mc_gs            uint16
    	mc_addr          uint64
    	mc_flags         uint32
    	mc_es            uint16
    	mc_ds            uint16
    	mc_err           uint64
    	mc_rip           uint64
    	mc_cs            uint64
    	mc_rflags        uint64
    	mc_rsp           uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 4.9K bytes
    - Viewed (1)
  7. src/image/png/reader.go

    				tr := uint16(d.transparent[0])<<8 | uint16(d.transparent[1])
    				tg := uint16(d.transparent[2])<<8 | uint16(d.transparent[3])
    				tb := uint16(d.transparent[4])<<8 | uint16(d.transparent[5])
    				for x := 0; x < width; x++ {
    					rcol := uint16(cdat[6*x+0])<<8 | uint16(cdat[6*x+1])
    					gcol := uint16(cdat[6*x+2])<<8 | uint16(cdat[6*x+3])
    					bcol := uint16(cdat[6*x+4])<<8 | uint16(cdat[6*x+5])
    					acol := uint16(0xffff)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 26K bytes
    - Viewed (0)
  8. src/internal/types/testdata/check/const1.go

    )
    
    const (
    	_ uint16 = 0 /* ERROR "overflows" */ - 1
    	_ uint16 = 0
    	_ uint16 = maxUint16
    	_ uint16 = maxUint16 /* ERROR "overflows" */ + 1
    	_ uint16 = smallestFloat64 /* ERROR "truncated" */
    
    	_ = uint16(0 /* ERROR "overflows" */ - 1)
    	_ = uint16(0)
    	_ = uint16(maxUint16)
    	_ = uint16(maxUint16 /* ERROR "overflows" */ + 1)
    	_ = uint16(smallestFloat64 /* ERROR "cannot convert" */)
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 16:11:16 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  9. test/fixedbugs/issue64715.go

    // license that can be found in the LICENSE file.
    
    package main
    
    func boolInt32(b bool) int32 {
    	if b {
    		return 1
    	}
    
    	return 0
    }
    
    func f(left uint16, right int32) (r uint16) {
    	return left >> right
    }
    
    var n = uint16(65535)
    
    func main() {
    	println(f(n, boolInt32(int64(n^n) > 1)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 19:35:21 UTC 2023
    - 401 bytes
    - Viewed (0)
  10. src/crypto/tls/defaults.go

    	PKCS1WithSHA1,
    	ECDSAWithSHA1,
    }
    
    var tlsrsakex = godebug.New("tlsrsakex")
    var tls3des = godebug.New("tls3des")
    
    func defaultCipherSuites() []uint16 {
    	suites := slices.Clone(cipherSuitesPreferenceOrder)
    	return slices.DeleteFunc(suites, func(c uint16) bool {
    		return disabledCipherSuites[c] ||
    			tlsrsakex.Value() != "1" && rsaKexCiphers[c] ||
    			tls3des.Value() != "1" && tdesCiphers[c]
    	})
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top