- Sort Score
- Result 10 results
- Languages All
Results 791 - 800 of 3,018 for strana (0.03 sec)
-
src/main/java/org/codelibs/fess/opensearch/config/cbean/bs/BsRelatedQueryCB.java
public RelatedQueryCB acceptPK(String id) { assertObjectNotNull("id", id); BsRelatedQueryCB cb = this; cb.query().docMeta().setId_Equal(id); return (RelatedQueryCB) this; } @Override public void acceptPrimaryKeyMap(Map<String, ? extends Object> primaryKeyMap) { acceptPK((String) primaryKeyMap.get("_id")); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/log/bsentity/BsClickLog.java
// ========= /** urlId */ protected String urlId; /** docId */ protected String docId; /** order */ protected Integer order; /** queryId */ protected String queryId; /** queryRequestedAt */ protected LocalDateTime queryRequestedAt; /** requestedAt */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/util/SuggestUtil.java
* If the encoded string exceeds the maximum allowed length, it truncates the string * to the specified maximum length. * * @param text the input text to be encoded * @return the encoded string, truncated if necessary */ public static String createSuggestTextId(final String text) {
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Mon Sep 01 13:33:03 UTC 2025 - 17.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/tree/Smb2TreeConnectRequestTest.java
// Verify path is set correctly Field pathField = Smb2TreeConnectRequest.class.getDeclaredField("path"); pathField.setAccessible(true); String actualPath = (String) pathField.get(req); assertEquals(path, actualPath); } @Test @DisplayName("Should create proper response object") void testCreateResponse() { // When
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.6K bytes - Viewed (0) -
src/main/java/jcifs/smb/DfsImpl.java
*/ @Override public DfsReferralData resolve(final CIFSContext tf, final String domain, final String root, final String path) throws SmbAuthException { return resolve(tf, domain, root, path, 5); } private DfsReferralData resolve(final CIFSContext tf, String domain, String root, final String path, final int depthLimit)
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 29.7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/XmlTransformer.java
/** * A map of attributes. */ protected final Map<String, Object> attributeMap = new HashMap<>(); /** * A map of features. */ protected final Map<String, String> featureMap = new HashMap<>(); /** * A map of field rules. */ protected Map<String, String> fieldRuleMap = new LinkedHashMap<>(); /** a flag to trim a space characters. */
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 23.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/admin/dict/ProtwordsTests.java
private static final String NAME_PREFIX = "protwordsTest_"; private static final String API_PATH = "/api/admin/dict/protwords"; private static final String LIST_ENDPOINT_SUFFIX = "settings"; private static final String ITEM_ENDPOINT_SUFFIX = "setting"; private static final String DICT_TYPE = "protwords"; private static final String KEY_PROPERTY = "input"; @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 2.3K bytes - Viewed (0) -
src/test/java/jcifs/smb/FileEntryTest.java
} @ParameterizedTest(name = "getName returns as-set: [{0}] - {1}") @MethodSource("nameProvider") void name_edgeCases(String name, String caseDesc) { // Arrange FileEntry e = new TestFileEntry(name, 0, 0, 0L, 0L, 0L, 0L, 0); // Act String actual = e.getName(); // Assert assertEquals(name, actual); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10K bytes - Viewed (0) -
docs/debugging/inspect/main.go
} } var inputs []string // Parse parameters switch { case *stdin: // Parse 'mc support inspect --json' output input := struct { File string `json:"file"` Key string `json:"key"` }{} got, err := io.ReadAll(os.Stdin) if err != nil { fatalErr(err) } fatalErr(json.Unmarshal(got, &input)) inputs = []string{input.File} *keyHex = input.Key
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Mon Feb 17 17:09:42 UTC 2025 - 5.7K bytes - Viewed (0) -
guava-tests/test/com/google/common/reflect/AbstractInvocationHandlerTest.java
} @SuppressWarnings("unchecked") // proxy of List<String> private static List<String> newDelegatingList(List<String> delegate) { return Reflection.newProxy(List.class, new DelegatingInvocationHandler(delegate)); } @SuppressWarnings("unchecked") // proxy of List<String> private static List<String> newDelegatingListWithEquals(List<String> delegate) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 28 02:48:50 UTC 2024 - 5.7K bytes - Viewed (0)