Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 3,717 for chunck (0.26 sec)

  1. src/vendor/golang.org/x/crypto/internal/poly1305/sum_generic.go

    	a.hi = a.hi >> 2
    	return a
    }
    
    // updateGeneric absorbs msg into the state.h accumulator. For each chunk m of
    // 128 bits of message, it computes
    //
    //	h₊ = (h + m) * r  mod  2¹³⁰ - 5
    //
    // If the msg length is not a multiple of TagSize, it assumes the last
    // incomplete chunk is the final one.
    func updateGeneric(state *macState, msg []byte) {
    	h0, h1, h2 := state.h[0], state.h[1], state.h[2]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/build-organization/multi-project-with-convention-plugins/tests/check.sample.conf

    commands: [{
        executable: gradle
        args: check
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 55 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/build-organization/sharing-convention-plugins-with-build-logic/tests/check.sample.conf

    commands: [{
        executable: gradle
        args: check
    }, {
        executable: gradle
        args: greet -q
        expected-output-file: greet.out
    }, {
        executable: gradle
        args: run -q
        expected-output-file: run.out
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 217 bytes
    - Viewed (0)
  4. src/net/http/internal/chunked_test.go

    	chunk := []byte("1;")
    	for i := 0; i < 100; i++ {
    		chunk = append(chunk, 'a') // chunk extension
    	}
    	chunk = append(chunk, "\r\nX\r\n"...)
    	const bodylen = 1 << 20
    	r := NewChunkedReader(&funcReader{f: func(i int) ([]byte, error) {
    		if i < bodylen {
    			return chunk, nil
    		}
    		return []byte("0\r\n"), nil
    	}})
    	_, err := io.ReadAll(r)
    	if err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 04 20:45:19 UTC 2024
    - 8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/build-organization/cross-project-output-sharing/tests/check.out

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 133 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/build-organization/gradle-plugin/tests/check.out

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 530 bytes
    - Viewed (0)
  7. src/encoding/base32/base32_test.go

    			{"MZXW", "6YTB"},
    			{"MZXW", "6Y", "TB"},
    		}, nil},
    	}
    
    	for _, testcase := range testcases {
    		for _, chunks := range testcase.chunkCombinations {
    			pr, pw := io.Pipe()
    
    			// Write the encoded chunks into the pipe
    			go func() {
    				for _, chunk := range chunks {
    					pw.Write([]byte(chunk))
    				}
    				pw.Close()
    			}()
    
    			decoder := NewDecoder(StdEncoding, pr)
    			_, err := io.ReadAll(decoder)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 16:25:54 UTC 2024
    - 26K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/internal/http1/Http1ExchangeCodec.kt

          closed = true
          detachTimeout(timeout)
          state = STATE_READ_RESPONSE_HEADERS
        }
      }
    
      /**
       * An HTTP body with alternating chunk sizes and chunk bodies. It is the caller's responsibility
       * to buffer chunks; typically by using a buffered sink with this sink.
       */
      private inner class ChunkedSink : Sink {
        private val timeout = ForwardingTimeout(sink.timeout())
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/plugins/customPlugin/tests/plugin-check.sample.conf

    commands: [{
        execution-subdirectory: java-gradle-plugin
        executable: gradle
        args: check
    },{
        execution-subdirectory: java-gradle-plugin
        executable: gradle
        args: publish
    },{
        execution-subdirectory: consumer
        executable: gradle
        args: "hello -PproducerName=java-gradle-plugin -q"
        expected-output-file: hello.out
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 349 bytes
    - Viewed (0)
  10. platforms/core-runtime/io/src/test/groovy/org/gradle/internal/io/StreamByteBufferTest.groovy

                position += partsize
                bytesLeft -= partsize
                if (bytesLeft < partsize) {
                    partsize = bytesLeft
                }
            }
        }
    
        def "returns chunk size in range"() {
            given:
            def defaultChunkSize = StreamByteBuffer.DEFAULT_CHUNK_SIZE
            def maxChunkSize = StreamByteBuffer.MAX_CHUNK_SIZE
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 13:06:08 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top