- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 349 for Constants (0.12 seconds)
-
src/main/java/org/codelibs/fess/Constants.java
import org.codelibs.core.lang.StringUtil; /** * Constants class that extends CoreLibConstants and contains application-wide constant values for the Fess search engine. * This class provides constants for system configuration, crawling and indexing defaults, user agent strings, * status values, field names, date/time formats, authentication types, and various reserved words and patterns. * * <p>Key constant categories include:</p> * <ul>
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:55:54 GMT 2026 - 35.8K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Constants.java
* specific language governing permissions and limitations * under the License. */ package org.apache.maven.api; import org.apache.maven.api.annotations.Config; /** * Configuration constants. */ public final class Constants { /** * Maven home. * * @since 3.0.0 */ @Config(readOnly = true, source = Config.Source.SYSTEM_PROPERTIES)Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Dec 16 13:41:14 GMT 2025 - 28.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/mylasta/action/FessLabelsTest.java
} } assertEquals("Should have exactly one serialVersionUID", 1, serialVersionUIDCount); assertTrue("Should have many label constants", labelConstantCount > 100); } /** * Test that label constant values match their field names */ @Test public void test_labelConstantValueMatchesName() throws Exception {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 14K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/sso/SsoResponseTypeTest.java
assertEquals(logoutHashCode, SsoResponseType.LOGOUT.hashCode()); // Different enum constants should have different hash codes (usually) assertNotSame(metadataHashCode, logoutHashCode); } @Test public void test_compareTo() { // Test compareTo method for enum constants assertEquals(0, SsoResponseType.METADATA.compareTo(SsoResponseType.METADATA));
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 6.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/crawler/FessCrawlerThreadTest.java
} /** * Test HTTP status code constants are defined correctly */ @Test public void test_httpStatusCodeConstants() { // Verify the constants are accessible via reflection or by checking their usage // Since the constants are private, we test their values indirectly // The constants should match standard HTTP status codes // HTTP_STATUS_NOT_FOUND = 404Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 9.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticatorTest.java
assertTrue(true); } @Test public void test_constantsExist() { // Verify all expected configuration constants are defined SpnegoAuthenticator authenticator = new SpnegoAuthenticator(); // These constants should be accessible (would fail at compile time if not) assertTrue(SpnegoAuthenticator.class.getName().contains("SpnegoAuthenticator"));
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 4.8K bytes - Click Count (0) -
CLAUDE.md
``` org.codelibs.fess.suggest/ ├── Suggester.java # Main entry point (Facade) ├── SuggesterBuilder.java # Builder for Suggester ├── analysis/ # Suggest analyzer ├── constants/ # Field names, constants ├── exception/ # Custom exceptions ├── index/ │ ├── SuggestIndexer.java # Indexing operations │ ├── contents/ # Content parsers
Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Thu Mar 12 03:39:53 GMT 2026 - 8.1K bytes - Click Count (0) -
android/guava/src/com/google/common/io/Files.java
* * @param file the file to read from * @param charset the charset used to decode the input stream; see {@link StandardCharsets} for * helpful predefined constants * @return the buffered reader */ public static BufferedReader newReader(File file, Charset charset) throws FileNotFoundException { checkNotNull(file); checkNotNull(charset);Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Jan 05 22:13:21 GMT 2026 - 32.8K bytes - Click Count (0) -
CLAUDE.md
mvn license:format # Add license headers ``` ## Directory Structure ``` src/main/java/org/codelibs/fess/ ├── FessBoot.java # Application entry point ├── Constants.java # Central application constants ├── app/ │ ├── web/ # Controllers (Actions) │ │ ├── base/ # Base action classes (FessBaseAction, FessAdminAction)
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 19 09:48:10 GMT 2026 - 7.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/mylasta/action/FessMessagesTest.java
@Override protected void setUp(TestInfo testInfo) throws Exception { super.setUp(testInfo); messages = new FessMessages(); } // Test constant fields @Test public void test_constantFields() { // Test error message constants assertEquals("{errors.front_header}", FessMessages.ERRORS_front_header); assertEquals("{errors.front_footer}", FessMessages.ERRORS_front_footer);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 28.9K bytes - Click Count (0)