Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,812 for encoding1 (0.33 sec)

  1. src/mime/example_test.go

    package mime_test
    
    import (
    	"bytes"
    	"fmt"
    	"io"
    	"mime"
    )
    
    func ExampleWordEncoder_Encode() {
    	fmt.Println(mime.QEncoding.Encode("utf-8", "¡Hola, señor!"))
    	fmt.Println(mime.QEncoding.Encode("utf-8", "Hello!"))
    	fmt.Println(mime.BEncoding.Encode("UTF-8", "¡Hola, señor!"))
    	fmt.Println(mime.QEncoding.Encode("ISO-8859-1", "Caf\xE9"))
    	// Output:
    	// =?utf-8?q?=C2=A1Hola,_se=C3=B1or!?=
    	// Hello!
    	// =?UTF-8?b?wqFIb2xhLCBzZcOxb3Ih?=
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 20 18:41:18 UTC 2020
    - 2.9K bytes
    - Viewed (0)
  2. src/encoding/ascii85/ascii85.go

    		dst = dst[m:]
    		n += m
    	}
    	return n
    }
    
    // MaxEncodedLen returns the maximum length of an encoding of n source bytes.
    func MaxEncodedLen(n int) int { return (n + 3) / 4 * 5 }
    
    // NewEncoder returns a new ascii85 stream encoder. Data written to
    // the returned writer will be encoded and then written to w.
    // Ascii85 encodings operate in 32-bit blocks; when finished
    // writing, the caller must Close the returned encoder to flush any
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_stablehlo_to_vhlo.cc

        addTargetMaterialization(MaterializeIllegalCast);
      }
    
      Attribute convertEncoding(Attribute attr) const final {
        LLVM_DEBUG(llvm::dbgs() << "Converting encoding.\n" << attr << '\n');
        // Must be VHLO encoding, or convertible to VHLO encoding.
        if (attr.getDialect().getNamespace() ==
            vhlo::VhloDialect::getDialectNamespace())
          return attr;
    
        if (auto stablehlo_attr =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 19:48:51 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  4. src/crypto/internal/nistec/fiat/generate.go

    	// the encoding of -1 mod p, so p - 1, the highest canonical encoding.
    	var minusOneEncoding = new({{ .Element }}).Sub(
    		new({{ .Element }}), new({{ .Element }}).One()).Bytes()
    	for i := range v {
    		if v[i] < minusOneEncoding[i] {
    			break
    		}
    		if v[i] > minusOneEncoding[i] {
    			return nil, errors.New("invalid {{ .Element }} encoding")
    		}
    	}
    
    	var in [{{ .Prefix }}ElementLen]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 9.1K bytes
    - Viewed (0)
  5. src/crypto/internal/nistec/p384.go

    	if rhs.Equal(lhs) != 1 {
    		return errors.New("P384 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 *P384Point) 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: Fri Aug 12 00:04:29 UTC 2022
    - 18K bytes
    - Viewed (0)
  6. docs/en/docs/tutorial/request-forms.md

        But when the form includes files, it is encoded as `multipart/form-data`. You'll read about handling files in the next chapter.
    
        If you want to read more about these encodings and form fields, head to the <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods/POST" class="external-link" target="_blank"><abbr title="Mozilla Developer Network">MDN</abbr> web docs for <code>POST</code></a>.
    
    !!! warning
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Mar 13 19:02:19 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. android/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)
  8. src/crypto/internal/nistec/p224.go

    	if rhs.Equal(lhs) != 1 {
    		return errors.New("P224 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 *P224Point) 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: Fri Aug 12 00:04:29 UTC 2022
    - 15.9K bytes
    - Viewed (0)
  9. src/crypto/internal/nistec/p521.go

    	if rhs.Equal(lhs) != 1 {
    		return errors.New("P521 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 *P521Point) 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: Fri Aug 12 00:04:29 UTC 2022
    - 17K bytes
    - Viewed (0)
  10. android/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)
Back to top