- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for newEncs (0.04 sec)
-
cmd/handler-utils.go
if contentEnc == "" { return contentEnc } var newEncs []string for enc := range strings.SplitSeq(contentEnc, ",") { if enc != streamingContentEncoding { newEncs = append(newEncs, enc) } } return strings.Join(newEncs, ",") } func collectInternodeStats(f http.HandlerFunc) http.HandlerFunc {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 16.3K bytes - Viewed (1) -
src/test/java/jcifs/smb/SmbResourceLocatorImplTest.java
when(dr.getPathConsumed()).thenReturn(2); // consume leading \\ from UNC String newUnc = l.handleDFSReferral(dr, "\\req\\"); // dunc is "\\" + path + remaining - note: path may not have leading backslashes assertTrue(newUnc.contains("dfs/path") || newUnc.contains("dfs\\path")); assertEquals(dr, l.getDfsReferral()); assertEquals("dfs-server", l.getServerWithDfs());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/QueryResponseListTest.java
List<Map<String, Object>> newDocs = new ArrayList<>(); Map<String, Object> doc1 = new HashMap<>(); doc1.put("title", "Doc1"); Map<String, Object> doc2 = new HashMap<>(); doc2.put("title", "Doc2"); newDocs.add(doc1); newDocs.add(doc2); assertTrue(qrList.addAll(newDocs)); assertEquals(2, qrList.size());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 39.7K bytes - Viewed (0)