- Sort Score
- Result 10 results
- Languages All
Results 581 - 590 of 635 for encoder (0.08 sec)
-
guava-tests/test/com/google/common/primitives/LongsTest.java
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 02:56:12 UTC 2024 - 29.8K bytes - Viewed (0) -
api/go1.20.txt
pkg debug/pe, const IMAGE_FILE_MACHINE_RISCV32 ideal-int #54251 pkg debug/pe, const IMAGE_FILE_MACHINE_RISCV64 = 20580 #54251 pkg debug/pe, const IMAGE_FILE_MACHINE_RISCV64 ideal-int #54251 pkg encoding/xml, method (*Encoder) Close() error #53346 pkg errors, func Join(...error) error #53435 pkg fmt, func FormatString(State, int32) string #51668 pkg go/ast, type File struct, FileEnd token.Pos #53202
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Feb 17 21:23:32 UTC 2023 - 602.6K bytes - Viewed (0) -
android/guava/src/com/google/common/io/ByteSource.java
return new ByteArrayByteSource(bytes, newOffset, (int) length); } @Override public String toString() { return "ByteSource.wrap(" + Ascii.truncate(BaseEncoding.base16().encode(bytes, offset, length), 30, "...") + ")"; } } private static final class EmptyByteSource extends ByteArrayByteSource { static final EmptyByteSource INSTANCE = new EmptyByteSource();
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:26:48 UTC 2024 - 26.2K bytes - Viewed (0) -
guava/src/com/google/common/net/MediaType.java
*/ public static final MediaType TSV_UTF_8 = createConstantUtf8(TEXT_TYPE, "tab-separated-values"); public static final MediaType VCARD_UTF_8 = createConstantUtf8(TEXT_TYPE, "vcard"); /** * UTF-8 encoded <a href="https://en.wikipedia.org/wiki/Wireless_Markup_Language">Wireless Markup * Language</a>. * * @since 13.0 */ public static final MediaType WML_UTF_8 = createConstantUtf8(TEXT_TYPE, "vnd.wap.wml");
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Sep 26 19:15:09 UTC 2024 - 47.5K bytes - Viewed (0) -
docs/pt/docs/alternatives.md
Hug inspirou **FastAPI** a declarar um parâmetro de `resposta` em funções para definir cabeçalhos e cookies. /// ### <a href="https://github.com/encode/apistar" class="external-link" target="_blank">APIStar</a> (<= 0.5) Antes de decidir construir **FastAPI** eu encontrei o servidor **APIStar**. Tinha quase tudo que eu estava procurando e tinha um grande projeto.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 20 19:20:23 UTC 2024 - 25.5K bytes - Viewed (0) -
doc/go1.17_spec.html
of the character itself, while multi-character sequences beginning with a backslash encode values in various formats. </p> <p> The simplest form represents the single character within the quotes; since Go source text is Unicode characters encoded in UTF-8, multiple UTF-8-encoded bytes may represent a single integer value. For instance, the literal <code>'a'</code> holds a single byte representing
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu Oct 10 18:25:45 UTC 2024 - 211.6K bytes - Viewed (0) -
cmd/post-policy_test.go
if err != nil { t.Error("Unexpected error: ", err) } v := redirectURL.Query() v.Add("bucket", info.Bucket) v.Add("key", info.Name) v.Add("etag", "\""+info.ETag+"\"") redirectURL.RawQuery = v.Encode() expectedLocation := redirectURL.String() // Check the new location url if rec.Header().Get("Location") != expectedLocation {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed May 22 23:07:14 UTC 2024 - 30.2K bytes - Viewed (0) -
guava/src/com/google/common/net/InternetDomainName.java
* names</a> such as {@code 网络.cn} are supported, as are the equivalent <a * href="http://en.wikipedia.org/wiki/Internationalized_domain_name">IDNA Punycode-encoded</a> * versions. * * @author Catherine Berry * @since 5.0 */ @GwtCompatible(emulated = true) @Immutable @ElementTypesAreNonnullByDefault public final class InternetDomainName {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Feb 05 20:47:23 UTC 2024 - 28K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFile.java
* <tt>jcifs.Config.registerSmbURLHandler();</tt> method. This is required * to register the SMB protocol handler. * <p> * The userinfo component of the SMB URL (<tt>domain;user:pass</tt>) must * be URL encoded if it contains reserved characters. According to RFC 2396 * these characters are non US-ASCII characters and most meta characters * however jCIFS will work correctly with anything but '@' which is used
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu May 23 01:50:13 UTC 2024 - 82.3K bytes - Viewed (0) -
cmd/sts-handlers.go
} var issFromToken string if v, ok := claims[issClaim]; ok { issFromToken, _ = v.(string) } // Since issFromToken can have `/` characters (it is typically the // provider URL), we hash and encode it to base64 here. This is needed // because there will be a policy mapping stored on drives whose // filename is this parentUser: therefore, it needs to have only valid // filename characters and needs to have bounded length.
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Aug 15 01:29:20 UTC 2024 - 33.9K bytes - Viewed (0)