Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 192 for nobytes (0.13 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/syscall_netbsd.go

    //sys	ExtattrSetFile(file string, attrnamespace int, attrname string, data uintptr, nbytes int) (ret int, err error)
    //sys	ExtattrDeleteFile(file string, attrnamespace int, attrname string) (err error)
    //sys	ExtattrListFile(file string, attrnamespace int, data uintptr, nbytes int) (ret int, err error)
    //sys	ExtattrGetLink(link string, attrnamespace int, attrname string, data uintptr, nbytes int) (ret int, err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  2. internal/s3select/sql/value.go

    func (v Value) bytesToInt() (int64, bool) {
    	bytes, _ := v.ToBytes()
    	i, err := strconv.ParseInt(strings.TrimSpace(string(bytes)), 10, 64)
    	return i, err == nil
    }
    
    // Converts untyped value into float. The bool return implies success
    // - it returns false only if there is a conversion failure.
    func (v Value) bytesToFloat() (float64, bool) {
    	bytes, _ := v.ToBytes()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Feb 25 20:31:19 UTC 2022
    - 20.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/release/notes.md

    For Java, Groovy, Kotlin, and Android compatibility, see the [full compatibility notes](userguide/compatibility.html).   
    
    ## New features and usability improvements
    
    <!-- Do not add breaking changes or deprecations here! Add them to the upgrade guide instead. -->
    
    <!--
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 07:16:40 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. manifests/charts/ztunnel/templates/NOTES.txt

    Lin Sun <******@****.***> 1713406182 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 02:09:42 UTC 2024
    - 200 bytes
    - Viewed (0)
  5. manifests/charts/istiod-remote/NOTES.txt

    Frank Budinsky <******@****.***> 1626108261 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 12 16:44:21 UTC 2021
    - 267 bytes
    - Viewed (0)
  6. src/encoding/gob/decoder.go

    	// Read a count.
    	nbytes, _, err := decodeUintReader(dec.r, dec.countBuf)
    	if err != nil {
    		dec.err = err
    		return false
    	}
    	if nbytes >= tooBig {
    		dec.err = errBadCount
    		return false
    	}
    	dec.readMessage(int(nbytes))
    	return dec.err == nil
    }
    
    // readMessage reads the next nbytes bytes from the input.
    func (dec *Decoder) readMessage(nbytes int) {
    	if dec.buf.Len() != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/primitives/Bytes.java

    /**
     * Static utility methods pertaining to {@code byte} primitives, that are not already found in
     * either {@link Byte} or {@link Arrays}, <i>and interpret bytes as neither signed nor unsigned</i>.
     * The methods which specifically treat bytes as signed or unsigned are found in {@link SignedBytes}
     * and {@link UnsignedBytes}.
     *
     * <p>See the Guava User Guide article on <a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  8. manifests/charts/istio-cni/templates/NOTES.txt

    zirain <******@****.***> 1713320861 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 02:27:41 UTC 2024
    - 214 bytes
    - Viewed (0)
  9. src/net/http/transfer_test.go

    	bufferType := reflect.TypeFor[*bytes.Buffer]()
    
    	nBytes := int64(1 << 10)
    	newFileFunc := func() (r io.Reader, done func(), err error) {
    		f, err := os.CreateTemp("", "net-http-newfilefunc")
    		if err != nil {
    			return nil, nil, err
    		}
    
    		// Write some bytes to the file to enable reading.
    		if _, err := io.CopyN(f, rand.Reader, nBytes); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 23:16:28 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/printf.go

    func (s *formatState) parseIndex() bool {
    	if s.nbytes == len(s.format) || s.format[s.nbytes] != '[' {
    		return true
    	}
    	// Argument index present.
    	s.nbytes++ // skip '['
    	start := s.nbytes
    	s.scanNum()
    	ok := true
    	if s.nbytes == len(s.format) || s.nbytes == start || s.format[s.nbytes] != ']' {
    		ok = false // syntax error is either missing "]" or invalid index.
    		s.nbytes = strings.Index(s.format[start:], "]")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 32.5K bytes
    - Viewed (0)
Back to top