Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 241 - 250 of 1,067 for nell (0.02 seconds)

  1. src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessListedClassificationProvider.java

            //    } else {
            //        return null;
            //    }
            //}
            //try {
            //    return CDef.DefMeta.valueOf(searchName);
            //} catch (IllegalArgumentException ignored) { // not found
            //    return null; // handled later
            //}
        }
    
        @Override
        public OptionalThing<String> determineAlias(final Locale locale) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 2.5K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/script/ScriptEngineFactoryTest.java

                assertTrue(e.getMessage().contains("scriptEngine: null"));
            }
        }
    
        // Test add method with both null parameters
        @Test
        public void test_add_bothNull() {
            try {
                scriptEngineFactory.add(null, null);
                fail("Should throw IllegalArgumentException for null parameters");
            } catch (IllegalArgumentException e) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 12.8K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/exception/DataStoreExceptionTest.java

            assertNotNull(exception);
            assertNull(exception.getCause());
            assertNull(exception.getMessage());
        }
    
        @Test
        public void test_constructor_withNullMessageAndCause() {
            // Test with both null message and cause
            DataStoreException exception = new DataStoreException(null, null);
    
            assertNotNull(exception);
            assertNull(exception.getMessage());
    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)
  4. src/test/java/org/codelibs/fess/util/JobProcessTest.java

            JobProcess jobProcess = new JobProcess(mockProcess, 0, null);
    
            assertNotNull(jobProcess.getInputStreamThread());
        }
    
        @Test
        public void test_constructor_withNullCallback() throws IOException {
            Process mockProcess = createMockProcess("test");
            JobProcess jobProcess = new JobProcess(mockProcess, 10, null);
    
            assertNotNull(jobProcess.getInputStreamThread());
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 8.8K bytes
    - Click Count (0)
  5. src/main/webapp/WEB-INF/view/searchResults.jsp

    					<c:if test="${doc.last_modified==null || doc.last_modified==''}">
    						<fmt:formatDate value="${fe:parseDate(doc.created)}" type="BOTH" pattern="yyyy-MM-dd HH:mm" />
    					</c:if>
    					<c:if test="${doc.content_length!=null && doc.content_length!=''}">
    						<div class="d-sm-none"></div>
    						<span class="d-none d-sm-inline-block">&nbsp;</span>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 12.2K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/util/QueryResponseListTest.java

            qrList.allRecordCountRelation = null;
            qrList.queryTime = 0;
            qrList.partialResults = false;
            qrList.facetResponse = null;
    
            String toStringResult = qrList.toString();
            assertTrue(toStringResult.contains("QueryResponseList"));
            assertTrue(toStringResult.contains("allRecordCountRelation=null"));
            assertTrue(toStringResult.contains("facetResponse=null"));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 40.1K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/storage/GcsStorageClient.java

                    final ZonedDateTime lastModified =
                            blob.getUpdateTimeOffsetDateTime() != null ? blob.getUpdateTimeOffsetDateTime().toZonedDateTime() : null;
    
                    final StorageItem item = new StorageItem(name, prefix, isDirectory, isDirectory ? 0 : blob.getSize(),
                            isDirectory ? null : lastModified, encodeId(blobName));
    
                    if (isDirectory) {
                        items.add(item);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Dec 13 02:21:17 GMT 2025
    - 10.3K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/mylasta/mail/CrawlerPostcard.java

         * @param hostname The parameter value of hostname. (NotNull)
         */
        public void setHostname(String hostname) {
            registerVariable("hostname", hostname);
        }
    
        /**
         * Set the value of jobname, used in parameter comment. <br>
         * Even if empty string, treated as empty plainly. So "IF pmb != null" is false if empty.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 15 06:53:53 GMT 2025
    - 10K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/helper/DocumentHelperTest.java

            assertEquals("", documentHelper.getContent(null, responseData, "", dataMap));
            assertEquals("", documentHelper.getContent(null, responseData, " ", dataMap));
            assertEquals("", documentHelper.getContent(null, responseData, "  ", dataMap));
            assertEquals("", documentHelper.getContent(null, responseData, "\t", dataMap));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 13.2K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/exec/CrawlerTest.java

            method.setAccessible(true);
    
            // Test with null thread
            try {
                method.invoke(crawler, (Thread) null);
            } catch (Exception e) {
                fail("Should not throw exception with null thread");
            }
    
            // Test with normal thread
            Thread testThread = new Thread(() -> {
                try {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 30.8K bytes
    - Click Count (0)
Back to Top