Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 366 for chunkOf (0.16 sec)

  1. api/openapi-spec/v3/apis__coordination.k8s.io__v1_openapi.json

              "in": "query",
              "name": "limit",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 136.6K bytes
    - Viewed (0)
  2. platforms/core-runtime/io/src/main/java/org/gradle/internal/io/TextStream.java

     * limitations under the License.
     */
    
    package org.gradle.internal.io;
    
    import javax.annotation.Nullable;
    
    public interface TextStream {
        /**
         * Called when some chunk of text is available.
         */
        void text(String text);
    
        /**
         * Called when the end of the stream is reached for some reason.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 08:51:13 UTC 2024
    - 1K bytes
    - Viewed (0)
  3. src/runtime/memmove_mipsx.s

    	SUBU	R6, R3
    	MOVWLO	3(R2), R7
    	ADDU	R6, R2
    	MOVWHI	R7, 0(R1)
    	ADDU	R6, R1
    
    f_dest_aligned:
    	AND	$31, R3, R7
    	AND	$3, R3, R6
    	SUBU	R7, R5, R7	// end pointer for 32-byte chunks
    	SUBU	R6, R5, R6	// end pointer for 4-byte chunks
    
    	// if source is not aligned, use unaligned reads
    	AND	$3, R2, R8
    	BNE	R8, f_large_ua
    
    f_large:
    	BEQ	R1, R7, f_words
    	ADDU	$32, R1
    	MOVW	0(R2), R8
    	MOVW	4(R2), R9
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 06 10:24:44 UTC 2021
    - 4.4K bytes
    - Viewed (0)
  4. src/internal/bytealg/compare_arm64.s

    	CMP	R1, R3
    	CSEL	LT, R3, R1, R6    // R6 is min(R1, R3)
    
    	CBZ	R6, samebytes
    	BIC	$0xf, R6, R10
    	CBZ	R10, small        // length < 16
    	ADD	R0, R10           // end of chunk16
    	// length >= 16
    chunk16_loop:
    	LDP.P	16(R0), (R4, R8)
    	LDP.P	16(R2), (R5, R9)
    	CMP	R4, R5
    	BNE	cmp
    	CMP	R8, R9
    	BNE	cmpnext
    	CMP	R10, R0
    	BNE	chunk16_loop
    	AND	$0xf, R6, R6
    	CBZ	R6, samebytes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 18 18:26:13 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  5. src/image/png/testdata/pngsuite/README

    sizes makes them useful for testing bit-depths smaller than a byte.
    
    basn3a08.png was generated from basn6a08.png using the pngnq tool, which
    converted it to the 8-bit paletted image with alpha values in tRNS chunk.
    
    The *.sng files in this directory were generated from the *.png files by the
    sng command-line tool and some hand editing. The files basn0g0{1,2,4}.sng and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 28 02:10:13 UTC 2016
    - 1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/inline/inlheur/funcprops_test.go

    	if !dr.scan() {
    		return funcInlHeur, callsites, nil
    	}
    	// first line contains info about function: file/name/line
    	info := dr.curLine()
    	chunks := strings.Fields(info)
    	funcInlHeur.file = chunks[0]
    	funcInlHeur.fname = chunks[1]
    	if _, err := fmt.Sscanf(chunks[2], "%d", &funcInlHeur.line); err != nil {
    		return funcInlHeur, callsites, fmt.Errorf("scanning line %q: %v", info, err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:25 UTC 2023
    - 15K bytes
    - Viewed (0)
  7. src/internal/bytealg/compare_mips64x.s

    	MOVV	R1, R10
    	JMP	entry
    r2_lt_r1:
    	MOVV	R2, R10	// R10 is min(R1, R2)
    entry:
    	ADDV	R3, R10, R8	// R3 start of a, R8 end of a
    	BEQ	R3, R8, samebytes // length is 0
    
    	SRLV	$4, R10		// R10 is number of chunks
    	BEQ	R0, R10, byte_loop
    
    	// make sure both a and b are aligned.
    	OR	R3, R4, R11
    	AND	$7, R11
    	BNE	R0, R11, byte_loop
    
    chunk16_loop:
    	BEQ	R0, R10, byte_loop
    	MOVV	(R3), R6
    	MOVV	(R4), R7
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 06 10:24:44 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  8. src/encoding/base32/base32.go

    		if e.nbuf < 5 {
    			return
    		}
    		e.enc.Encode(e.out[0:], e.buf[0:])
    		if _, e.err = e.w.Write(e.out[0:8]); e.err != nil {
    			return n, e.err
    		}
    		e.nbuf = 0
    	}
    
    	// Large interior chunks.
    	for len(p) >= 5 {
    		nn := len(e.out) / 8 * 5
    		if nn > len(p) {
    			nn = len(p)
    			nn -= nn % 5
    		}
    		e.enc.Encode(e.out[0:], p[0:nn])
    		if _, e.err = e.w.Write(e.out[0 : nn/5*8]); e.err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 16:25:54 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/parallelize/parallelism.go

    	parallelism int
    }
    
    // NewParallelizer returns an object holding the parallelism.
    func NewParallelizer(p int) Parallelizer {
    	return Parallelizer{parallelism: p}
    }
    
    // chunkSizeFor returns a chunk size for the given number of items to use for
    // parallel work. The size aims to produce good CPU utilization.
    // returns max(1, min(sqrt(n), n/Parallelism))
    func chunkSizeFor(n, parallelism int) int {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 09 17:12:30 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. src/internal/poll/sendfile_bsd.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build darwin || dragonfly || freebsd
    
    package poll
    
    import "syscall"
    
    // maxSendfileSize is the largest chunk size we ask the kernel to copy
    // at a time.
    const maxSendfileSize int = 4 << 20
    
    // SendFile wraps the sendfile system call.
    func SendFile(dstFD *FD, src int, pos, remain int64) (written int64, err error, handled bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top