Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 366 for chunkOf (0.12 sec)

  1. src/runtime/memclr_arm.s

    	BLT	_1tail
    
    _4align:				/* align on 4 */
    	AND.S	$3, TO, TMP
    	BEQ	_4aligned
    
    	MOVBU.P	R0, 1(TO)		/* implicit write back */
    	B	_4align
    
    _4aligned:
    	SUB	$31, TOE, TMP	/* do 32-byte chunks if possible */
    	CMP	TMP, TO
    	BHS	_4tail
    
    	MOVW	R0, R1			/* replicate */
    	MOVW	R0, R2
    	MOVW	R0, R3
    	MOVW	R0, R4
    	MOVW	R0, R5
    	MOVW	R0, R6
    	MOVW	R0, R7
    
    _f32loop:
    	CMP	TMP, TO
    	BHS	_4tail
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 19 00:41:03 UTC 2021
    - 2.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/watch.go

    	TimeoutFactory       TimeoutFactory
    	ServerShuttingDownCh <-chan struct{}
    
    	metricsScope string
    }
    
    // HandleHTTP serves a series of encoded events via HTTP with Transfer-Encoding: chunked.
    // or over a websocket connection.
    func (s *WatchServer) HandleHTTP(w http.ResponseWriter, req *http.Request) {
    	defer func() {
    		if s.MemoryAllocator != nil {
    			runtime.AllocatorPool.Put(s.MemoryAllocator)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 14 16:37:25 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__networking.k8s.io__v1alpha1_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
    - 196.5K bytes
    - Viewed (0)
  4. src/compress/flate/huffman_code.go

    		// are encoded using "bits" bits, and get the values
    		// code, code + 1, ....  The code values are
    		// assigned in literal order (not frequency order).
    		chunk := list[len(list)-int(bits):]
    
    		h.lns.sort(chunk)
    		for _, node := range chunk {
    			h.codes[node.literal] = hcode{code: reverseBits(code, uint8(n)), len: uint16(n)}
    			code++
    		}
    		list = list[0 : len(list)-int(bits)]
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 9.7K bytes
    - Viewed (0)
  5. src/image/png/testdata/pngsuite/README.original

    images, available for developers of PNG supporting software. The 
    complete set, available at http:/www.schaik.com/pngsuite/, contains 
    a variety of images to test interlacing, gamma settings, ancillary
    chunks, etc.
    
    The images in this directory represent the basic PNG color-types:
    grayscale (1-16 bit deep), full color (8 or 16 bit), paletted
    (1-8 bit) and grayscale or color images with alpha channel. You
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 2.7K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/TransactNamedPipeInputStream.java

                    new_size = len + used;
                }
                tmp = pipe_buf;
                pipe_buf = new byte[new_size];
                i = tmp.length - beg_idx;
                if( used > i ) { /* 2 chunks */
                    System.arraycopy( tmp, beg_idx, pipe_buf, 0, i );
                    System.arraycopy( tmp, 0, pipe_buf, i, used - i ); 
                } else {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 4.6K bytes
    - Viewed (0)
  7. android/guava/src/com/google/thirdparty/publicsuffix/TrieParser.java

      /**
       * Parses a serialized trie representation of a map of reversed public suffixes into an immutable
       * map of public suffixes. The encoded trie string may be broken into multiple chunks to avoid the
       * 64k limit on string literal size. In-memory strings can be much larger (2G).
       */
      static ImmutableMap<String, PublicSuffixType> parseTrie(CharSequence... encodedChunks) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Oct 13 19:20:43 UTC 2022
    - 4K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__storagemigration.k8s.io__v1alpha1_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
    - 133.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/decode_test.go

    			in:   hex("a27f626865636c6c6fff017f616864656c6c6fff02"), // {(_ "he", "llo"): 1, (_ "h", "ello"): 2}
    			into: struct {
    				Hello int `json:"hello"`
    			}{},
    			assertOnError: assertIdenticalError(&cbor.DupMapKeyError{Key: string("hello"), Index: 1}),
    		},
    		{
    			name:          "reject two identical indefinite-length text string keys split into chunks differently into map",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 18:43:10 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  10. src/runtime/mkduff.go

    // The compiler jumps to computed addresses within
    // the routine to zero chunks of memory.
    // Do not change duffzero without also
    // changing the uses in cmd/compile/internal/*/*.go.
    
    // runtime·duffcopy is a Duff's device for copying memory.
    // The compiler jumps to computed addresses within
    // the routine to copy chunks of memory.
    // Source and destination must not overlap.
    // Do not change duffcopy without also
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:04:21 UTC 2023
    - 8K bytes
    - Viewed (0)
Back to top