Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,812 for encoding1 (0.26 sec)

  1. src/crypto/internal/nistec/p256.go

    	if rhs.Equal(lhs) != 1 {
    		return errors.New("P256 point not on curve")
    	}
    	return nil
    }
    
    // Bytes returns the uncompressed or infinity encoding of p, as specified in
    // SEC 1, Version 2.0, Section 2.3.3. Note that the encoding of the point at
    // infinity is shorter than all other encodings.
    func (p *P256Point) Bytes() []byte {
    	// This function is outlined to make the allocations inline in the caller
    	// rather than happen on the heap.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  2. guava/src/com/google/common/html/HtmlEscapers.java

       * attribute values and in most elements' text contents, provided that the HTML
       * document's character encoding can encode any non-ASCII code points in the input (as UTF-8 and
       * other Unicode encodings can).
       *
       * <p><b>Note:</b> This escaper only performs minimal escaping to make content structurally
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 14 22:08:54 UTC 2021
    - 3K bytes
    - Viewed (0)
  3. guava/src/com/google/common/hash/Hasher.java

     *
     * <p><b>Warning:</b> Using a specific character encoding when hashing a {@link CharSequence} with
     * {@link #putString(CharSequence, Charset)} is generally only useful for cross-language
     * compatibility (otherwise prefer {@link #putUnencodedChars}). However, the character encodings
     * must be identical across languages. Also beware that {@link Charset} definitions may occasionally
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jun 15 20:59:00 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  4. src/unicode/utf8/utf8.go

    		return true
    	}
    	return false
    }
    
    // DecodeRune unpacks the first UTF-8 encoding in p and returns the rune and
    // its width in bytes. If p is empty it returns ([RuneError], 0). Otherwise, if
    // the encoding is invalid, it returns (RuneError, 1). Both are impossible
    // results for correct, non-empty UTF-8.
    //
    // An encoding is invalid if it is incorrect UTF-8, encodes a rune that is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:36 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  5. android/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)
  6. tensorflow/compiler/mlir/lite/flatbuffer_operator.h

          return mlir::vhlo::TokenV1Type::get(token.getContext());
        });
        addBuiltinToVhloConversions();
      }
    
      mlir::Attribute convertEncoding(mlir::Attribute attr) const final {
        // Must be VHLO encoding, or convertible to VHLO encoding.
        if (attr.getDialect().getNamespace() ==
            mlir::vhlo::VhloDialect::getDialectNamespace())
          return attr;
    
        if (auto stablehloAttr =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 21:00:09 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  7. src/crypto/ecdh/ecdh_test.go

    		}
    	})
    }
    
    var invalidPublicKeys = map[ecdh.Curve][]string{
    	ecdh.P256(): {
    		// Bad lengths.
    		"",
    		"04",
    		strings.Repeat("04", 200),
    		// Infinity.
    		"00",
    		// Compressed encodings.
    		"036b17d1f2e12c4247f8bce6e563a440f277037d812deb33a0f4a13945d898c296",
    		"02e2534a3532d08fbba02dde659ee62bd0031fe2db785596ef509302446b030852",
    		// Points not on the curve.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 18K bytes
    - Viewed (0)
  8. src/crypto/internal/nistec/generate.go

    		return errors.New("{{.P}} point not on curve")
    	}
    	return nil
    }
    
    // Bytes returns the uncompressed or infinity encoding of p, as specified in
    // SEC 1, Version 2.0, Section 2.3.3. Note that the encoding of the point at
    // infinity is shorter than all other encodings.
    func (p *{{.P}}Point) Bytes() []byte {
    	// This function is outlined to make the allocations inline in the caller
    	// rather than happen on the heap.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/tasks/TaskInputFilePropertyBuilder.java

         *
         * <p>
         * Line ending normalization is only supported with ASCII encoding and its supersets (i.e.
         * UTF-8, ISO-8859-1, etc). Other encodings (e.g. UTF-16) will be treated as binary files
         * and will not be subject to line ending normalization.
         * </p>
         *
         * @since 7.2
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 13 17:35:59 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  10. src/crypto/internal/nistec/p256_asm.go

    func (p *P256Point) isInfinity() int {
    	return p256Equal(&p.z, &p256Zero)
    }
    
    // Bytes returns the uncompressed or infinity encoding of p, as specified in
    // SEC 1, Version 2.0, Section 2.3.3. Note that the encoding of the point at
    // infinity is shorter than all other encodings.
    func (p *P256Point) Bytes() []byte {
    	// This function is outlined to make the allocations inline in the caller
    	// rather than happen on the heap.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 21.4K bytes
    - Viewed (0)
Back to top