Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 120 for chunkOf (0.15 sec)

  1. src/cmd/go/internal/modindex/build.go

    	srcdir = filepath.ToSlash(srcdir)
    
    	chunks := strings.Split(str, "${SRCDIR}")
    	if len(chunks) < 2 {
    		return str, safeCgoName(str)
    	}
    	ok := true
    	for _, chunk := range chunks {
    		ok = ok && (chunk == "" || safeCgoName(chunk))
    	}
    	ok = ok && (srcdir == "" || safeCgoName(srcdir))
    	res := strings.Join(chunks, srcdir)
    	return res, ok && res != ""
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 17:39:23 UTC 2023
    - 26.8K bytes
    - Viewed (0)
  2. src/runtime/mgcscavenge_test.go

    	//
    	// Tests are then organized into test cases which mark some pages as
    	// scavenge-able then try to find them. Tests expect that the initial
    	// state of the scavengeIndex has all of the chunks as dense in the last
    	// generation and empty to the scavenger.
    	//
    	// There are a few additional tests that interleave mark and find operations,
    	// so they're defined separately, but use the same infrastructure.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencyDownloadBuildOperationsIntegrationTest.groovy

        def buildOperations = new BuildOperationsFixture(executer, temporaryFolder)
    
        def "emits events for dependency resolution downloads - chunked: #chunked"() {
            given:
            def m = mavenHttpRepo.module("org.utils", "impl", '1.3')
                .allowAll()
                .publish()
    
            buildFile << """
                repositories {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jan 14 00:59:27 UTC 2024
    - 13K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbCopyUtil.java

                                wsize = byteLimit;
                            }
    
                            int chunks = (int) ( wsize / maxChunkSize );
                            int lastChunkSize;
                            if ( chunks + 1 > maxChunks ) {
                                chunks = maxChunks;
                                lastChunkSize = maxChunkSize;
                            }
                            else {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 10:52:42 UTC 2020
    - 17.1K bytes
    - Viewed (0)
  5. cluster/addons/fluentd-gcp/fluentd-gcp-configmap-old.yaml

          buffer_queue_full_action block
          # Set the chunk limit conservatively to avoid exceeding the recommended
          # chunk size of 5MB per write request.
          buffer_chunk_limit 1M
          # Cap the combined memory usage of this buffer and the one below to
          # 1MiB/chunk * (6 + 2) chunks = 8 MiB
          buffer_queue_limit 6
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 26 07:09:07 UTC 2018
    - 16.3K bytes
    - Viewed (0)
  6. src/runtime/mpallocbits.go

    // whether or not a given page is scavenged in a single
    // structure. It's effectively a pallocBits with
    // additional functionality.
    //
    // Update the comment on (*pageAlloc).chunks should this
    // structure change.
    type pallocData struct {
    	pallocBits
    	scavenged pageBits
    }
    
    // allocRange sets bits [i, i+n) in the bitmap to 1 and
    // updates the scavenged bits appropriately.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 15:13:43 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  7. cluster/addons/fluentd-gcp/fluentd-gcp-configmap.yaml

          buffer_queue_full_action block
          # Set the chunk limit conservatively to avoid exceeding the recommended
          # chunk size of 5MB per write request.
          buffer_chunk_limit 512k
          # Cap the combined memory usage of this buffer and the one below to
          # 512KiB/chunk * (6 + 2) chunks = 4 MiB
          buffer_queue_limit 6
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 26 07:09:07 UTC 2018
    - 18.3K bytes
    - Viewed (0)
  8. cmd/handler-utils.go

    			// to a custom value for example: "aws-chunked,gzip".
    			metadata[strings.ToLower(xhttp.ContentEncoding)] = contentEncoding
    		} else {
    			// Trimmed content encoding is empty when the header
    			// value is set to "aws-chunked" only.
    
    			// Make sure to delete the content-encoding parameter
    			// for a streaming signature which is set to value
    			// for example: "aws-chunked"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  9. src/net/http/response.go

    				r.Body,
    			}
    		}
    	}
    	// If we're sending a non-chunked HTTP/1.1 response without a
    	// content-length, the only way to do that is the old HTTP/1.0
    	// way, by noting the EOF with a connection close, so we need
    	// to set Close.
    	if r1.ContentLength == -1 && !r1.Close && r1.ProtoAtLeast(1, 1) && !chunked(r1.TransferEncoding) && !r1.Uncompressed {
    		r1.Close = true
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/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: Wed May 29 06:47:40 UTC 2024
    - 19.3K bytes
    - Viewed (0)
Back to top