- Sort Score
- Result 10 results
- Languages All
Results 181 - 190 of 276 for getIdx (0.03 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/maintenance/AdminMaintenanceAction.java
+ "\"}}\n" + hit.getSourceAsString() + "\n"; try { zos.write(data.getBytes(Constants.CHARSET_UTF_8)); } catch (final IOException e) { logger.warn("Failed to access /{}/{}.", index, hit.getId(), e); } return true; });
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 18K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/mapping/CharMappingFileTest.java
assertEquals(1L, item1.getId()); assertArrayEquals(new String[] { "a", "b" }, item1.getInputs()); assertEquals("c", item1.getOutput()); OptionalEntity<CharMappingItem> result2 = charMappingFile.get(2L); assertTrue(result2.isPresent()); CharMappingItem item2 = result2.get(); assertEquals(2L, item2.getId());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 18.5K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/ResolutionNode.java
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/util/SuggestUtil.java
*/ public static String createBulkLine(final String index, final String type, final SuggestItem item) { if (item == null || item.getId() == null || item.getText() == null) { throw new SuggesterException("Invalid SuggestItem: item, id, or text is null"); } final Map<String, Object> firstLineMap = new HashMap<>();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/main/java/jcifs/smb/DfsImpl.java
return null; } } /** * * {@inheritDoc} * * @see jcifs.DfsResolver#getDc(jcifs.CIFSContext, java.lang.String) */ @Override public SmbTransport getDc(final CIFSContext tf, final String domain) throws SmbAuthException { if (tf.getConfig().isDfsDisabled()) { return null; }Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 29.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/KuromojiService.java
* @param kuromojiItem The Kuromoji item to store. */ public void store(final String dictId, final KuromojiItem kuromojiItem) { getKuromojiFile(dictId).ifPresent(file -> { if (kuromojiItem.getId() == 0) { file.insert(kuromojiItem); } else { file.update(kuromojiItem); } }); } /** * Delete a Kuromoji item. *Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 4.1K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/repository/DefaultArtifactRepositoryFactory.java
} private boolean isLocalRepository(ArtifactRepository repository) { // unfortunately, the API doesn't allow to tell a remote repo and the local repo apart... return "local".equals(repository.getId()); }Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 4.7K bytes - Viewed (0) -
api/maven-api-model/src/main/mdo/maven.mdo
} /** * @return a Map of executions field with {@code PluginExecution#getId()} as key * @see PluginExecution#getId() */ public Map<String, PluginExecution> getExecutionsAsMap() { return getExecutions().stream().collect(Collectors.toMap(exec -> exec.getId(), exec -> exec)); } ]]> </code> </codeSegment> <codeSegment>Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Aug 07 14:32:16 UTC 2025 - 132.7K bytes - Viewed (0) -
src/main/java/jcifs/pac/kerberos/KerberosToken.java
} try (ASN1InputStream stream = new ASN1InputStream(content)) { ASN1ObjectIdentifier kerberosOid = (ASN1ObjectIdentifier) stream.readObject(); if (!kerberosOid.getId().equals(KerberosConstants.KERBEROS_OID)) { throw new PACDecodingException("Not a kerberos token"); } int readLow = stream.read() & 0xff;Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.8K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/entity/OpenSearchUrlFilter.java
private String filterType; /** * The URL pattern for this filter. */ private String url; /** * Returns the ID. * @return The ID. */ public String getId() { return id; } /** * Sets the ID. * @param id The ID. */ public void setId(final String id) { this.id = id; } /**Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 3.6K bytes - Viewed (0)