Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 366 for chunkOf (0.14 sec)

  1. api/openapi-spec/v3/apis__storage.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
    - 117.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/streaming/streaming.go

    }
    
    type decoder struct {
    	reader    io.ReadCloser
    	decoder   runtime.Decoder
    	buf       []byte
    	maxBytes  int
    	resetRead bool
    }
    
    // NewDecoder creates a streaming decoder that reads object chunks from r and decodes them with d.
    // The reader is expected to return ErrShortRead if the provided buffer is not large enough to read
    // an entire object.
    func NewDecoder(r io.ReadCloser, d runtime.Decoder) Decoder {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 25 14:51:36 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/etcd3/errors.go

    		"retrieve the remainder of the results. Continuing with the provided " +
    		"token results in an inconsistent list - objects that were created, " +
    		"modified, or deleted between the time the first chunk was returned " +
    		"and now may show up in the list."
    )
    
    func interpretListError(err error, paging bool, continueKey, keyPrefix string) error {
    	switch {
    	case err == etcdrpc.ErrCompacted:
    		if paging {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 11 15:59:41 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  4. operator/pkg/util/yaml.go

    	res := make([]string, 0)
    	for {
    		doc, err := decoder.Read()
    		if err == io.EOF {
    			break
    		}
    		if err != nil {
    			break
    		}
    
    		chunk := bytes.TrimSpace(doc)
    		res = append(res, string(chunk))
    	}
    	return res
    }
    
    // multiYamlDiffOutput multi yaml diff output format
    func multiYamlDiffOutput(res, diff string) string {
    	if res == "" {
    		return diff
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 14 02:41:27 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  5. src/runtime/mpagecache_test.go

    	}
    
    	// Empty.
    	runTest(t, 0, 0, 0)
    
    	// Full.
    	runTest(t, 0, ^uint64(0), ^uint64(0))
    
    	// Random.
    	for i := 0; i < 100; i++ {
    		// Generate random valid base within a chunk.
    		base := uint(rand.Intn(PallocChunkPages/64)) * 64
    
    		// Generate random cache.
    		cache := rand.Uint64()
    		scav := rand.Uint64() & cache
    
    		// Run the test.
    		runTest(t, base, cache, scav)
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 06 19:16:48 UTC 2021
    - 10.8K bytes
    - Viewed (0)
  6. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/Encoder.java

         */
        void writeBinary(byte[] bytes, int offset, int count) throws IOException;
    
        /**
         * Appends an encoded stream to this stream. Encodes the stream as a series of chunks with length information.
         */
        void encodeChunked(EncodeAction<Encoder> writeAction) throws Exception;
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__autoscaling__v2_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
    - 186.6K bytes
    - Viewed (0)
  8. src/go/build/build.go

    	srcdir = filepath.ToSlash(srcdir)
    
    	chunks := strings.Split(str, "${SRCDIR}")
    	if len(chunks) < 2 {
    		return str, safeCgoName(str)
    	}
    	ok := true
    	for _, chunk := range chunks {
    		ok = ok && (chunk == "" || safeCgoName(chunk))
    	}
    	ok = ok && (srcdir == "" || safeCgoName(srcdir))
    	res := strings.Join(chunks, srcdir)
    	return res, ok && res != ""
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  9. pilot/pkg/networking/apigen/apigen.go

    }
    
    // TODO: take 'updates' into account, don't send pushes for resources that haven't changed
    // TODO: support WorkloadEntry - to generate endpoints (equivalent with EDS)
    // TODO: based on lessons from MCP, we want to send 'chunked' responses, like apiserver does.
    // A first attempt added a 'sync' record at the end. Based on feedback and common use, a
    // different approach can be used - for large responses, we can mark the last one as 'hasMore'
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 05 19:01:38 UTC 2023
    - 5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/apis/meta/internalversion/types.go

    	// will set the continue field on the returned list object.
    	Limit int64
    	// Continue is a token returned by the server that lets a client retrieve chunks of results
    	// from the server by specifying limit. The server may reject requests for continuation tokens
    	// it does not recognize and will return a 410 error if the token can no longer be used because
    	// it has expired.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 01 09:55:40 UTC 2023
    - 4.5K bytes
    - Viewed (0)
Back to top