Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 5,260 for chunck (0.11 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/driver/fetch.go

    		if end > len(sources) {
    			end = len(sources)
    		}
    		chunkP, chunkMsrc, chunkSave, chunkCount, chunkErr := concurrentGrab(sources[start:end], fetch, obj, ui, tr)
    		switch {
    		case chunkErr != nil:
    			return nil, nil, false, 0, chunkErr
    		case chunkP == nil:
    			continue
    		case p == nil:
    			p, msrc, save, count = chunkP, chunkMsrc, chunkSave, chunkCount
    		default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. src/internal/zstd/zstd.go

    		r.blockOffset += int64(size)
    		return nil
    	}
    
    	var skip []byte
    	const chunk = 1 << 20 // 1M
    	for size >= chunk {
    		if len(skip) == 0 {
    			skip = make([]byte, chunk)
    		}
    		if _, err := io.ReadFull(r.r, skip); err != nil {
    			return r.wrapNonEOFError(relativeOffset, err)
    		}
    		relativeOffset += chunk
    		size -= chunk
    	}
    	if size > 0 {
    		if len(skip) == 0 {
    			skip = make([]byte, size)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 04:10:45 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  3. src/image/png/testdata/pngsuite/README.original

    images, available for developers of PNG supporting software. The 
    complete set, available at http:/www.schaik.com/pngsuite/, contains 
    a variety of images to test interlacing, gamma settings, ancillary
    chunks, etc.
    
    The images in this directory represent the basic PNG color-types:
    grayscale (1-16 bit deep), full color (8 or 16 bit), paletted
    (1-8 bit) and grayscale or color images with alpha channel. You
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 2.7K bytes
    - Viewed (0)
  4. subprojects/build-events/src/integTest/groovy/org/gradle/build/event/BuildEventsParallelIntegrationTest.groovy

            server.expect("handle:b")
            server.expect("serviceClosed")
    
            def build = executer.withTasks("b").start()
    
            handleA.waitForAllPendingCalls()
            // Increase the chance of the test to detect a broken implementation that doesn't wait for events to be processed before closing the service.
            sleep(1000)
            handleA.releaseAll()
    
            result = build.waitForFinish()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/main/java/org/gradle/util/GUtil.java

            while (matcher.find()) {
                String chunk = string.subSequence(pos, matcher.start()).toString();
                pos = matcher.end();
                if (chunk.isEmpty()) {
                    continue;
                }
                if (lower && first) {
                    chunk = StringUtils.uncapitalize(chunk);
                    first = false;
                } else {
                    chunk = StringUtils.capitalize(chunk);
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/etcd3/testserver/test_server.go

    		l, err := net.Listen("tcp", ":0")
    		if err != nil {
    			return nil, fmt.Errorf("could not bind to a port: %v", err)
    		}
    		// It is possible but unlikely that someone else will bind this port before we get a chance to use it.
    		defer l.Close()
    		ports = append(ports, l.Addr().(*net.TCPAddr).Port)
    	}
    	return ports, nil
    }
    
    // NewTestConfig returns a configuration for an embedded etcd server.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 06 11:40:40 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/hash/Hasher.java

     * mind that when dealing with char sequences, the encoded form of two concatenated char sequences
     * is not equivalent to the concatenation of their encoded form. Therefore, {@link
     * #putString(CharSequence, Charset)} should only be used consistently with <i>complete</i>
     * sequences and not broken into chunks.
     *
     * @author Kevin Bourrillion
     * @since 11.0
     */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jun 15 20:59:00 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  8. src/net/http/cgi/host_test.go

    }
    
    func chunk(s string) string {
    	return fmt.Sprintf("%x\r\n%s\r\n", len(s), s)
    }
    
    // The CGI spec doesn't allow chunked requests.
    func TestCGIPostChunked(t *testing.T) {
    	testenv.MustHaveExec(t)
    	postReq := `POST /test.cgi?a=b HTTP/1.1
    Host: example.com
    Content-Type: application/x-www-form-urlencoded
    Transfer-Encoding: chunked
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 18:29:59 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. .github/DISCUSSION_TEMPLATE/questions.yml

      - type: checkboxes
        id: checks
        attributes:
          label: First Check
          description: Please confirm and check all the following options.
          options:
            - label: I added a very descriptive title here.
              required: true
            - label: I used the GitHub search to find a similar question and didn't find it.
              required: true
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Aug 03 15:59:41 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/streaming/streaming.go

    }
    
    type decoder struct {
    	reader    io.ReadCloser
    	decoder   runtime.Decoder
    	buf       []byte
    	maxBytes  int
    	resetRead bool
    }
    
    // NewDecoder creates a streaming decoder that reads object chunks from r and decodes them with d.
    // The reader is expected to return ErrShortRead if the provided buffer is not large enough to read
    // an entire object.
    func NewDecoder(r io.ReadCloser, d runtime.Decoder) Decoder {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 25 14:51:36 UTC 2023
    - 3.7K bytes
    - Viewed (0)
Back to top