Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for carlet (0.23 sec)

  1. src/cmd/cgo/doc.go

    use. You can do this by setting the generic CC_FOR_TARGET or the
    more specific CC_FOR_${GOOS}_${GOARCH} (for example, CC_FOR_linux_arm)
    environment variable when building the toolchain using make.bash,
    or you can set the CC environment variable any time you run the go tool.
    
    The CXX_FOR_TARGET, CXX_FOR_${GOOS}_${GOARCH}, and CXX
    environment variables work in a similar way for C++ code.
    
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Sun Mar 31 09:02:45 GMT 2024
    - 42.1K bytes
    - Viewed (0)
  2. doc/go1.17_spec.html

    string, <code>&amp;s[i]</code> is invalid.
    </p>
    
    
    <h3 id="Array_types">Array types</h3>
    
    <p>
    An array is a numbered sequence of elements of a single
    type, called the element type.
    The number of elements is called the length of the array and is never negative.
    </p>
    
    <pre class="ebnf">
    ArrayType   = "[" ArrayLength "]" ElementType .
    ArrayLength = Expression .
    ElementType = Type .
    </pre>
    
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  3. src/bufio/bufio_test.go

    	}
    	b1.Flush()
    	if w1 != 3 {
    		t.Fatalf("flush 1200 + 1389 'x's: got %d writes, want 3", w1)
    	}
    }
    
    // A writeCountingDiscard is like io.Discard and counts the number of times
    // Write is called on it.
    type writeCountingDiscard int
    
    func (w *writeCountingDiscard) Write(p []byte) (int, error) {
    	*w++
    	return len(p), nil
    }
    
    type negativeReader int
    
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Feb 10 18:56:01 GMT 2023
    - 51.5K bytes
    - Viewed (0)
  4. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), method (*Iovec) SetLen(int)
    pkg syscall (netbsd-arm64-cgo), method (*Msghdr) SetControllen(int)
    pkg syscall (netbsd-arm64-cgo), type BpfHdr struct
    pkg syscall (netbsd-arm64-cgo), type BpfHdr struct, Caplen uint32
    pkg syscall (netbsd-arm64-cgo), type BpfHdr struct, Datalen uint32
    pkg syscall (netbsd-arm64-cgo), type BpfHdr struct, Hdrlen uint16
    pkg syscall (netbsd-arm64-cgo), type BpfHdr struct, Pad_cgo_0 [6]uint8
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Aug 08 18:44:16 GMT 2019
    - 452.6K bytes
    - Viewed (0)
  5. src/archive/tar/common.go

    	paxGid      = "gid"
    	paxUname    = "uname"
    	paxGname    = "gname"
    	paxMtime    = "mtime"
    	paxAtime    = "atime"
    	paxCtime    = "ctime"   // Removed from later revision of PAX spec, but was valid
    	paxCharset  = "charset" // Currently unused
    	paxComment  = "comment" // Currently unused
    
    	paxSchilyXattr = "SCHILY.xattr."
    
    	// Keywords for GNU sparse files in a PAX extended header.
    	paxGNUSparse          = "GNU.sparse."
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Mar 15 16:01:50 GMT 2024
    - 24.7K bytes
    - Viewed (2)
  6. src/bytes/buffer.go

    	slice, err := b.readSlice(delim)
    	return string(slice), err
    }
    
    // NewBuffer creates and initializes a new [Buffer] using buf as its
    // initial contents. The new [Buffer] takes ownership of buf, and the
    // caller should not use buf after this call. NewBuffer is intended to
    // prepare a [Buffer] to read existing data. It can also be used to set
    // the initial size of the internal buffer for writing. To do that,
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Oct 13 17:10:31 GMT 2023
    - 15.7K bytes
    - Viewed (0)
  7. src/archive/tar/reader_test.go

    		}
    		if v.wantErr == nil && r.Len() == 0 {
    			t.Errorf("test %d, canary byte unexpectedly consumed", i)
    		}
    	}
    }
    
    // testNonEmptyReader wraps an io.Reader and ensures that
    // Read is never called with an empty buffer.
    type testNonEmptyReader struct{ io.Reader }
    
    func (r testNonEmptyReader) Read(b []byte) (int, error) {
    	if len(b) == 0 {
    		return 0, errors.New("unexpected empty Read call")
    	}
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Nov 21 21:14:38 GMT 2022
    - 47.1K bytes
    - Viewed (0)
  8. api/go1.txt

    pkg syscall (linux-386), const SYS_BDFLUSH ideal-int
    pkg syscall (linux-386), const SYS_BREAK ideal-int
    pkg syscall (linux-386), const SYS_BRK ideal-int
    pkg syscall (linux-386), const SYS_CAPGET ideal-int
    pkg syscall (linux-386), const SYS_CAPSET ideal-int
    pkg syscall (linux-386), const SYS_CHDIR ideal-int
    pkg syscall (linux-386), const SYS_CHMOD ideal-int
    pkg syscall (linux-386), const SYS_CHOWN ideal-int
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
  9. api/go1.16.txt

    pkg syscall (darwin-arm64), method (*Iovec) SetLen(int)
    pkg syscall (darwin-arm64), method (*Msghdr) SetControllen(int)
    pkg syscall (darwin-arm64), type BpfHdr struct
    pkg syscall (darwin-arm64), type BpfHdr struct, Caplen uint32
    pkg syscall (darwin-arm64), type BpfHdr struct, Datalen uint32
    pkg syscall (darwin-arm64), type BpfHdr struct, Hdrlen uint16
    pkg syscall (darwin-arm64), type BpfHdr struct, Pad_cgo_0 [2]uint8
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Dec 02 16:30:41 GMT 2022
    - 479.2K bytes
    - Viewed (0)
  10. api/go1.14.txt

    pkg syscall (freebsd-arm64), method (*Iovec) SetLen(int)
    pkg syscall (freebsd-arm64), method (*Msghdr) SetControllen(int)
    pkg syscall (freebsd-arm64), type BpfHdr struct
    pkg syscall (freebsd-arm64), type BpfHdr struct, Caplen uint32
    pkg syscall (freebsd-arm64), type BpfHdr struct, Datalen uint32
    pkg syscall (freebsd-arm64), type BpfHdr struct, Hdrlen uint16
    pkg syscall (freebsd-arm64), type BpfHdr struct, Pad_cgo_0 [6]uint8
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 508.9K bytes
    - Viewed (0)
Back to top