Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,138 for encoding (0.12 sec)

  1. src/encoding/encoding.go

    // license that can be found in the LICENSE file.
    
    // Package encoding defines interfaces shared by other packages that
    // convert data to and from byte-level and textual representations.
    // Packages that check for these interfaces include encoding/gob,
    // encoding/json, and encoding/xml. As a result, implementing an
    // interface once can make a type useful in multiple encodings.
    Registered: 2024-06-12 16:32
    - Last Modified: 2023-05-23 19:43
    - 2.2K bytes
    - Viewed (0)
  2. src/internal/fuzz/encoding.go

    package fuzz
    
    import (
    	"bytes"
    	"fmt"
    	"go/ast"
    	"go/parser"
    	"go/token"
    	"math"
    	"strconv"
    	"strings"
    	"unicode/utf8"
    )
    
    // encVersion1 will be the first line of a file with version 1 encoding.
    var encVersion1 = "go test fuzz v1"
    
    // marshalCorpusFile encodes an arbitrary number of arguments into the file format for the
    // corpus.
    func marshalCorpusFile(vals ...any) []byte {
    	if len(vals) == 0 {
    Registered: 2024-06-12 16:32
    - Last Modified: 2022-09-30 16:39
    - 11K bytes
    - Viewed (0)
  3. fess-crawler-lasta/src/main/resources/crawler/encoding.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE components PUBLIC "-//DBFLUTE//DTD LastaDi 1.0//EN"
    	"http://dbflute.org/meta/lastadi10.dtd">
    <components namespace="fessCrawler">
    	<include path="crawler/container.xml" />
    
    	<component name="encodingHelper" class="org.codelibs.fess.crawler.helper.EncodingHelper">
    		<postConstruct name="addEncodingMapping">
    			<arg>"unicode"</arg>
    			<arg>"UTF-16LE"</arg>
    		</postConstruct>
    	</component>
    Registered: 2024-06-12 15:17
    - Last Modified: 2017-06-16 13:35
    - 454 bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/UrlComponentEncodingTester.kt

        apply {
          encodings[ 0x0] = encoding // Null character
          encodings[ 0x1] = encoding // Start of Header
          encodings[ 0x2] = encoding // Start of Text
          encodings[ 0x3] = encoding // End of Text
          encodings[ 0x4] = encoding // End of Transmission
          encodings[ 0x5] = encoding // Enquiry
          encodings[ 0x6] = encoding // Acknowledgment
          encodings[ 0x7] = encoding // Bell
    Registered: 2024-06-16 04:42
    - Last Modified: 2024-01-08 01:13
    - 12.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/codecs/BindingsBackedCodec.kt

        val tag: Int,
        val encoding: EncodingProducer,
        val decoding: Decoding
    ) {
        fun encodingForType(type: Class<*>) = encoding.encodingForType(type)
    }
    
    
    /**
     * An object that can determine, for a given type, whether it can encode instances of that type, and which specific encoding to use.
     */
    interface EncodingProducer {
    
        /**
         * Returns the encoding to use for that type, or null, if not supported.
    Registered: 2024-06-12 18:38
    - Last Modified: 2024-06-04 18:56
    - 6K bytes
    - Viewed (0)
  6. src/mime/encodedword.go

    package mime
    
    import (
    	"bytes"
    	"encoding/base64"
    	"errors"
    	"fmt"
    	"io"
    	"strings"
    	"unicode"
    	"unicode/utf8"
    )
    
    // A WordEncoder is an RFC 2047 encoded-word encoder.
    type WordEncoder byte
    
    const (
    	// BEncoding represents Base64 encoding scheme as defined by RFC 2045.
    	BEncoding = WordEncoder('b')
    	// QEncoding represents the Q-encoding scheme as defined by RFC 2047.
    	QEncoding = WordEncoder('q')
    Registered: 2024-06-12 16:32
    - Last Modified: 2024-03-21 16:12
    - 10K bytes
    - Viewed (0)
  7. src/math/big/intmarsh.go

    // license that can be found in the LICENSE file.
    
    // This file implements encoding/decoding of Ints.
    
    package big
    
    import (
    	"bytes"
    	"fmt"
    )
    
    // Gob codec version. Permits backward-compatible changes to the encoding.
    const intGobVersion byte = 1
    
    // GobEncode implements the [encoding/gob.GobEncoder] interface.
    func (x *Int) GobEncode() ([]byte, error) {
    	if x == nil {
    		return nil, nil
    Registered: 2024-06-12 16:32
    - Last Modified: 2023-10-19 11:59
    - 2.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/jos/JavaSerializationEncodingLookup.kt

    class JavaSerializationEncodingLookup {
        private
        val encodings = ConcurrentHashMap<Class<*>, EncodingDetails>()
    
        /**
         * Returns the proper encoding provider for the given type, or null, if not covered by Java Object serialization.
         */
        fun encodingFor(type: Class<*>): Encoding? {
            return encodings.computeIfAbsent(type) { t -> calculateEncoding(t) }.encoding
        }
    
        private
    Registered: 2024-06-12 18:38
    - Last Modified: 2024-06-07 23:09
    - 3.4K bytes
    - Viewed (0)
  9. src/encoding/base64/base64.go

    // Package base64 implements base64 encoding as specified by RFC 4648.
    package base64
    
    import (
    	"encoding/binary"
    	"io"
    	"slices"
    	"strconv"
    )
    
    /*
     * Encodings
     */
    
    // An Encoding is a radix 64 encoding/decoding scheme, defined by a
    // 64-character alphabet. The most common encoding is the "base64"
    // encoding defined in RFC 4648 and used in MIME (RFC 2045) and PEM
    Registered: 2024-06-12 16:32
    - Last Modified: 2023-09-08 19:04
    - 17.6K bytes
    - Viewed (0)
  10. src/go/build/deps_test.go

    	io, reflect
    	< internal/saferio;
    
    	# encodings
    	# core ones do not use fmt.
    	io, strconv, slices
    	< encoding;
    
    	encoding, reflect
    	< encoding/binary
    	< encoding/base32, encoding/base64;
    
    	FMT, encoding < flag;
    
    	fmt !< encoding/base32, encoding/base64;
    
    	FMT, encoding/base32, encoding/base64, internal/saferio
    	< encoding/ascii85, encoding/csv, encoding/gob, encoding/hex,
    Registered: 2024-06-12 16:32
    - Last Modified: 2024-05-24 16:41
    - 19.2K bytes
    - Viewed (0)
Back to top