Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for replay (0.21 sec)

  1. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const DLT_FLEXRAY ideal-int
    pkg syscall (netbsd-arm64-cgo), const DLT_FRELAY = 107
    pkg syscall (netbsd-arm64-cgo), const DLT_FRELAY ideal-int
    pkg syscall (netbsd-arm64-cgo), const DLT_FRELAY_WITH_DIR = 206
    pkg syscall (netbsd-arm64-cgo), const DLT_FRELAY_WITH_DIR ideal-int
    pkg syscall (netbsd-arm64-cgo), const DLT_GCOM_SERIAL = 173
    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)
  2. src/cmd/cgo/doc.go

    	jobjectArray
    	jweak
    
    3. The EGLDisplay and EGLConfig types from the EGL API.
    
    These types are uintptr on the Go side because they would otherwise
    confuse the Go garbage collector; they are sometimes not really
    pointers but data structures encoded in a pointer type. All operations
    on these types must happen in C. The proper constant to initialize an
    empty such reference is 0, not nil.
    
    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)
  3. src/archive/tar/strconv.go

    	// recorded elsewhere (e.g., via PAX record) contains no trailing slash.
    	if len(s) > len(b) && b[len(b)-1] == '/' {
    		n := len(strings.TrimRight(s[:len(b)-1], "/"))
    		b[n] = 0 // Replace trailing slash with NUL terminator
    	}
    }
    
    // fitsInBase256 reports whether x can be encoded into n bytes using base-256
    // encoding. Unlike octal encoding, base-256 encoding does not require that the
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Aug 01 14:28:42 GMT 2023
    - 9K bytes
    - Viewed (0)
  4. src/archive/zip/writer_test.go

    func TestWriterComment(t *testing.T) {
    	var tests = []struct {
    		comment string
    		ok      bool
    	}{
    		{"hi, hello", true},
    		{"hi, こんにちわ", true},
    		{strings.Repeat("a", uint16max), true},
    		{strings.Repeat("a", uint16max+1), false},
    	}
    
    	for _, test := range tests {
    		// write a zip file
    		buf := new(bytes.Buffer)
    		w := NewWriter(buf)
    		if err := w.SetComment(test.comment); err != nil {
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Sep 15 19:04:06 GMT 2023
    - 14.1K bytes
    - Viewed (0)
  5. src/archive/tar/reader_test.go

    		inputHdrs: map[string]string{paxGNUSparseMajor: "1", paxGNUSparseMinor: "0"},
    		wantErr:   ErrHeader,
    	}, {
    		inputData: padInput(strings.Repeat("0", 300) + "1\n" + strings.Repeat("0", 1000) + "5\n" + strings.Repeat("0", 800) + "2\n"),
    		inputHdrs: map[string]string{paxGNUSparseMajor: "1", paxGNUSparseMinor: "0"},
    		wantMap:   sparseDatas{{5, 2}},
    	}, {
    		inputData: padInput("2\n10737418240\n512\n21474836480\n512\n"),
    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)
  6. src/cmd/cgo/internal/test/issue1435.go

    		for _, line := range lines {
    			// Different kernel vintages pad differently.
    			line = strings.TrimSpace(line)
    			if strings.HasPrefix(line, "Pid:\t") {
    				// On loaded systems, it is possible
    				// for a TID to be reused really
    				// quickly. As such, we need to
    				// validate that the thread status
    				// info we just read is a task of the
    				// same process PID as we are
    				// currently running, and not a
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Jul 28 21:31:41 GMT 2023
    - 7.5K bytes
    - Viewed (0)
  7. src/cmd/cgo/gcc.go

    			}
    			if r.Name.Kind != "type" {
    				repl = "(" + repl + ")"
    			}
    			f.Edit.Replace(f.offset(old.Pos()), f.offset(old.End()), repl)
    		}
    	}
    
    	// Remove functions only used as expressions, so their respective
    	// bridge functions are not generated.
    	for name, used := range functions {
    		if !used {
    			delete(f.Name, name)
    		}
    	}
    }
    
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  8. api/go1.14.txt

    pkg syscall (freebsd-arm64), const DLT_FLEXRAY ideal-int
    pkg syscall (freebsd-arm64), const DLT_FRELAY = 107
    pkg syscall (freebsd-arm64), const DLT_FRELAY ideal-int
    pkg syscall (freebsd-arm64), const DLT_FRELAY_WITH_DIR = 206
    pkg syscall (freebsd-arm64), const DLT_FRELAY_WITH_DIR ideal-int
    pkg syscall (freebsd-arm64), const DLT_GCOM_SERIAL = 173
    pkg syscall (freebsd-arm64), const DLT_GCOM_SERIAL ideal-int
    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)
  9. api/go1.txt

    pkg bytes, func NewBuffer([]uint8) *Buffer
    pkg bytes, func NewBufferString(string) *Buffer
    pkg bytes, func NewReader([]uint8) *Reader
    pkg bytes, func Repeat([]uint8, int) []uint8
    pkg bytes, func Replace([]uint8, []uint8, []uint8, int) []uint8
    pkg bytes, func Runes([]uint8) []int32
    pkg bytes, func Split([]uint8, []uint8) [][]uint8
    pkg bytes, func SplitAfter([]uint8, []uint8) [][]uint8
    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)
  10. api/go1.16.txt

    pkg syscall (darwin-arm64), const IFT_FAITH ideal-int
    pkg syscall (darwin-arm64), const IFT_FDDI = 15
    pkg syscall (darwin-arm64), const IFT_FDDI ideal-int
    pkg syscall (darwin-arm64), const IFT_FRELAY = 32
    pkg syscall (darwin-arm64), const IFT_FRELAY ideal-int
    pkg syscall (darwin-arm64), const IFT_FRELAYDCE = 44
    pkg syscall (darwin-arm64), const IFT_FRELAYDCE ideal-int
    pkg syscall (darwin-arm64), const IFT_GIF = 55
    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)
Back to top