Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 27 of 27 for Sentry (0.17 sec)

  1. src/bufio/scan_test.go

    	}
    }
    
    // Test that an EOF is overridden by a user-generated scan error.
    func TestErrAtEOF(t *testing.T) {
    	s := NewScanner(strings.NewReader("1 2 33"))
    	// This splitter will fail on last entry, after s.err==EOF.
    	split := func(data []byte, atEOF bool) (advance int, token []byte, err error) {
    		advance, token, err = ScanWords(data, atEOF)
    		if len(token) > 1 {
    			if s.ErrOrEOF() != io.EOF {
    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)
  2. api/go1.10.txt

    pkg debug/elf, const R_PPC64_DTPREL16_HIGH R_PPC64
    pkg debug/elf, const R_PPC64_DTPREL16_HIGHA = 115
    pkg debug/elf, const R_PPC64_DTPREL16_HIGHA R_PPC64
    pkg debug/elf, const R_PPC64_ENTRY = 118
    pkg debug/elf, const R_PPC64_ENTRY R_PPC64
    pkg debug/elf, const R_PPC64_IRELATIVE = 248
    pkg debug/elf, const R_PPC64_IRELATIVE R_PPC64
    pkg debug/elf, const R_PPC64_JMP_IREL = 247
    pkg debug/elf, const R_PPC64_JMP_IREL R_PPC64
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Tue Feb 06 05:00:01 GMT 2018
    - 30.1K bytes
    - Viewed (0)
  3. doc/go_mem.html

    sending an item acquires the semaphore, and receiving an item releases
    the semaphore.
    This is a common idiom for limiting concurrency.
    </p>
    
    <p>
    This program starts a goroutine for every entry in the work list, but the
    goroutines coordinate using the <code>limit</code> channel to ensure
    that at most three are running work functions at a time.
    </p>
    
    <pre>
    var limit = make(chan int, 3)
    
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Mon Mar 04 15:54:42 GMT 2024
    - 26.6K bytes
    - Viewed (0)
  4. api/go1.11.txt

    pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_EXPORT ideal-int
    pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_GLOBALPTR = 8
    pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_GLOBALPTR ideal-int
    pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_IAT = 12
    pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_IAT ideal-int
    pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_IMPORT = 1
    pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_IMPORT ideal-int
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Wed Aug 22 03:48:56 GMT 2018
    - 25K bytes
    - Viewed (2)
  5. api/go1.7.txt

    pkg crypto/x509, func SystemCertPool() (*CertPool, error)
    pkg crypto/x509, type SystemRootsError struct, Err error
    pkg debug/dwarf, method (*Data) Ranges(*Entry) ([][2]uint64, error)
    pkg debug/dwarf, method (*Reader) SeekPC(uint64) (*Entry, error)
    pkg debug/elf, const R_390_12 = 2
    pkg debug/elf, const R_390_12 R_390
    pkg debug/elf, const R_390_16 = 3
    pkg debug/elf, const R_390_16 R_390
    pkg debug/elf, const R_390_20 = 57
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Tue Jun 28 15:08:11 GMT 2016
    - 13.6K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/asm.go

    		return
    	}
    
    	// The addresses must not overlap. Easiest test: require monotonicity.
    	if lastAddr, ok := p.dataAddr[name]; ok && nameAddr.Offset < lastAddr {
    		p.errorf("overlapping DATA entry for %s", name)
    		return
    	}
    	p.dataAddr[name] = nameAddr.Offset + int64(sz)
    
    	switch valueAddr.Type {
    	case obj.TYPE_CONST:
    		switch sz {
    		case 1, 2, 4, 8:
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Feb 21 14:34:57 GMT 2024
    - 25.3K bytes
    - Viewed (0)
  7. api/go1.2.txt

    pkg syscall (windows-386), const PFL_NETWORKDIRECT_PROVIDER = 16
    pkg syscall (windows-386), const PFL_NETWORKDIRECT_PROVIDER ideal-int
    pkg syscall (windows-386), const PFL_RECOMMENDED_PROTO_ENTRY = 2
    pkg syscall (windows-386), const PFL_RECOMMENDED_PROTO_ENTRY ideal-int
    pkg syscall (windows-386), const PROCESS_TERMINATE = 1
    pkg syscall (windows-386), const PROCESS_TERMINATE ideal-int
    pkg syscall (windows-386), const WSAEACCES = 10013
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Oct 18 04:36:59 GMT 2013
    - 1.9M bytes
    - Viewed (2)
Back to top