- Sort Score
- Num 10 results
- Language All
Results 81 - 90 of 175 for CODE (0.01 seconds)
-
src/test/java/org/codelibs/fess/exception/SsoMessageExceptionTest.java
assertEquals(messageCode, exception.getMessageCode()); } @Test public void test_constructor_withNullMessageCode() { // Setup final String message = "Test error with null message code"; final Exception cause = new RuntimeException("Test cause"); // Execute final SsoMessageException exception = new SsoMessageException(null, message, cause); // Verify
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 10.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/chat/ChatAction.java
} return redirect(getClass()); } /** * Returns the user ID for the current session. If the user is authenticated, returns the username; * otherwise, returns the guest user code. * * @return the user ID */ protected String getUserId() { final String username = systemHelper.getUsername(); if (!Constants.GUEST_USER.equals(username)) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Tue Mar 10 14:54:51 GMT 2026 - 4.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/llm/AbstractLlmClient.java
} return Collections.emptyList(); } // --- Error handling --- /** * Resolves an HTTP status code to an LlmException error code. * * @param statusCode the HTTP status code * @return the corresponding error code */ protected String resolveErrorCode(final int statusCode) { if (statusCode == 429) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 21 06:04:58 GMT 2026 - 72K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/WebApiUtilTest.java
// Test error handling with edge cases try { // Test with extreme status codes WebApiUtil.setError(-1, "Negative status code"); WebApiUtil.setError(0, "Zero status code"); WebApiUtil.setError(999, "Large status code"); // Test with very long message StringBuilder longMessage = new StringBuilder(); for (int i = 0; i < 1000; i++) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 17.4K bytes - Click Count (0) -
src/main/webapp/css/admin/plugins/timepicker/bootstrap-timepicker.min.css
* * Contributors https://github.com/jdewit/bootstrap-timepicker/graphs/contributors * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code.
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Feb 13 04:21:06 GMT 2020 - 3K bytes - Click Count (0) -
architecture/build-state-model.md
## Composition by architecture modules Each [architecture module and platform](platforms.md) can contribute code to any of the elements. Not every module contributes to every element.
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed May 22 13:39:49 GMT 2024 - 3.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/dict/mapping/CharMappingItemTest.java
// Same inputs and output should have same hash code assertEquals(item1.hashCode(), item2.hashCode()); // Different inputs should have different hash code assertNotSame(item1.hashCode(), item3.hashCode()); // Same inputs but different output should have different hash code assertNotSame(item1.hashCode(), item4.hashCode()); } @TestCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 16K bytes - Click Count (0) -
src/main/webapp/css/admin/html5shiv.min.js
tion,figure,footer,header,hgroup,main,nav,section{display:block}mark{background:#FF0;color:#000}template{display:none}")),l||i(a,d),a}var k,l,m="3.7.3",n=a.html5||{},o=/^<|^(?:button|map|select|textarea|object|iframe|option|optgroup)$/i,p=/^(?:a|b|code|div|fieldset|h1|h2|h3|h4|h5|h6|i|label|li|ol|p|q|span|strong|style|table|tbody|td|th|tr|ul)$/i,q="_html5shiv",r=0,s={};!function(){try{var a=b.createElement("a");a.innerHTML="<xyz></xyz>",k="hidden"in a,l=1==a.childNodes.length||function(){b.createElement("a");var...Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Dec 31 23:16:54 GMT 2017 - 2.7K bytes - Click Count (0) -
build-logic-commons/module-identity/src/main/kotlin/gradlebuild/identity/extension/GradleModuleExtension.kt
} @get:Nested abstract val identity: ModuleIdentity fun identity(action: ModuleIdentity.() -> Unit) { action(identity) } /** * Describes the target processes that the code in this module must be able * to run on, by definition. All modules that this module depends on will * then be required to also support these target runtimes. *Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Mar 11 22:40:18 GMT 2026 - 4.8K bytes - Click Count (0) -
architecture/standards/0007-java-pre-requisite.md
One example is when one of the most popular plugins started requiring Java 17 because the underlying framework behind the plugin began requiring 17, and code from the framework was used in the plugin itself. What would have happened if Gradle was limited to _only Java 11_ at the time? ## Decision 1. The Gradle distribution will never include a Java runtime.
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Mar 05 12:39:41 GMT 2026 - 3.2K bytes - Click Count (0)