Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 3,717 for chunck (0.33 sec)

  1. src/internal/chacha8rand/chacha8.go

    	}
    	used := byteorder.BeUint64(data[1*8:])
    	if used > (ctrMax/ctrInc)*chunk-reseed {
    		return new(errUnmarshalChaCha8)
    	}
    	for i := range s.seed {
    		s.seed[i] = byteorder.LeUint64(data[(2+i)*8:])
    	}
    	s.c = ctrInc * (uint32(used) / chunk)
    	block(&s.seed, &s.buf, s.c)
    	s.i = uint32(used) % chunk
    	s.n = chunk
    	if s.c == ctrMax-ctrInc {
    		s.n = chunk - reseed
    	}
    	return nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:47:29 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. testing/performance/docs/check-rev.sh

    Louis Jacomet <******@****.***> 1711728981 +0100
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1K bytes
    - Viewed (0)
  3. src/slices/iter.go

    	SortStableFunc(s, cmp)
    	return s
    }
    
    // Chunk returns an iterator over consecutive sub-slices of up to n elements of s.
    // All but the last sub-slice will have size n.
    // All sub-slices are clipped to have no capacity beyond the length.
    // If s is empty, the sequence is empty: there is no empty slice in the sequence.
    // Chunk panics if n is less than 1.
    func Chunk[Slice ~[]E, E any](s Slice, n int) iter.Seq[Slice] {
    	if n < 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:40:32 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. src/crypto/sha1/sha1.go

    const BlockSize = 64
    
    const (
    	chunk = 64
    	init0 = 0x67452301
    	init1 = 0xEFCDAB89
    	init2 = 0x98BADCFE
    	init3 = 0x10325476
    	init4 = 0xC3D2E1F0
    )
    
    // digest represents the partial evaluation of a checksum.
    type digest struct {
    	h   [5]uint32
    	x   [chunk]byte
    	nx  int
    	len uint64
    }
    
    const (
    	magic         = "sha\x01"
    	marshaledSize = len(magic) + 5*4 + chunk + 8
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:50:58 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/plugins/customPlugin/tests/java-gradle-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)
  6. src/path/filepath/match.go

    	return s, true, nil
    }
    
    // getEsc gets a possibly-escaped character from chunk, for a character class.
    func getEsc(chunk string) (r rune, nchunk string, err error) {
    	if len(chunk) == 0 || chunk[0] == '-' || chunk[0] == ']' {
    		err = ErrBadPattern
    		return
    	}
    	if chunk[0] == '\\' && runtime.GOOS != "windows" {
    		chunk = chunk[1:]
    		if len(chunk) == 0 {
    			err = ErrBadPattern
    			return
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  7. src/compress/flate/inflate.go

    			for off := reverse; off < len(h.chunks); off += 1 << uint(n) {
    				// We should never need to overwrite
    				// an existing chunk. Also, 0 is
    				// never a valid chunk, because the
    				// lower 4 "count" bits should be
    				// between 1 and 15.
    				if sanity && h.chunks[off] != 0 {
    					panic("impossible: overwriting existing chunk")
    				}
    				h.chunks[off] = chunk
    			}
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 23:20:03 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  8. src/runtime/arena.go

    // arena chunks. That is, they can never be used for the general heap. Each chunk
    // is also represented by a single mspan, and is modeled as a single large heap
    // allocation. It must be, because each chunk contains ordinary Go values that may
    // point into the heap, so it must be scanned just like any other object. Any
    // pointer into a chunk will therefore always cause the whole chunk to be scanned
    // while its corresponding arena is still live.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:44:56 UTC 2024
    - 37.9K bytes
    - Viewed (0)
  9. src/runtime/malloc_test.go

    	}
    	const N = 16
    	var v [N]unsafe.Pointer
    	for i := range v {
    		v[i] = unsafe.Pointer(new(byte))
    	}
    
    	chunks := make(map[uintptr]bool, N)
    	for _, p := range v {
    		chunks[uintptr(p)&^7] = true
    	}
    
    	if len(chunks) == N {
    		t.Fatal("no bytes allocated within the same 8-byte chunk")
    	}
    }
    
    type obj12 struct {
    	a uint64
    	b uint32
    }
    
    func TestTinyAllocIssue37262(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:29 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  10. cmd/xl-storage-disk-id-check.go

    	}
    	return nil
    }
    
    // diskHealthCheckOK will check if the provided error is nil
    // and update disk status if good.
    // For convenience a bool is returned to indicate any error state
    // that is not io.EOF.
    func diskHealthCheckOK(ctx context.Context, err error) bool {
    	// Check if context has a disk health check.
    	tracker, ok := ctx.Value(healthDiskCtxKey{}).(*healthDiskCtxValue)
    	if !ok {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 33.4K bytes
    - Viewed (0)
Back to top