Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for TagCmd (0.06 sec)

  1. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/encode.go

    		IndefLength: cbor.IndefLengthForbidden,
    
    		// Preserve distinction between nil and empty for slices and maps.
    		NilContainers: cbor.NilContainerAsNull,
    
    		// OK to produce tags.
    		TagsMd: cbor.TagsAllowed,
    
    		// Use the same definition of "empty" as encoding/json.
    		OmitEmpty: cbor.OmitEmptyGoValue,
    
    		// The CBOR types text string and byte string are structurally equivalent, with the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 15 15:31:10 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/decode.go

    		MaxMapPairs:      1024,
    
    		// Indefinite-length sequences aren't produced by this serializer, but other
    		// implementations can.
    		IndefLength: cbor.IndefLengthAllowed,
    
    		// Accept inputs that contain CBOR tags.
    		TagsMd: cbor.TagsAllowed,
    
    		// Decode type 0 (unsigned integer) as int64.
    		// TODO: IntDecConvertSignedOrFail errors on overflow, JSON will try to fall back to float64.
    		IntDec: cbor.IntDecConvertSignedOrFail,
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 14:03:36 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top