Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 149 for nobytes (0.3 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. manifests/charts/base/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
    - 203 bytes
    - Viewed (0)
  9. manifests/charts/istio-control/istio-discovery/templates/NOTES.txt

    lei-tang <******@****.***> 1715889748 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 20:02:28 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. pkg/test/util/file/file.go

    package file
    
    import (
    	"archive/tar"
    	"bytes"
    	"fmt"
    	"io"
    	"os"
    	"path/filepath"
    	"strings"
    
    	"github.com/mitchellh/go-homedir"
    
    	"istio.io/istio/pkg/test"
    )
    
    // AsBytes is a simple wrapper around os.ReadFile provided for completeness.
    func AsBytes(filename string) ([]byte, error) {
    	return os.ReadFile(filename)
    }
    
    // AsBytesOrFail calls AsBytes and fails the test if any errors occurred.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 17 02:22:22 UTC 2023
    - 4.6K bytes
    - Viewed (0)
Back to top