Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 108 for 8192 (0.04 sec)

  1. src/runtime/asm_arm.s

    	DISPATCH(runtime·call256, 256)
    	DISPATCH(runtime·call512, 512)
    	DISPATCH(runtime·call1024, 1024)
    	DISPATCH(runtime·call2048, 2048)
    	DISPATCH(runtime·call4096, 4096)
    	DISPATCH(runtime·call8192, 8192)
    	DISPATCH(runtime·call16384, 16384)
    	DISPATCH(runtime·call32768, 32768)
    	DISPATCH(runtime·call65536, 65536)
    	DISPATCH(runtime·call131072, 131072)
    	DISPATCH(runtime·call262144, 262144)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 23 21:00:52 UTC 2024
    - 32.1K bytes
    - Viewed (0)
  2. src/encoding/gob/gobencdec_test.go

    type ByteStruct struct {
    	a byte // not an exported field
    }
    
    type StringStruct struct {
    	s string // not an exported field
    }
    
    type ArrayStruct struct {
    	a [8192]byte // not an exported field
    }
    
    type Gobber int
    
    type ValueGobber string // encodes with a value, decodes with a pointer.
    
    type BinaryGobber int
    
    type BinaryValueGobber string
    
    type TextGobber int
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 01 14:26:13 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  3. src/runtime/asm_386.s

    	DISPATCH(runtime·call256, 256)
    	DISPATCH(runtime·call512, 512)
    	DISPATCH(runtime·call1024, 1024)
    	DISPATCH(runtime·call2048, 2048)
    	DISPATCH(runtime·call4096, 4096)
    	DISPATCH(runtime·call8192, 8192)
    	DISPATCH(runtime·call16384, 16384)
    	DISPATCH(runtime·call32768, 32768)
    	DISPATCH(runtime·call65536, 65536)
    	DISPATCH(runtime·call131072, 131072)
    	DISPATCH(runtime·call262144, 262144)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 15:45:13 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/crypto/cryptobyte/asn1.go

    		// We don't want different behavior based on the architecture.
    		if ret >= 1<<(31-7) {
    			return false
    		}
    		ret <<= 7
    		b := s.read(1)[0]
    
    		// ITU-T X.690, section 8.19.2:
    		// The subidentifier shall be encoded in the fewest possible octets,
    		// that is, the leading octet of the subidentifier shall not have the value 0x80.
    		if i == 0 && b == 0x80 {
    			return false
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/internal/http2/HttpOverHttp2Test.kt

        assertThat(response1.body.contentLength()).isEqualTo(
          Http2Connection.OKHTTP_CLIENT_WINDOW_SIZE.toLong(),
        )
        val read = response1.body.source().read(ByteArray(8192))
        assertThat(read).isEqualTo(8192)
    
        // Make a second call that should transmit the response headers. The response body won't be
        // transmitted until the flow-control window is updated from the first request.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  6. src/io/io.go

    	return len(p), nil
    }
    
    func (discard) WriteString(s string) (int, error) {
    	return len(s), nil
    }
    
    var blackHolePool = sync.Pool{
    	New: func() any {
    		b := make([]byte, 8192)
    		return &b
    	},
    }
    
    func (discard) ReadFrom(r Reader) (n int64, err error) {
    	bufp := blackHolePool.Get().(*[]byte)
    	readSize := 0
    	for {
    		readSize, err = r.Read(*bufp)
    		n += int64(readSize)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:34:10 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  7. guava/src/com/google/common/io/ByteStreams.java

     * @author Chris Nokleberg
     * @author Colin Decker
     * @since 1.0
     */
    @J2ktIncompatible
    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    public final class ByteStreams {
    
      private static final int BUFFER_SIZE = 8192;
    
      /** Creates a new byte array for buffering reads or writes. */
      static byte[] createBuffer() {
        return new byte[BUFFER_SIZE];
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jan 17 18:59:58 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/io/ByteStreams.java

     * @author Chris Nokleberg
     * @author Colin Decker
     * @since 1.0
     */
    @J2ktIncompatible
    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    public final class ByteStreams {
    
      private static final int BUFFER_SIZE = 8192;
    
      /** Creates a new byte array for buffering reads or writes. */
      static byte[] createBuffer() {
        return new byte[BUFFER_SIZE];
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jan 17 18:59:58 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  9. src/hash/crc32/crc32_table_ppc64le.s

    DATA ·IEEEConst+3928(SB)/8,$0x00000000bdf081c4
    
    	/* x^9280 mod p(x), x^9216 mod p(x) */
    DATA ·IEEEConst+3936(SB)/8,$0x0000000156335214
    DATA ·IEEEConst+3944(SB)/8,$0x000000016286d6b0
    
    	/* x^8256 mod p(x), x^8192 mod p(x) */
    DATA ·IEEEConst+3952(SB)/8,$0x00000001d70e3986
    DATA ·IEEEConst+3960(SB)/8,$0x00000000c84f001c
    
    	/* x^7232 mod p(x), x^7168 mod p(x) */
    DATA ·IEEEConst+3968(SB)/8,$0x000000003701a774
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 19 20:44:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/EventListenerTest.kt

            override fun contentType() = "text/plain".toMediaType()
    
            override fun writeTo(sink: BufferedSink) {
              sink.write(ByteArray(8192))
              sink.flush()
            }
          }
        requestBodySuccess(requestBody, CoreMatchers.equalTo(8192L), CoreMatchers.equalTo(19L))
      }
    
      @Test
      fun requestBodySuccessEmpty() {
        requestBodySuccess(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 56.9K bytes
    - Viewed (0)
Back to top