Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for Dover (0.18 sec)

  1. src/bufio/bufio_test.go

    	w.buf = append(w.buf, b...)
    	w.readFromBytes += len(b)
    	return int64(len(b)), err
    }
    
    // Test that calling (*Writer).ReadFrom with a partially-filled buffer
    // fills the buffer before switching over to ReadFrom.
    func TestWriterReadFromWithBufferedData(t *testing.T) {
    	const bufsize = 16
    
    	input := createTestInput(64)
    	rfw := &readFromWriter{}
    	w := NewWriterSize(rfw, bufsize)
    
    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)
  2. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const DLT_AOS = 222
    pkg syscall (netbsd-arm64-cgo), const DLT_AOS ideal-int
    pkg syscall (netbsd-arm64-cgo), const DLT_APPLE_IP_OVER_IEEE1394 = 138
    pkg syscall (netbsd-arm64-cgo), const DLT_APPLE_IP_OVER_IEEE1394 ideal-int
    pkg syscall (netbsd-arm64-cgo), const DLT_ARCNET = 7
    pkg syscall (netbsd-arm64-cgo), const DLT_ARCNET ideal-int
    pkg syscall (netbsd-arm64-cgo), const DLT_ARCNET_LINUX = 129
    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)
  3. doc/go1.17_spec.html

    iteration values from 0 up to <code>len(a)-1</code> and does not index into the array
    or slice itself. For a <code>nil</code> slice, the number of iterations is 0.
    </li>
    
    <li>
    For a string value, the "range" clause iterates over the Unicode code points
    in the string starting at byte index 0.  On successive iterations, the index value will be the
    index of the first byte of successive UTF-8-encoded code points in the string,
    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)
  4. src/archive/tar/common.go

    // Package tar implements access to tar archives.
    //
    // Tape archives (tar) are a file format for storing a sequence of files that
    // can be read and written in a streaming manner.
    // This package aims to cover most variations of the format,
    // including those produced by GNU and BSD tar tools.
    package tar
    
    import (
    	"errors"
    	"fmt"
    	"internal/godebug"
    	"io/fs"
    	"math"
    	"path"
    	"reflect"
    	"strconv"
    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)
  5. src/cmd/cgo/gcc.go

    	}
    	// disable LTO so we get an object whose symbols we can read
    	c = append(c, "-fno-lto")
    	c = append(c, "-") //read input from standard input
    	return c
    }
    
    // gccDebug runs gcc -gdwarf-2 over the C program stdin and
    // returns the corresponding DWARF data and, if present, debug data block.
    func (p *Package) gccDebug(stdin []byte, nnames int) (d *dwarf.Data, ints []int64, floats []float64, strs []string) {
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/testdata/arm.s

    // the old assembler's (5a's) grammar and hand-writing complete
    // instructions for each rule, to guarantee we cover the same space.
    
    #include "../../../../../runtime/textflag.h"
    
    TEXT	foo(SB), DUPOK|NOSPLIT, $0
    
    // ADD
    //
    //	LTYPE1 cond imsr ',' spreg ',' reg
    //	{
    //		outcode($1, $2, &$3, $5, &$7);
    //	}
    // Cover some operand space here too.
    	ADD	$1, R2, R3
    	ADD	R1<<R2, R3, R4
    	ADD	R1>>R2, R3, R4
    	ADD	R1@>R2, R3, R4
    Others
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Dec 15 20:51:01 GMT 2023
    - 69K bytes
    - Viewed (0)
  7. api/go1.14.txt

    pkg syscall (freebsd-arm64), const DLT_AOS = 222
    pkg syscall (freebsd-arm64), const DLT_AOS ideal-int
    pkg syscall (freebsd-arm64), const DLT_APPLE_IP_OVER_IEEE1394 = 138
    pkg syscall (freebsd-arm64), const DLT_APPLE_IP_OVER_IEEE1394 ideal-int
    pkg syscall (freebsd-arm64), const DLT_ARCNET = 7
    pkg syscall (freebsd-arm64), const DLT_ARCNET ideal-int
    pkg syscall (freebsd-arm64), const DLT_ARCNET_LINUX = 129
    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)
  8. src/cmd/asm/internal/asm/testdata/arm64.s

    // license that can be found in the LICENSE file.
    
    // This input was created by taking the instruction productions in
    // the old assembler's (7a's) grammar and hand-writing complete
    // instructions for each rule, to guarantee we cover the same space.
    
    #include "../../../../../runtime/textflag.h"
    
    TEXT	foo(SB), DUPOK|NOSPLIT, $-8
    
    // arithmetic operations
    	ADDW	$1, R2, R3
    	ADDW	R1, R2, R3
    	ADDW	R1, ZR, R3
    	ADD	$1, R2, R3
    	ADD	R1, R2, R3
    Others
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Dec 08 03:28:17 GMT 2023
    - 94.9K bytes
    - Viewed (0)
  9. api/go1.16.txt

    pkg syscall (darwin-arm64), const CTL_NET = 4
    pkg syscall (darwin-arm64), const CTL_NET ideal-int
    pkg syscall (darwin-arm64), const DLT_APPLE_IP_OVER_IEEE1394 = 138
    pkg syscall (darwin-arm64), const DLT_APPLE_IP_OVER_IEEE1394 ideal-int
    pkg syscall (darwin-arm64), const DLT_ARCNET = 7
    pkg syscall (darwin-arm64), const DLT_ARCNET ideal-int
    pkg syscall (darwin-arm64), const DLT_ATM_CLIP = 19
    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.txt

    pkg image/color, var RGBA64Model Model
    pkg image/color, var RGBAModel Model
    pkg image/color, var Transparent Alpha16
    pkg image/color, var White Gray16
    pkg image/color, var YCbCrModel Model
    pkg image/draw, const Over Op
    pkg image/draw, const Src Op
    pkg image/draw, func Draw(Image, image.Rectangle, image.Image, image.Point, Op)
    pkg image/draw, func DrawMask(Image, image.Rectangle, image.Image, image.Point, image.Image, image.Point, Op)
    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)
Back to top