Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 7 of 7 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. 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)
  4. 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)
  5. 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)
  6. src/test/java/org/codelibs/fess/sso/saml/SamlAuthenticatorTest.java

            assertEquals("******@****.***", techEmail);
        }
    
        @Test
        public void test_emailTypoFix_supportEmail() throws Exception {
            // This test specifically verifies the typo fix: support@@example.com -> ******@****.***
            Map<String, Object> defaultSettings = createDefaultSettings();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 18.4K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

                return false;
            }
            return true;
        }
    
        /**
         * Validates if the canonical URL is valid relative to the original URL.
         * Specifically checks for HTTPS to HTTP downgrades.
         *
         * @param url the original URL
         * @param canonicalUrl the canonical URL to validate
         * @return true if the canonical URL is valid, false otherwise
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 12 01:46:45 GMT 2026
    - 55.3K bytes
    - Click Count (0)
Back to Top