- Sort Score
- Num 10 results
- Language All
Results 601 - 610 of 634 for encodes (0.15 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
docs/pt/docs/alternatives.md
Hug inspirou **FastAPI** a declarar um parâmetro de `response` em funções para definir cabeçalhos e cookies. /// ### [APIStar](https://github.com/encode/apistar) (<= 0.5) { #apistar-0-5 } Pouco antes de decidir construir o **FastAPI** eu encontrei o servidor **APIStar**. Ele tinha quase tudo o que eu estava procurando e tinha um ótimo design.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:20:43 GMT 2026 - 24.5K bytes - Click Count (0) -
docs/smb3-features/06-witness-protocol-design.md
} @Override public int getOpnum() { return WITNESS_REGISTER; } @Override public void encode_in(NdrBuffer buffer) throws NdrException { // Encode WitnessRegister request parameters buffer.enc_ndr_long(request.getVersion()); buffer.enc_ndr_string(request.getShareName()); buffer.enc_ndr_string(request.getServerAddress());Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 02:53:50 GMT 2025 - 42K bytes - Click Count (0) -
src/main/java/jcifs/ntlmssp/Type3Message.java
// possibly add channel bindings AvPairs.replace(serverAvPairs, new AvPair(0xa, new byte[16])); AvPairs.replace(serverAvPairs, new AvSingleHost(tc.getConfig())); return AvPairs.encode(serverAvPairs); } /** * Sets the MIC * * @param type1 the Type-1 message bytes * @param type2 the Type-2 message bytesCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 32.7K bytes - Click Count (0) -
docs/zh/docs/alternatives.md
Hug 促使 **FastAPI** 使用 Python 类型提示来声明参数,并自动生成定义整个 API 的模式。 Hug 启发 **FastAPI** 在函数中声明 `response` 参数,用于设置 headers 与 cookies。 /// ### [APIStar](https://github.com/encode/apistar) (<= 0.5) { #apistar-0-5 } 就在决定动手构建 **FastAPI** 之前,我找到了 **APIStar** 服务器。它几乎具备我想要的一切,设计也很出色。 在我见过的框架中,它是最早使用 Python 类型提示来声明参数和请求的实现之一(早于 NestJS 与 Molten)。我与 Hug 几乎同时发现了它。但 APIStar 使用了 OpenAPI 标准。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 20.1K bytes - Click Count (0) -
cmd/auth-handler.go
} // Check if a session policy is set. If so, decode it here. sp, spok := claims.Lookup(policy.SessionPolicyName) if spok { // Looks like subpolicy is set and is a string, if set then its // base64 encoded, decode it. Decoding fails reject such // requests. spBytes, err := base64.StdEncoding.DecodeString(sp) if err != nil { // Base64 decoding fails, we should log to indicate
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 25.4K bytes - Click Count (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 {Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 30.6K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/graph/TraverserTest.java
private static SuccessorsFunction<Character> createUndirectedGraph(String... edges) { return createGraph(/* directed= */ false, edges); } /** * Creates a graph from a list of node pairs (encoded as strings, e.g. "ab" means that this graph * has an edge between 'a' and 'b'). * * <p>The {@code successors} are always returned in alphabetical order. */
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Sep 30 17:09:51 GMT 2025 - 47.4K bytes - Click Count (0) -
docs/en/docs/alternatives.md
Hug inspired **FastAPI** to declare a `response` parameter in functions to set headers and cookies. /// ### [APIStar](https://github.com/encode/apistar) (<= 0.5) { #apistar-0-5 } Right before deciding to build **FastAPI** I found **APIStar** server. It had almost everything I was looking for and had a great design.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 22.2K bytes - Click Count (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.
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 36.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/job/IndexExportJobTest.java
final Path result = indexExportJob.buildFilePath(tempDir.toString(), "http://example.com/%C3%96sterreich/page", new HtmlIndexExportFormatter()); assertNotNull(result); // Properly percent-encoded URL should parse successfully (not fall back to _invalid) assertFalse(result.toString().contains("_invalid")); assertTrue(result.toString().contains("example.com"));Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 09:08:38 GMT 2026 - 66.1K bytes - Click Count (0)