Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 296 for chunkOf (0.17 sec)

  1. platforms/software/resources/src/main/java/org/gradle/internal/resource/ExternalResourceReadResult.java

         * This is not guaranteed to be the number of bytes <b>transferred</b>.
         * For example, this resource may be content encoded (e.g. compression, fewer bytes transferred).
         * Or, it might be transfer encoded (e.g. HTTP chunked transfer, more bytes transferred).
         * Or, both.
         * Therefore, it is not necessarily an accurate input into transfer rate (a.k.a. throughput) calculations.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. 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)
  3. src/net/http/h2_bundle.go

    		p = p[n:]
    		ntotal += n
    		b.r += n
    		b.size -= n
    		// If the first chunk has been consumed, advance to the next chunk.
    		if b.r == len(b.chunks[0]) {
    			http2putDataBufferChunk(b.chunks[0])
    			end := len(b.chunks) - 1
    			copy(b.chunks[:end], b.chunks[1:])
    			b.chunks[end] = nil
    			b.chunks = b.chunks[:end]
    			b.r = 0
    		}
    	}
    	return ntotal, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  4. src/crypto/sha512/sha512block.go

    	0x6c44198c4a475817,
    }
    
    func blockGeneric(dig *digest, p []byte) {
    	var w [80]uint64
    	h0, h1, h2, h3, h4, h5, h6, h7 := dig.h[0], dig.h[1], dig.h[2], dig.h[3], dig.h[4], dig.h[5], dig.h[6], dig.h[7]
    	for len(p) >= chunk {
    		for i := 0; i < 16; i++ {
    			j := i * 8
    			w[i] = uint64(p[j])<<56 | uint64(p[j+1])<<48 | uint64(p[j+2])<<40 | uint64(p[j+3])<<32 |
    				uint64(p[j+4])<<24 | uint64(p[j+5])<<16 | uint64(p[j+6])<<8 | uint64(p[j+7])
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 21:17:08 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  5. src/crypto/sha256/sha256block.go

    	0xbef9a3f7,
    	0xc67178f2,
    }
    
    func blockGeneric(dig *digest, p []byte) {
    	var w [64]uint32
    	h0, h1, h2, h3, h4, h5, h6, h7 := dig.h[0], dig.h[1], dig.h[2], dig.h[3], dig.h[4], dig.h[5], dig.h[6], dig.h[7]
    	for len(p) >= chunk {
    		// Can interlace the computation of w with the
    		// rounds below if needed for speed.
    		for i := 0; i < 16; i++ {
    			j := i * 4
    			w[i] = uint32(p[j])<<24 | uint32(p[j+1])<<16 | uint32(p[j+2])<<8 | uint32(p[j+3])
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 21:21:42 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  6. tensorflow/cc/saved_model/testdata/generate_chunked_models.py

    # limitations under the License.
    # ==============================================================================
    
    """Generates GraphDef test data for Merger.
    
    Constructs chunked protos test data containing GraphDefs with lots of nodes and
    large nodes for Merger::Read and Merger::Merge.
    """
    
    from collections.abc import Sequence
    
    import os
    
    from absl import app
    from absl import flags
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 21:43:11 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/io/CharSequenceReaderTest.java

        char[] buf = new char[expected.length()];
        assertEquals(expected.length() == 0 ? -1 : expected.length(), reader.read(buf));
        assertEquals(expected, new String(buf));
        assertFullyRead(reader);
    
        // read in chunks to fixed array
        reader = new CharSequenceReader(charSequence);
        buf = new char[5];
        StringBuilder builder = new StringBuilder();
        int read;
        while ((read = reader.read(buf, 0, buf.length)) != -1) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  8. 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)
  9. src/image/png/writer.go

    	}
    	e.writeChunk(e.tmp[:3*len(p)], "PLTE")
    	if last != -1 {
    		e.writeChunk(e.tmp[3*256:3*256+1+last], "tRNS")
    	}
    }
    
    // An encoder is an io.Writer that satisfies writes by writing PNG IDAT chunks,
    // including an 8-byte header and 4-byte CRC checksum per Write call. Such calls
    // should be relatively infrequent, since writeIDATs uses a [bufio.Writer].
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  10. src/strings/strings.go

    			chunkMax = len(s)
    		}
    	}
    
    	var b Builder
    	b.Grow(n)
    	b.WriteString(s)
    	for b.Len() < n {
    		chunk := n - b.Len()
    		if chunk > b.Len() {
    			chunk = b.Len()
    		}
    		if chunk > chunkMax {
    			chunk = chunkMax
    		}
    		b.WriteString(b.String()[:chunk])
    	}
    	return b.String()
    }
    
    // ToUpper returns s with all Unicode letters mapped to their upper case.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:48:16 UTC 2024
    - 31.2K bytes
    - Viewed (0)
Back to top