Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 366 for chunkOf (0.47 sec)

  1. test/init1.go

    	// allocated fewer than N*MB bytes from the system.
    	runtime.ReadMemStats(memstats)
    	sys1, numGC1 := memstats.Sys, memstats.NumGC
    	if sys1-sys >= N*MB || numGC1 == numGC {
    		println("allocated 1000 chunks of", MB, "and used ", sys1-sys, "memory")
    		println("numGC went", numGC, "to", numGC1)
    		panic("init1")
    	}
    }
    
    func send(c chan int) {
    	c <- 1
    }
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 1.1K bytes
    - Viewed (0)
  2. releasenotes/notes/dr-ca-cert-analyzer-errorr-line.yaml

    kind: feature
    area: istioctl
    releaseNotes:
      - |
        **Improved** destination rule ca analyzer to show exact error line when using `istioctl analyze`,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 21 03:05:58 UTC 2021
    - 255 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/internal/bytealg/equal_mips64x.s

    // memequal(a, b unsafe.Pointer, size uintptr) bool
    TEXT runtime·memequal(SB),NOSPLIT|NOFRAME,$0-25
    	MOVV	a+0(FP), R1
    	MOVV	b+8(FP), R2
    	BEQ	R1, R2, eq
    	MOVV	size+16(FP), R3
    	ADDV	R1, R3, R4
    
    	// chunk size is 16
    	SGTU	$16, R3, R8
    	BEQ	R0, R8, chunk_entry
    
    byte_loop:
    	BNE	R1, R4, byte_test
    	MOVV	$1, R1
    	MOVB	R1, ret+24(FP)
    	RET
    byte_test:
    	MOVBU	(R1), R6
    	ADDV	$1, R1
    	MOVBU	(R2), R7
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 06 10:24:44 UTC 2021
    - 2K bytes
    - Viewed (0)
  5. src/cmd/internal/notsha256/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: Fri Apr 29 14:23:17 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top