Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for Searle (0.36 sec)

  1. src/bytes/buffer_test.go

    	b.ReportAllocs()
    	for i := 0; i < b.N; i++ {
    		bb.Reset()
    		b := bb.AvailableBuffer()
    		b = b[:cap(b)] // use max capacity to simulate a large append operation
    		bb.Write(b)    // should be nearly infinitely fast
    	}
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 26 13:31:36 GMT 2024
    - 18.6K bytes
    - Viewed (0)
  2. src/cmd/cgo/doc.go

    of an error message on a given line to deduce the information it
    needs. The program is syntactically valid regardless of whether each
    name is a type or an ordinary identifier, so there will be no syntax
    errors that might stop parsing early.
    
    An error on not-declared:1 indicates that foo is undeclared.
    An error on not-type:1 indicates that foo is not a type (if declared at all, it is an identifier).
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Sun Mar 31 09:02:45 GMT 2024
    - 42.1K bytes
    - Viewed (0)
  3. api/go1.1.txt

    pkg syscall (linux-386), const PR_MCE_KILL = 33
    pkg syscall (linux-386), const PR_MCE_KILL_CLEAR = 0
    pkg syscall (linux-386), const PR_MCE_KILL_DEFAULT = 2
    pkg syscall (linux-386), const PR_MCE_KILL_EARLY = 1
    pkg syscall (linux-386), const PR_MCE_KILL_GET = 34
    pkg syscall (linux-386), const PR_MCE_KILL_LATE = 0
    pkg syscall (linux-386), const PR_MCE_KILL_SET = 1
    pkg syscall (linux-386), const PR_SET_DUMPABLE = 4
    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)
  4. api/go1.2.txt

    pkg syscall (linux-arm-cgo), const PR_MCE_KILL_CLEAR ideal-int
    pkg syscall (linux-arm-cgo), const PR_MCE_KILL_DEFAULT ideal-int
    pkg syscall (linux-arm-cgo), const PR_MCE_KILL_EARLY ideal-int
    pkg syscall (linux-arm-cgo), const PR_MCE_KILL_GET ideal-int
    pkg syscall (linux-arm-cgo), const PR_MCE_KILL_LATE ideal-int
    pkg syscall (linux-arm-cgo), const PR_MCE_KILL_SET ideal-int
    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)
  5. src/archive/tar/reader_test.go

    			Gname:    "dsnet",
    			Format:   FormatGNU,
    		}},
    	}, {
    		// This archive was generated by Writer but is readable by both
    		// GNU and BSD tar utilities.
    		// The archive generated by GNU is nearly byte-for-byte identical
    		// to the Go version except the Go version sets a negative Devminor
    		// just to force the GNU format.
    		file: "testdata/gnu-utf8.tar",
    		headers: []*Header{{
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Nov 21 21:14:38 GMT 2022
    - 47.1K bytes
    - Viewed (0)
  6. src/bufio/scan.go

    // returned by a Split function to indicate that the scanning should stop
    // with no error. If the token being delivered with this error is not nil,
    // the token is the last token.
    //
    // The value is useful to stop processing early or when it is necessary to
    // deliver a final empty token (which is different from a nil token).
    // One could achieve the same behavior with a custom error value but
    // providing one here is tidier.
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Oct 23 09:06:30 GMT 2023
    - 14.2K bytes
    - Viewed (0)
  7. api/go1.txt

    pkg syscall (linux-386), const PR_MCE_KILL ideal-int
    pkg syscall (linux-386), const PR_MCE_KILL_CLEAR ideal-int
    pkg syscall (linux-386), const PR_MCE_KILL_DEFAULT ideal-int
    pkg syscall (linux-386), const PR_MCE_KILL_EARLY ideal-int
    pkg syscall (linux-386), const PR_MCE_KILL_GET ideal-int
    pkg syscall (linux-386), const PR_MCE_KILL_LATE ideal-int
    pkg syscall (linux-386), const PR_MCE_KILL_SET ideal-int
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
  8. doc/go1.22.html

      <a href="/pkg/builtin/#append"><code>append</code></a> that pass
      no values to be appended to the slice, such as <code>slice = append(slice)</code>.
      Such a statement has no effect, and experience has shown that is nearly always a mistake.
    </p>
    
    <h4 id="vet-defers">New warnings for deferring <code>time.Since</code></h4>
    
    <p><!-- CL 527095, https://go.dev/issue/60048: time.Since should not be used in defer statement -->
    HTML
    - Registered: Tue Feb 06 11:13:10 GMT 2024
    - Last Modified: Wed Jan 31 20:51:56 GMT 2024
    - 45.6K bytes
    - Viewed (0)
  9. src/archive/zip/writer.go

    		// field directly themselves. All other approaches sets UTC.
    		fh.ModifiedDate, fh.ModifiedTime = timeToMsDosTime(fh.Modified)
    
    		// Use "extended timestamp" format since this is what Info-ZIP uses.
    		// Nearly every major ZIP implementation uses a different format,
    		// but at least most seem to be able to understand the other formats.
    		//
    		// This format happens to be identical for both local and central header
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Apr 04 14:28:57 GMT 2024
    - 19.3K bytes
    - Viewed (0)
  10. src/bufio/scan_test.go

    func genLine(buf *bytes.Buffer, lineNum, n int, addNewline bool) {
    	buf.Reset()
    	doCR := lineNum%5 == 0
    	if doCR {
    		n--
    	}
    	for i := 0; i < n-1; i++ { // Stop early for \n.
    		c := 'a' + byte(lineNum+i)
    		if c == '\n' || c == '\r' { // Don't confuse us.
    			c = 'N'
    		}
    		buf.WriteByte(c)
    	}
    	if addNewline {
    		if doCR {
    			buf.WriteByte('\r')
    		}
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Sep 22 16:22:42 GMT 2023
    - 14.3K bytes
    - Viewed (0)
Back to top