- Sort Score
- Result 10 results
- Languages All
Results 261 - 270 of 1,435 for constant (0.05 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb1/SmbClient.java
} } })); } /** The charset used for encoding and decoding. */ protected String charset = Constants.UTF_8; /** Whether to resolve SIDs. */ protected boolean resolveSids = true; /** The content length helper. */ @Resource protected ContentLengthHelper contentLengthHelper; /** The SMB authentication holder. */
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Sep 18 09:30:45 UTC 2025 - 23K bytes - Viewed (0) -
src/test/java/jcifs/internal/AllocInfoTest.java
} @Test @DisplayName("Should have FileSystemInformation constants accessible") void shouldHaveFileSystemInformationConstants() { // Verify constants are accessible through interface assertEquals(-1, FileSystemInformation.SMB_INFO_ALLOCATION); assertEquals(3, FileSystemInformation.FS_SIZE_INFO);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/constants/FieldNames.java
*/ package org.codelibs.fess.suggest.constants; /** * This class contains constants for field names used in the Fess Suggest system. * These constants represent various field names that are used throughout the application * to ensure consistency and avoid hardcoding strings. * * <ul> * <li>{@link #ID} - The unique identifier field.</li> * <li>{@link #TEXT} - The text content field.</li>
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Fri Jul 04 14:00:23 UTC 2025 - 4.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/FacetResponseTest.java
} public void test_facet_constants() { // Test that the constants are available assertNotNull(Constants.FACET_FIELD_PREFIX); assertNotNull(Constants.FACET_QUERY_PREFIX); assertEquals("field:", Constants.FACET_FIELD_PREFIX); assertEquals("query:", Constants.FACET_QUERY_PREFIX); } public void test_unicode_base64_encoding() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 6.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/synonym/SynonymFile.java
*/ public String getSimpleName() { return new File(path).getName(); } /** * Updates the dictionary file with content from an input stream. * * @param in The input stream containing the new dictionary content. * @throws IOException if an I/O error occurs. */ public synchronized void update(final InputStream in) throws IOException {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 15.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/api/engine/SearchEngineApiManager.java
writeHeaders(response); final String responseContentType = curlResponse.getHeaderValue("Content-Type"); if (StringUtil.isBlank(responseContentType)) { response.setHeader("Content-Type", "application/json"); } else { response.setHeader("Content-Type", responseContentType); } CopyUtil.copy(in, out);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 12.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/relatedcontent/AdminRelatedcontentAction.java
return asHtml(path_AdminRelatedcontent_AdminRelatedcontentJsp).renderWith(data -> { searchPaging(data, form); }); } /** * Resets the search criteria and displays all related content items. * * @param form the search form to reset * @return HTML response with the reset related content list */ @Execute
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 16K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/stopwords/StopwordsFile.java
*/ public String getSimpleName() { return new File(path).getName(); } /** * Updates the dictionary file with content from an input stream. * * @param in The input stream containing the new dictionary content. * @throws IOException if an I/O error occurs. */ public synchronized void update(final InputStream in) throws IOException {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 12.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/WildcardQueryCommandTest.java
import org.apache.lucene.index.Term; import org.apache.lucene.search.Query; import org.apache.lucene.search.TermQuery; import org.apache.lucene.search.WildcardQuery; import org.codelibs.fess.Constants; import org.codelibs.fess.entity.QueryContext; import org.codelibs.fess.exception.InvalidQueryException; import org.codelibs.fess.util.ComponentUtil; import org.opensearch.index.query.QueryBuilder;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/QueryContextTest.java
getMockRequest().setAttribute(Constants.FIELD_LOGS, new HashMap<String, List<String>>()); queryContext = new QueryContext("test", true); assertEquals("test", queryContext.getQueryString()); // Verify that highlighting and field log are initialized assertNotNull(getMockRequest().getAttribute(Constants.HIGHLIGHT_QUERIES));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 17.4K bytes - Viewed (0)