Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 6 of 6 for specifically (0.06 seconds)

  1. src/test/java/org/codelibs/fess/exception/DataStoreExceptionTest.java

            } catch (DataStoreException e) {
                assertEquals(errorMessage, e.getMessage());
                assertNull(e.getCause());
            } catch (Exception e) {
                fail("Should have caught DataStoreException specifically");
            }
        }
    
        @Test
        public void test_throwAndCatchWithCause() {
            // Test throwing and catching the exception with cause
            final String errorMessage = "Data store write error";
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 8.9K bytes
    - Click Count (0)
  2. .teamcity/src/main/kotlin/promotion/PromotionProject.kt

                param("env.JDK11", javaHome(OpenJdk11, Os.LINUX))
                param("env.JDK17", javaHome(OpenJdk17, Os.LINUX))
                // Keep 21 and 25 for tests requiring it specifically: https://github.com/gradle/gradle/pull/35410#discussion_r2460835304
                param("env.JDK21", javaHome(OpenJdk21, Os.LINUX))
                param("env.JDK25", javaHome(OpenJdk25, Os.LINUX))
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Jan 15 19:30:24 GMT 2026
    - 3.1K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/opensearch/client/CrawlerEngineClient.java

    import org.opensearch.common.settings.Settings;
    import org.opensearch.common.settings.Settings.Builder;
    import org.opensearch.transport.client.Client;
    
    /**
     * OpenSearch client implementation specifically for crawler operations.
     * Extends FesenClient to provide search engine connectivity for the crawler components.
     */
    public class CrawlerEngineClient extends FesenClient {
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Aug 07 03:06:29 GMT 2025
    - 2.6K bytes
    - Click Count (0)
  4. architecture/standards/0009-use-american-english.md

    Gradle is an international open-source project with contributors from around the world. English is the primary language for code, comments, documentation, and communication, but there are variations in English spelling and terminology, specifically American English vs. British English.
    
    Inconsistency in spelling conventions can lead to several issues:
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 05 12:39:41 GMT 2026
    - 3.9K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/util/RenderDataUtilTest.java

        @Test
        public void test_register_arrayList() {
            RenderData data = new RenderData();
    
            BsUser entity1 = new BsUser();
            entity1.setName("user1");
    
            // Test ArrayList specifically (not just List interface)
            ArrayList<BsUser> arrayList = new ArrayList<>();
            arrayList.add(entity1);
    
            RenderDataUtil.register(data, "arrayList", arrayList);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 9.2K bytes
    - Click Count (0)
  6. build-logic/binary-compatibility/src/main/groovy/gradlebuild/EnrichedReportRenderer.groovy

                        // Sort the array in place by type, then member
                        // Note that Firefox is fine with a sort function returning any positive or negative number, but Chrome
                        // requires 1 or -1 specifically and ignores higher or lower values.  This sort ought to remain consistent
                        // with the sort used by AbstractAcceptedApiChangesMaintenanceTask.
                        result.acceptedApiChanges.sort((a, b) => {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Jan 22 12:18:18 GMT 2026
    - 7K bytes
    - Click Count (0)
Back to Top