Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,812 for encoding1 (0.32 sec)

  1. guava/src/com/google/common/io/BaseEncoding.java

     * return hex.decode("deadbeef"); // throws an IllegalArgumentException
     * }</pre>
     *
     * <p>It is guaranteed that {@code encoding.decode(encoding.encode(x))} is always equal to {@code
     * x}, but the reverse does not necessarily hold.
     *
     * <table>
     * <caption>Encodings</caption>
     * <tr>
     * <th>Encoding
     * <th>Alphabet
     * <th>{@code char:byte} ratio
     * <th>Default padding
     * <th>Comments
     * <tr>
     * <td>{@link #base16()}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Mar 15 16:33:32 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  2. src/encoding/asn1/marshal.go

    }
    
    func (s setEncoder) Encode(dst []byte) {
    	// Per X690 Section 11.6: The encodings of the component values of a
    	// set-of value shall appear in ascending order, the encodings being
    	// compared as octet strings with the shorter components being padded
    	// at their trailing end with 0-octets.
    	//
    	// First we encode each element to its TLV encoding and then use
    	// octetSort to get the ordering expected by X690 DER rules before
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  3. src/encoding/gob/doc.go

    [encoding.BinaryMarshaler] interfaces by calling the corresponding method,
    in that order of preference.
    
    Gob can decode a value of any type implementing the [GobDecoder] or
    [encoding.BinaryUnmarshaler] interfaces by calling the corresponding method,
    again in that order of preference.
    
    # Encoding Details
    
    This section documents the encoding, details that are not important for most
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  4. src/debug/dwarf/const.go

    	opRegvalType      = 0xA5
    	opDerefType       = 0xA6
    	opXderefType      = 0xA7
    	opConvert         = 0xA8
    	opReinterpret     = 0xA9
    	/* 0xE0-0xFF reserved for user-specific */
    )
    
    // Basic type encodings -- the value for AttrEncoding in a TagBaseType Entry.
    const (
    	encAddress      = 0x01
    	encBoolean      = 0x02
    	encComplexFloat = 0x03
    	encFloat        = 0x04
    	encSigned       = 0x05
    	encSignedChar   = 0x06
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  5. src/compress/flate/huffman_bit_writer.go

    	if storable {
    		// We only bother calculating the costs of the extra bits required by
    		// the length of offset fields (which will be the same for both fixed
    		// and dynamic encoding), if we need to compare those two encodings
    		// against stored encoding.
    		for lengthCode := lengthCodesStart + 8; lengthCode < numLiterals; lengthCode++ {
    			// First eight length codes have extra size = 0.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 29 22:59:14 UTC 2022
    - 18.4K bytes
    - Viewed (0)
  6. api/go1.5.txt

    pkg debug/elf, type R_PPC64 int
    pkg encoding/base64, const NoPadding = -1
    pkg encoding/base64, const NoPadding int32
    pkg encoding/base64, const StdPadding = 61
    pkg encoding/base64, const StdPadding int32
    pkg encoding/base64, method (Encoding) WithPadding(int32) *Encoding
    pkg encoding/base64, var RawStdEncoding *Encoding
    pkg encoding/base64, var RawURLEncoding *Encoding
    pkg encoding/json, method (*Decoder) More() bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 30 21:14:09 UTC 2015
    - 46.6K bytes
    - Viewed (0)
  7. src/net/http/response.go

    	// is "HEAD", values >= 0 indicate that the given number of bytes may
    	// be read from Body.
    	ContentLength int64
    
    	// Contains transfer encodings from outer-most to inner-most. Value is
    	// nil, means that "identity" encoding is used.
    	TransferEncoding []string
    
    	// Close records whether the header directed that the connection be
    	// closed after reading Body. The value is advice for clients: neither
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  8. pkg/api/testing/unstructured_test.go

    // TestRoundtripToUnstructured verifies the roundtrip faithfulness of all external types from native
    // to unstructured and back using both the JSON and CBOR serializers. The intermediate unstructured
    // objects produced by both encodings must be identical and be themselves roundtrippable to JSON and
    // CBOR.
    func TestRoundtripToUnstructured(t *testing.T) {
    	// These are GVKs that whose CBOR roundtrippability is blocked by a known issue that must be
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/link.go

    //		instruction encoding to use a full 32-bit constant, never a
    //		reference relative to SB.
    //
    //	$<floating point literal>
    //		Floating point constant value.
    //		Encoding:
    //			type = TYPE_FCONST
    //			val = floating point value
    //
    //	$<string literal, up to 8 chars>
    //		String literal value (raw bytes used for DATA instruction).
    //		Encoding:
    //			type = TYPE_SCONST
    //			val = string
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  10. src/encoding/gob/type.go

    }
    
    // externalEncoding bits
    const (
    	xGob    = 1 + iota // GobEncoder or GobDecoder
    	xBinary            // encoding.BinaryMarshaler or encoding.BinaryUnmarshaler
    	xText              // encoding.TextMarshaler or encoding.TextUnmarshaler
    )
    
    var userTypeCache sync.Map // map[reflect.Type]*userTypeInfo
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
Back to top