Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 102 for uncompressed (0.24 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/responsewriters/writers_test.go

    			},
    			wantCode: http.StatusOK,
    			wantHeaders: http.Header{
    				"Content-Type": []string{"application/json"},
    			},
    			wantBody: largePayload,
    		},
    
    		{
    			name:               "errors are compressed",
    			compressionEnabled: true,
    			statusCode:         http.StatusInternalServerError,
    			out:                smallPayload,
    			outErrs:            []error{fmt.Errorf(string(largePayload)), fmt.Errorf("bad2")},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/schema/schema.fbs

    //      index metadata for each dimension. For a dense dimension, this is just
    //      the size of that dimension. For a sparse dimension, it's the same as
    //      the compressed index defined in the Compressed Sparse Row (CSR) format.
    //      (http://scipy-lectures.org/advanced/scipy_sparse/csr_matrix.html)
    
    // The storage type for a dimension. Currently we support:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  3. src/crypto/ecdsa/ecdsa_test.go

    	// https://csrc.nist.gov/groups/STM/cavp/documents/dss/186-3ecdsatestvectors.zip
    	//
    	// The SigVer.rsp file has been edited to remove test vectors for
    	// unsupported algorithms and has been compressed.
    
    	if testing.Short() {
    		return
    	}
    
    	f, err := os.Open("testdata/SigVer.rsp.bz2")
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	buf := bufio.NewReader(bzip2.NewReader(f))
    
    	lineNo := 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:58 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  4. common/scripts/kind_provisioner.sh

    EOF
    }
    
    function ips_to_cidrs() {
      IP_RANGE_START="$1"
      IP_RANGE_END="$2"
      python3 - <<EOF
    from ipaddress import summarize_address_range, IPv4Address
    [ print(n.compressed) for n in summarize_address_range(IPv4Address(u'$IP_RANGE_START'), IPv4Address(u'$IP_RANGE_END')) ]
    EOF
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 19:12:55 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/batch/v1/types_swagger_doc_generated.go

    	"failedIndexes":           "FailedIndexes holds the failed...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  6. src/compress/bzip2/bzip2.go

    // syntactically invalid.
    type StructuralError string
    
    func (s StructuralError) Error() string {
    	return "bzip2 data invalid: " + string(s)
    }
    
    // A reader decompresses bzip2 compressed data.
    type reader struct {
    	br           bitReader
    	fileCRC      uint32
    	blockCRC     uint32
    	wantBlockCRC uint32
    	setupDone    bool // true if we have parsed the bzip2 header.
    	eof          bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 13K bytes
    - Viewed (0)
  7. src/runtime/pprof/pprof.go

    // If a write to w returns an error, WriteTo returns that error.
    // Otherwise, WriteTo returns nil.
    //
    // The debug parameter enables additional output.
    // Passing debug=0 writes the gzip-compressed protocol buffer described
    // in https://github.com/google/pprof/tree/main/proto#overview.
    // Passing debug=1 writes the legacy text format with comments
    // translating addresses to function names and line numbers, so that a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/batch/v1/generated.proto

      // "Indexed" in a text format. The indexes are represented as decimal integers
      // separated by commas. The numbers are listed in increasing order. Three or
      // more consecutive numbers are compressed and represented by the first and
      // last element of the series, separated by a hyphen.
      // For example, if the completed indexes are 1, 3, 4, 5 and 7, they are
      // represented as "1,3-5,7".
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  9. cmd/update.go

    		}
    	}
    	return resp.Body, nil
    }
    
    var updateInProgress atomic.Uint32
    
    // Function to get the reader from an architecture
    func downloadBinary(u *url.URL, mode string) (binCompressed []byte, bin []byte, err error) {
    	transport := getUpdateTransport(30 * time.Second)
    	var reader io.ReadCloser
    	if u.Scheme == "https" || u.Scheme == "http" {
    		reader, err = getUpdateReaderFromURL(u, transport, mode)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  10. internal/etag/etag.go

    	"github.com/minio/sio"
    )
    
    // ETag is a single S3 ETag.
    //
    // An S3 ETag sometimes corresponds to the MD5 of
    // the S3 object content. However, when an object
    // is encrypted, compressed or uploaded using
    // the S3 multipart API then its ETag is not
    // necessarily the MD5 of the object content.
    //
    // For a more detailed description of S3 ETags
    // take a look at the package documentation.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Mar 10 21:09:36 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top