Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 31 for extra (0.16 sec)

  1. src/bufio/bufio.go

    		}
    		if b.Buffered() == 0 && tryStringWriter {
    			// Large write, empty buffer, and the underlying writer supports
    			// WriteString: forward the write to the underlying StringWriter.
    			// This avoids an extra copy.
    			n, b.err = sw.WriteString(s)
    		} else {
    			n = copy(b.buf[b.n:], s)
    			b.n += n
    			b.Flush()
    		}
    		nn += n
    		s = s[n:]
    	}
    	if b.err != nil {
    		return nn, b.err
    	}
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Oct 12 14:39:08 GMT 2023
    - 21.8K bytes
    - Viewed (0)
  2. api/go1.16.txt

    pkg syscall (darwin-arm64), const EV_SYSFLAGS ideal-int
    pkg syscall (darwin-arm64), const EWOULDBLOCK = 35
    pkg syscall (darwin-arm64), const EXDEV = 18
    pkg syscall (darwin-arm64), const EXTA = 19200
    pkg syscall (darwin-arm64), const EXTA ideal-int
    pkg syscall (darwin-arm64), const EXTB = 38400
    pkg syscall (darwin-arm64), const EXTB ideal-int
    pkg syscall (darwin-arm64), const EXTPROC = 2048
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Dec 02 16:30:41 GMT 2022
    - 479.2K bytes
    - Viewed (0)
  3. api/go1.14.txt

    pkg syscall (freebsd-arm64), const EVFILT_WRITE ideal-int
    pkg syscall (freebsd-arm64), const EWOULDBLOCK = 35
    pkg syscall (freebsd-arm64), const EXDEV = 18
    pkg syscall (freebsd-arm64), const EXTA = 19200
    pkg syscall (freebsd-arm64), const EXTA ideal-int
    pkg syscall (freebsd-arm64), const EXTB = 38400
    pkg syscall (freebsd-arm64), const EXTB ideal-int
    pkg syscall (freebsd-arm64), const EXTPROC = 2048
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 508.9K bytes
    - Viewed (0)
  4. src/archive/tar/reader.go

    // to store the rest of the sparse map.
    //
    // The Header.Size does not reflect the size of any extended headers used.
    // Thus, this function will read from the raw io.Reader to fetch extra headers.
    // This method mutates blk in the process.
    func (tr *Reader) readOldGNUSparseMap(hdr *Header, blk *block) (sparseDatas, error) {
    	// Make sure that the input format is GNU.
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Mar 08 01:59:14 GMT 2024
    - 26.8K bytes
    - Viewed (0)
  5. misc/ios/go_ios_exec.go

    // This program can be used as go_ios_$GOARCH_exec by the Go tool.
    // It executes binaries on an iOS device using the XCode toolchain
    // and the ios-deploy program: https://github.com/phonegap/ios-deploy
    //
    // This script supports an extra flag, -lldb, that pauses execution
    // just before the main program begins and allows the user to control
    // the remote lldb session. This flag is appended to the end of the
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Apr 11 16:34:30 GMT 2022
    - 23.4K bytes
    - Viewed (0)
  6. api/go1.20.txt

    pkg syscall (freebsd-riscv64), const EWOULDBLOCK = 35 #53466
    pkg syscall (freebsd-riscv64), const EXDEV = 18 #53466
    pkg syscall (freebsd-riscv64), const EXTA = 19200 #53466
    pkg syscall (freebsd-riscv64), const EXTA ideal-int #53466
    pkg syscall (freebsd-riscv64), const EXTB = 38400 #53466
    pkg syscall (freebsd-riscv64), const EXTB ideal-int #53466
    pkg syscall (freebsd-riscv64), const EXTPROC = 2048 #53466
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Feb 17 21:23:32 GMT 2023
    - 602.6K bytes
    - Viewed (0)
  7. doc/go_spec.html

    </p>
    
    <pre class="ebnf">
    MethodDecl = "func" Receiver MethodName Signature [ FunctionBody ] .
    Receiver   = Parameters .
    </pre>
    
    <p>
    The receiver is specified via an extra parameter section preceding the method
    name. That parameter section must declare a single non-variadic parameter, the receiver.
    Its type must be a <a href="#Type_definitions">defined</a> type <code>T</code> or a
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu May 02 22:43:51 GMT 2024
    - 279.6K bytes
    - Viewed (0)
  8. src/cmd/api/main_test.go

    			if err == io.EOF {
    				break
    			}
    			if err != nil {
    				log.Fatalf("go list: invalid output: %v", err)
    			}
    
    			// - Package "unsafe" contains special signatures requiring
    			//   extra care when printing them - ignore since it is not
    			//   going to change w/o a language change.
    			// - Internal and vendored packages do not contribute to our
    			//   API surface. (If we are running within the "std" module,
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Apr 09 20:48:51 GMT 2024
    - 31.4K bytes
    - Viewed (0)
  9. api/go1.1.txt

    pkg syscall (darwin-386), const EV_RECEIPT = 64
    pkg syscall (darwin-386), const EV_SYSFLAGS = 61440
    pkg syscall (darwin-386), const EWOULDBLOCK = 35
    pkg syscall (darwin-386), const EXDEV = 18
    pkg syscall (darwin-386), const EXTA = 19200
    pkg syscall (darwin-386), const EXTB = 38400
    pkg syscall (darwin-386), const EXTPROC = 2048
    pkg syscall (darwin-386), const FD_CLOEXEC = 1
    pkg syscall (darwin-386), const FD_SETSIZE = 1024
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
  10. api/go1.21.txt

    pkg crypto/tls, type QUICEvent struct, Suite uint16 #44886
    pkg crypto/tls, type SessionState struct #60105
    pkg crypto/tls, type SessionState struct, EarlyData bool #60107
    pkg crypto/tls, type SessionState struct, Extra [][]uint8 #60539
    pkg crypto/x509, type RevocationListEntry struct #53573
    pkg crypto/x509, type RevocationListEntry struct, Extensions []pkix.Extension #53573
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Mon Aug 07 09:39:17 GMT 2023
    - 25.6K bytes
    - Viewed (0)
Back to top