Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,748 for encoding1 (0.16 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: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 19:43:37 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. 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: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Fri Jun 16 13:35:06 UTC 2017
    - 454 bytes
    - Viewed (0)
  3. .idea/encodings.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <project version="4">
      <component name="Encoding">
        <file url="file://$PROJECT_DIR$/libraries" charset="UTF-8" />
        <file url="file://$PROJECT_DIR$/libraries/examples/browser-example" charset="UTF-8" />
        <file url="file://$PROJECT_DIR$/libraries/examples/browser-example-with-library" charset="UTF-8" />
        <file url="file://$PROJECT_DIR$/libraries/examples/browser-example-with-library/src/main/kotlin" charset="UTF-8" />
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Aug 22 14:23:18 UTC 2022
    - 5.9K bytes
    - Viewed (0)
  4. 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: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/codecs/BindingsBackedCodec.kt

                val encoding = binding.encodingForType(type)
                if (encoding != null) {
                    return TaggedEncoding(binding.tag, encoding)
                }
            }
            throw IllegalArgumentException("Don't know how to serialize an object of type ${type.name}.")
        }
    
        private
        data class TaggedEncoding(
            val tag: Int,
            val encoding: Encoding
        )
    }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 6K bytes
    - Viewed (0)
  6. src/mime/encodedword_test.go

    		src, exp string
    	}{
    		{QEncoding, utf8, "François-Jérôme", "=?utf-8?q?Fran=C3=A7ois-J=C3=A9r=C3=B4me?="},
    		{BEncoding, utf8, "Café", "=?utf-8?b?Q2Fmw6k=?="},
    		{QEncoding, iso88591, "La Seleção", "=?iso-8859-1?q?La_Sele=C3=A7=C3=A3o?="},
    		{QEncoding, utf8, "", ""},
    		{QEncoding, utf8, "A", "A"},
    		{QEncoding, iso88591, "a", "a"},
    		{QEncoding, utf8, "123 456", "123 456"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 20 18:41:18 UTC 2020
    - 7K bytes
    - Viewed (0)
  7. src/crypto/internal/edwards25519/edwards25519_test.go

    	} else if out != nil {
    		t.Error("SetBytes did not return nil on an invalid encoding")
    	} else if p.Equal(B) != 1 {
    		t.Error("the Point was modified while decoding an invalid encoding")
    	}
    	checkOnCurve(t, p)
    }
    
    func TestNonCanonicalPoints(t *testing.T) {
    	type test struct {
    		name                string
    		encoding, canonical string
    	}
    	tests := []test{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 10 18:45:00 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  8. src/net/http/transfer_test.go

    		},
    		{
    			hdr:     Header{"Transfer-Encoding": {"chunked, identity"}},
    			wantErr: &unsupportedTEError{`unsupported transfer encoding: "chunked, identity"`},
    		},
    		{
    			hdr:     Header{"Transfer-Encoding": {"chunked", "identity"}},
    			wantErr: &unsupportedTEError{`too many transfer encodings: ["chunked" "identity"]`},
    		},
    		{
    			hdr:     Header{"Transfer-Encoding": {"\x0bchunked"}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 23:16:28 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  9. src/crypto/ed25519/ed25519vectors_test.go

    package ed25519_test
    
    import (
    	"crypto/ed25519"
    	"encoding/hex"
    	"encoding/json"
    	"internal/testenv"
    	"os"
    	"os/exec"
    	"path/filepath"
    	"testing"
    )
    
    // TestEd25519Vectors runs a very large set of test vectors that exercise all
    // combinations of low-order points, low-order components, and non-canonical
    // encodings. These vectors lock in unspecified and spec-divergent behaviors in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 25 14:52:51 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/encode.go

    		// defined in RFC 8949 4.2.1 "Core Deterministic Encoding Requirements".
    		Sort: cbor.SortBytewiseLexical,
    
    		// CBOR supports distinct types for IEEE-754 float16, float32, and float64. Store
    		// floats in the smallest width that preserves value so that equivalent float32 and
    		// float64 values encode to identical bytes, as they do in a JSON
    		// encoding. Satisfies one of the "Core Deterministic Encoding Requirements".
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 15 15:31:10 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top