Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Request (0.17 sec)

  1. src/bufio/scan.go

    		return i + 1, dropCR(data[0:i]), nil
    	}
    	// If we're at EOF, we have a final, non-terminated line. Return it.
    	if atEOF {
    		return len(data), dropCR(data), nil
    	}
    	// Request more data.
    	return 0, nil, nil
    }
    
    // isSpace reports whether the character is a Unicode white space character.
    // We avoid dependency on the unicode package, but check validity of the implementation
    // in the tests.
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Oct 23 09:06:30 GMT 2023
    - 14.2K bytes
    - Viewed (0)
  2. src/cmd/cgo/doc.go

    cgo_dynamic_linker directives to learn that the otherwise undefined
    reference to sin in foo.cgo2.o should be rewritten to refer to the
    symbol sin with version GLIBC_2.2.5 from the dynamic library
    "libm.so.6", and the binary should request "/lib/ld-linux.so.2" as its
    runtime dynamic linker.
    
    In external mode, cmd/link does not process any host object files, in
    particular foo.cgo2.o. It links together the gc-generated object
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Sun Mar 31 09:02:45 GMT 2024
    - 42.1K bytes
    - Viewed (0)
Back to top