Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for Berner (0.2 sec)

  1. src/bufio/export_test.go

    	if n < utf8.UTFMax || n > 1e9 {
    		panic("bad max token size")
    	}
    	if n < len(s.buf) {
    		s.buf = make([]byte, n)
    	}
    	s.maxTokenSize = n
    }
    
    // ErrOrEOF is like Err, but returns EOF. Used to test a corner case.
    func (s *Scanner) ErrOrEOF() error {
    	return s.err
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Nov 02 17:17:44 GMT 2017
    - 597 bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/amd64enc_extra.s

    	VGATHERQPD 640(R15)(Z20*2), K6, Z10 // 6252fd4693546750
    	VGATHERQPD 960(R15)(Z10*2), K6, Z20 // 6282fd4e93645778
    	VGATHERQPD 1280(R15)(Z0*2), K6, Z10 // 6252fd4e93944700050000
    	// EVEX: corner cases for High-16 registers.
    	VADDPD X31, X16, X15          // 6211fd0058ff
    	VADDPD X23, X15, X16          // 62a1850858c7
    	VADDPD Y31, Y16, Y15          // 6211fd2058ff
    	VADDPD Y23, Y15, Y16          // 62a1852858c7
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Apr 11 18:32:50 GMT 2023
    - 57.6K bytes
    - Viewed (0)
  3. misc/chrome/gophertool/gopher.js

        if (numericRE.test(t)) {
            if (t < 150000) {
                // We could use the golang.org/cl/ handler here, but
                // avoid some redirect latency and go right there, since
                // one is easy. (no server-side mapping)
                return "https://github.com/golang/go/issues/" + t;
            }
            return "https://golang.org/cl/" + t;
        }
    
        if (gerritChangeIdRE.test(t)) {
    JavaScript
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Sat Jul 11 14:36:33 GMT 2015
    - 1.2K bytes
    - Viewed (0)
  4. api/go1.1.txt

    pkg net/http, type CloseNotifier interface { CloseNotify }
    pkg net/http, type CloseNotifier interface, CloseNotify() <-chan bool
    pkg net/http, type Request struct, PostForm url.Values
    pkg net/http, type Server struct, TLSNextProto map[string]func(*Server, *tls.Conn, Handler)
    pkg net/http, type Transport struct, ResponseHeaderTimeout time.Duration
    pkg net/http/cookiejar, func New(*Options) (*Jar, error)
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
  5. doc/go_spec.html

    in a new goroutine.
    When the function terminates, its goroutine also terminates.
    If the function has any return values, they are discarded when the
    function completes.
    </p>
    
    <pre>
    go Server()
    go func(ch chan&lt;- bool) { for { sleep(10); ch &lt;- true }} (c)
    </pre>
    
    
    <h3 id="Select_statements">Select statements</h3>
    
    <p>
    A "select" statement chooses which of a set of possible
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 26 00:39:16 GMT 2024
    - 279.6K bytes
    - Viewed (0)
  6. .github/ISSUE_TEMPLATE/03-gopls.yml

    name: Gopls bugs or feature requests
    description: Issues or feature requests for the Go language server (gopls)
    title: "x/tools/gopls: issue title"
    labels: ["gopls", "Tools"]
    body:
      - type: markdown
        attributes:
          value: "Please answer these questions before submitting your issue. Thanks!"
      - type: input
        id: gopls-version
        attributes:
          label: "gopls version"
          description: "Output of `gopls -v version` on the command line"
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Jan 04 23:31:17 GMT 2024
    - 1.8K bytes
    - Viewed (0)
  7. api/go1.2.txt

    pkg syscall (freebsd-386-cgo), type BpfZbuf struct, Buflen uint32
    pkg syscall (freebsd-386-cgo), type BpfZbufHeader struct
    pkg syscall (freebsd-386-cgo), type BpfZbufHeader struct, Kernel_gen uint32
    pkg syscall (freebsd-386-cgo), type BpfZbufHeader struct, Kernel_len uint32
    pkg syscall (freebsd-386-cgo), type BpfZbufHeader struct, User_gen uint32
    pkg syscall (freebsd-386-cgo), type BpfZbufHeader struct, X_bzh_pad [5]uint32
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 18 04:36:59 GMT 2013
    - 1.9M bytes
    - Viewed (2)
  8. doc/godebug.md

    Go 1.22 changed how the runtime interacts with transparent huge pages on Linux.
    In particular, a common default Linux kernel configuration can result in
    significant memory overheads, and Go 1.22 no longer works around this default.
    To work around this issue without adjusting kernel settings, transparent huge
    pages can be disabled for Go memory with the
    [`disablethp` setting](/pkg/runtime#hdr-Environment_Variable).
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Apr 16 17:29:58 GMT 2024
    - 13.5K bytes
    - Viewed (0)
  9. api/go1.9.txt

    pkg net/http, method (*Server) RegisterOnShutdown(func())
    pkg net/http, method (*Server) ServeTLS(net.Listener, string, string) error
    pkg net/http/fcgi, func ProcessEnv(*http.Request) map[string]string
    pkg net/http/httptest, method (*Server) Certificate() *x509.Certificate
    pkg net/http/httptest, method (*Server) Client() *http.Client
    pkg reflect, func MakeMapWithSize(Type, int) Value
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Oct 04 20:20:20 GMT 2021
    - 10.7K bytes
    - Viewed (0)
  10. api/go1.8.txt

    pkg net/http/httptrace, type ClientTrace struct, TLSHandshakeStart func()
    pkg net/http/httputil, type ReverseProxy struct, ModifyResponse func(*http.Response) error
    pkg net/http, method (*Server) Close() error
    pkg net/http, method (*Server) Shutdown(context.Context) error
    pkg net/http, type Pusher interface { Push }
    pkg net/http, type Pusher interface, Push(string, *PushOptions) error
    pkg net/http, type PushOptions struct
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Dec 21 05:25:57 GMT 2016
    - 16.3K bytes
    - Viewed (0)
Back to top