Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,810 for Encodings (0.15 sec)

  1. .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)
  2. 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: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/noder/codes.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package noder
    
    import "internal/pkgbits"
    
    // A codeStmt distinguishes among statement encodings.
    type codeStmt int
    
    func (c codeStmt) Marker() pkgbits.SyncMarker { return pkgbits.SyncStmt1 }
    func (c codeStmt) Value() int                 { return int(c) }
    
    const (
    	stmtEnd codeStmt = iota
    	stmtLabel
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 15 20:07:46 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. src/internal/pkgbits/codes.go

    	// Marker returns the SyncMarker for the Code's dynamic type.
    	Marker() SyncMarker
    
    	// Value returns the Code's ordinal value.
    	Value() int
    }
    
    // A CodeVal distinguishes among go/constant.Value encodings.
    type CodeVal int
    
    func (c CodeVal) Marker() SyncMarker { return SyncVal }
    func (c CodeVal) Value() int         { return int(c) }
    
    // Note: These values are public and cannot be changed without
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 25 16:15:47 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. src/crypto/ecdh/ecdh.go

    	//
    	// For NIST curves, this decodes an uncompressed point according to SEC 1,
    	// Version 2.0, Section 2.3.4. Compressed encodings and the point at
    	// infinity are rejected.
    	//
    	// For X25519, this only checks the u-coordinate length. Adversarially
    	// selected public keys can cause ECDH to return an error.
    	NewPublicKey(key []byte) (*PublicKey, error)
    
    	// ecdh performs an ECDH exchange and returns the shared secret. It's exposed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  9. src/encoding/base32/base32_test.go

    		}
    	}
    }
    
    func TestWithoutPaddingClose(t *testing.T) {
    	encodings := []*Encoding{
    		StdEncoding,
    		StdEncoding.WithPadding(NoPadding),
    	}
    
    	for _, encoding := range encodings {
    		for _, testpair := range pairs {
    
    			var buf strings.Builder
    			encoder := NewEncoder(encoding, &buf)
    			encoder.Write([]byte(testpair.decoded))
    			encoder.Close()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 16:25:54 UTC 2024
    - 26K bytes
    - Viewed (0)
  10. guava/src/com/google/common/base/Charsets.java

      /*
       * Please do not add new Charset references to this class, unless those character encodings are
       * part of the set required to be supported by all Java platform implementations! Any Charsets
       * initialized here may cause unexpected delays when this class is loaded. See the Charset
       * Javadocs for the list of built-in character encodings.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top