Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 20 of 89 for jorn (0.01 seconds)

  1. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/UpgradePropertiesRulePostProcess.java

                return accessor.getBinaryCompatibility() == BinaryCompatibility.ACCESSORS_KEPT;
            });
            if (!keptAccessors.isEmpty()) {
                String formattedLeft = CollectionUtils.join("\n", keptAccessors.keySet());
                throw new RuntimeException("The following accessors were upgraded, but didn't match any removed/changed method:\n\n" + formattedLeft);
            }
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Aug 19 15:30:48 GMT 2024
    - 3.5K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/ds/DataStoreFactoryTest.java

            // Start all threads
            for (Thread thread : threads) {
                thread.start();
            }
    
            // Wait for all threads to complete
            for (Thread thread : threads) {
                thread.join();
            }
    
            // Verify no exceptions occurred
            for (int i = 0; i < threadCount; i++) {
                assertNull(exceptions[i], "Thread " + i + " threw exception");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 18.2K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/dict/mapping/CharMappingItem.java

         *
         * @return compact string representation of the mapping rule
         */
        public String toLineString() {
            if (isUpdated()) {
                return StringUtils.join(newInputs, ",") + "=>" + newOutput;
            }
            return StringUtils.join(inputs, ",") + "=>" + output;
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 07:09:00 GMT 2025
    - 7.9K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/dict/stopwords/StopwordsItem.java

         *
         * @return The stopword as a string.
         */
        public String toLineString() {
            if (isUpdated()) {
                return StringUtils.join(newInput);
            }
            return StringUtils.join(input);
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 07:09:00 GMT 2025
    - 3.5K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/ldap/LdapUtilTest.java

            assertEquals("", LdapUtil.escapeValue(""));
        }
    
        @Test
        public void test_escapeValue_noSpecialChars() {
            assertEquals("admin", LdapUtil.escapeValue("admin"));
            assertEquals("john.doe", LdapUtil.escapeValue("john.doe"));
            assertEquals("user123", LdapUtil.escapeValue("user123"));
            assertEquals("Test User", LdapUtil.escapeValue("Test User"));
        }
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 4.4K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/util/KuromojiCSVUtilTest.java

            value = "\"John Doe\",\"Software Engineer\",\"john******@****.***\",\"Loves \"\"coding\"\" and coffee\"";
            result = KuromojiCSVUtil.parse(value);
            assertEquals(4, result.length);
            assertEquals("John Doe", result[0]);
            assertEquals("Software Engineer", result[1]);
            assertEquals("john******@****.***", result[2]);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 18.9K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/dict/protwords/ProtwordsItem.java

         * @return the string representation of this item
         */
        public String toLineString() {
            if (isUpdated()) {
                return StringUtils.join(newInput);
            }
            return StringUtils.join(input);
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 07:09:00 GMT 2025
    - 3.4K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImplTest.java

                }
            });
    
            // Start both threads
            threads[0].start();
            threads[1].start();
    
            // Wait for completion
            threads[0].join();
            threads[1].join();
    
            // Verify no exceptions occurred (the main goal is no ConcurrentModificationException)
            assertNull(exceptions[0], "Add thread threw exception");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 19.7K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/app/service/UserServiceTest.java

        }
    
        @Test
        public void test_user_givenName() {
            final User user = new User();
            assertNull(user.getGivenName());
    
            user.setGivenName("John");
            assertEquals("John", user.getGivenName());
        }
    
        @Test
        public void test_user_surname() {
            final User user = new User();
            assertNull(user.getSurname());
    
            user.setSurname("Doe");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jan 15 12:54:47 GMT 2026
    - 12.8K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/job/CrawlJob.java

                cmdList.add(StringUtils.join(webConfigIds, ','));
            }
            if (fileConfigIds != null && fileConfigIds.length > 0) {
                cmdList.add("-f");
                cmdList.add(StringUtils.join(fileConfigIds, ','));
            }
            if (dataConfigIds != null && dataConfigIds.length > 0) {
                cmdList.add("-d");
                cmdList.add(StringUtils.join(dataConfigIds, ','));
            }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 19.6K bytes
    - Click Count (0)
Back to Top