Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 46 for iota (0.05 sec)

  1. src/crypto/tls/handshake_client_test.go

    // s_client` process.
    type opensslInputEvent int
    
    const (
    	// opensslRenegotiate causes OpenSSL to request a renegotiation of the
    	// connection.
    	opensslRenegotiate opensslInputEvent = iota
    
    	// opensslSendBanner causes OpenSSL to send the contents of
    	// opensslSentinel on the connection.
    	opensslSendSentinel
    
    	// opensslKeyUpdate causes OpenSSL to send a key update message to the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  2. src/syscall/syscall_windows.go

    	n, err := formatMessage(flags, 0, uint32(e), langid(LANG_ENGLISH, SUBLANG_ENGLISH_US), b, nil)
    	if err != nil {
    		n, err = formatMessage(flags, 0, uint32(e), 0, b, nil)
    		if err != nil {
    			return "winapi error #" + itoa.Itoa(int(e))
    		}
    	}
    	// trim terminating \r and \n
    	for ; n > 0 && (b[n-1] == '\n' || b[n-1] == '\r'); n-- {
    	}
    	return UTF16ToString(b[:n])
    }
    
    const (
    	_ERROR_NOT_ENOUGH_MEMORY    = Errno(8)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  3. src/go/printer/nodes.go

    	// tokens between)
    	if p.commentOffset == infinity {
    		p.nextComment() // get comment ready for use
    	}
    }
    
    type exprListMode uint
    
    const (
    	commaTerm exprListMode = 1 << iota // list is optionally terminated by a comma
    	noIndent                           // no extra indentation in multi-line lists
    )
    
    // If indent is set, a multi-line identifier list is indented after the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  4. src/regexp/syntax/parse.go

    )
    
    func (e ErrorCode) String() string {
    	return string(e)
    }
    
    // Flags control the behavior of the parser and record information about regexp context.
    type Flags uint16
    
    const (
    	FoldCase      Flags = 1 << iota // case-insensitive match
    	Literal                         // treat pattern as literal string
    	ClassNL                         // allow character classes like [^a-z] and [[:space:]] to match newline
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    			if err != nil {
    				return
    			}
    			// receive at least one normal byte
    			if sockType != SOCK_DGRAM {
    				var iova [1]Iovec
    				iova[0].Base = &dummy
    				iova[0].SetLen(1)
    				iov = iova[:]
    			}
    		}
    		msg.Control = &oob[0]
    		msg.SetControllen(len(oob))
    	}
    	if len(iov) > 0 {
    		msg.Iov = &iov[0]
    		msg.SetIovlen(len(iov))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  6. src/cmd/link/internal/loader/loader.go

    	npkgsyms    int // number of package symbols, for accounting
    	nhashedsyms int // number of hashed symbols, for accounting
    }
    
    const (
    	pkgDef = iota
    	hashed64Def
    	hashedDef
    	nonPkgDef
    	nonPkgRef
    )
    
    // objidx
    const (
    	nilObj = iota
    	extObj
    	goObjStart
    )
    
    // extSymPayload holds the payload (data + relocations) for linker-synthesized
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  7. src/net/http/httputil/reverseproxy_test.go

    	const size = 1234
    	rp.BufferPool = bufferPool{
    		get: func() []byte {
    			addLog("getBuf")
    			return make([]byte, size)
    		},
    		put: func(p []byte) {
    			addLog("putBuf-" + strconv.Itoa(len(p)))
    		},
    	}
    	frontend := httptest.NewServer(rp)
    	defer frontend.Close()
    
    	req, _ := http.NewRequest("GET", frontend.URL, nil)
    	req.Close = true
    	res, err := frontend.Client().Do(req)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    func (s Signal) Signal() {}
    
    func (s Signal) String() string {
    	if 0 <= s && int(s) < len(signals) {
    		str := signals[s]
    		if str != "" {
    			return str
    		}
    	}
    	return "signal " + itoa(int(s))
    }
    
    func LoadCreateSymbolicLink() error {
    	return procCreateSymbolicLinkW.Find()
    }
    
    // Readlink returns the destination of the named symbolic link.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  9. src/go/types/api_test.go

    		{`package f6b; var _            =  1e-2000i`, `1e-2000i`, `complex128`, `(0 + 0i)`},
    		{`package f7b; var _            = -1e-2000i`, `-1e-2000i`, `complex128`, `(0 + 0i)`},
    
    		{`package g0; const (a = len([iota]int{}); b; c); const _ = c`, `c`, `int`, `2`}, // go.dev/issue/22341
    		{`package g1; var(j int32; s int; n = 1.0<<s == j)`, `1.0`, `int32`, `1`},        // go.dev/issue/48422
    	}
    
    	for _, test := range tests {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  10. src/reflect/type.go

    	for i, field := range fields {
    		if field.Name == "" {
    			panic("reflect.StructOf: field " + strconv.Itoa(i) + " has no name")
    		}
    		if !isValidFieldName(field.Name) {
    			panic("reflect.StructOf: field " + strconv.Itoa(i) + " has invalid name")
    		}
    		if field.Type == nil {
    			panic("reflect.StructOf: field " + strconv.Itoa(i) + " has no type")
    		}
    		f, fpkgpath := runtimeStructField(field)
    		ft := f.Typ
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
Back to top