Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 5,260 for chunck (0.11 sec)

  1. pkg/test/util/yml/apply.go

    func ApplyNamespace(yamlText, ns string) (string, error) {
    	chunks := SplitString(yamlText)
    
    	toJoin := make([]string, 0, len(chunks))
    	for _, chunk := range chunks {
    		chunk, err := applyNamespace(chunk, ns)
    		if err != nil {
    			return "", err
    		}
    		toJoin = append(toJoin, chunk)
    	}
    
    	result := JoinString(toJoin...)
    	return result, nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 07:02:38 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. src/image/png/reader_test.go

    	// These bytes come from https://go.dev/issue/54325
    	//
    	// Per the PNG spec, a PLTE chunk contains 3 (not 4) bytes per palette
    	// entry: RGB (not RGBA). The alpha value comes from the optional tRNS
    	// chunk. Here, the PLTE chunk (0x50, 0x4c, 0x54, 0x45, etc) has 16 entries
    	// (0x30 = 48 bytes) and the tRNS chunk (0x74, 0x52, 0x4e, 0x53, etc) has 1
    	// entry (0x01 = 1 byte) that sets the first palette entry's alpha to zero.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 24 12:12:12 UTC 2022
    - 28.5K bytes
    - Viewed (0)
  3. src/internal/bytealg/count_arm64.s

    	BLO	tail
    	ANDS	$0x1f, R0, R9
    	BEQ	chunk
    	// Work with not 32-byte aligned head
    	BIC	$0x1f, R0, R3
    	ADD	$0x20, R3
    	PCALIGN $16
    head_loop:
    	MOVBU.P	1(R0), R5
    	CMP	R5, R1
    	CINC	EQ, R11, R11
    	SUB	$1, R2, R2
    	CMP	R0, R3
    	BNE	head_loop
    	// Work with 32-byte aligned chunks
    chunk:
    	BIC	$0x1f, R2, R9
    	// The first chunk can also be the last
    	CBZ	R9, tail
    	// R3 = end of 32-byte chunks
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 17:00:27 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. cmd/streaming-signature-v4.go

    // lineTooLong is generated as chunk header is bigger than 4KiB.
    var errLineTooLong = errors.New("header line too long")
    
    // malformed encoding is generated when chunk header is wrongly formed.
    var errMalformedEncoding = errors.New("malformed chunked encoding")
    
    // chunk is considered too big if its bigger than > 16MiB.
    var errChunkTooBig = errors.New("chunk too big: choose chunk size <= 16MiB")
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 16 23:13:47 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  5. src/runtime/mgcscavenge.go

    // scavengeIndex is a structure for efficiently managing which pageAlloc chunks have
    // memory available to scavenge.
    type scavengeIndex struct {
    	// chunks is a scavChunkData-per-chunk structure that indicates the presence of pages
    	// available for scavenging. Updates to the index are serialized by the pageAlloc lock.
    	//
    	// It tracks chunk occupancy and a generation counter per chunk. If a chunk's occupancy
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  6. src/internal/bytealg/indexbyte_arm64.s

    	B	indexbytebody<>(SB)
    
    // input:
    //   R0: data
    //   R1: byte to search
    //   R2: data len
    //   R8: address to put result
    TEXT indexbytebody<>(SB),NOSPLIT,$0
    	// Core algorithm:
    	// For each 32-byte chunk we calculate a 64-bit syndrome value,
    	// with two bits per byte. For each tuple, bit 0 is set if the
    	// relevant byte matched the requested character and bit 1 is
    	// not used (faster than using a 32bit syndrome). Since the bits
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 08 20:52:47 UTC 2018
    - 3.3K bytes
    - Viewed (0)
  7. src/runtime/mgcscavenge_test.go

    			0xb02b9effcf137016,
    			0x3975a076a9fbff18,
    			0x0f8c88ec3b81506e,
    			0x60f14d80ef2fa0e6,
    		}
    		for _, test := range tests {
    			check(test, m)
    		}
    		for i := 0; i < 1000; i++ {
    			// Try a pseudo-random numbers.
    			check(rand.Uint64(), m)
    
    			if m > 1 {
    				// For m != 1, let's construct a slightly more interesting
    				// random test. Generate a bitmap which is either 0 or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  8. releasenotes/notes/drop-legacy-auto-mtls-check.yaml

    John Howard <******@****.***> 1682620601 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 27 18:36:41 UTC 2023
    - 151 bytes
    - Viewed (0)
  9. src/internal/fuzz/mutators_byteslice.go

    package fuzz
    
    // byteSliceRemoveBytes removes a random chunk of bytes from b.
    func byteSliceRemoveBytes(m *mutator, b []byte) []byte {
    	if len(b) <= 1 {
    		return nil
    	}
    	pos0 := m.rand(len(b))
    	pos1 := pos0 + m.chooseLen(len(b)-pos0)
    	copy(b[pos0:], b[pos1:])
    	b = b[:len(b)-(pos1-pos0)]
    	return b
    }
    
    // byteSliceInsertRandomBytes inserts a chunk of random bytes into b at a random
    // position.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 19 18:23:43 UTC 2021
    - 7.7K bytes
    - Viewed (0)
  10. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/Cast.java

         * when it fails. All this method does is provide a better, consistent, error message.
         *
         * This should be used whenever there is a chance the cast could fail. If in doubt, use this.
         *
         * @param outputType The type to cast the input to
         * @param object The object to be cast (must not be {@code null})
         * @param <O> The type to be cast to
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top