Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 46 of 46 for getLong (3.77 sec)

  1. src/test/java/jcifs/smb/SmbFileIntegrationTest.java

            assertFalse(file.exists(), "Non-existent file should not exist");
            assertThrows(SmbException.class, () -> file.length(), "Getting length of non-existent file should throw exception");
            assertThrows(SmbException.class, () -> file.getInputStream(), "Getting input stream of non-existent file should throw exception");
        }
    
        @Test
        void testInvalidPath() throws Exception {
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 56K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

         */
        private List<OpenSearchAccessResult> getAccessResultList(final Consumer<SearchRequestBuilder> cb, final long cleanupTime) {
            if (logger.isDebugEnabled()) {
                logger.debug("Getting documents in IndexUpdater queue.");
            }
            final long execTime = systemHelper.getCurrentTimeAsLong();
            final List<OpenSearchAccessResult> arList = ((OpenSearchDataService) dataService).getAccessResultList(cb);
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 32.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/ldap/LdapManager.java

                    }
                }
            } catch (final NamingException e) {
                logger.warn("LDAP naming exception while getting sAMAccountName for group: {}", groupName, e);
            } catch (final Exception e) {
                logger.warn("Unexpected exception while getting sAMAccountName for group: {}", groupName, e);
            }
            return OptionalEntity.empty();
        }
    
        /**
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 86.3K bytes
    - Viewed (0)
  4. MIGRATION.md

    Check these logs for troubleshooting:
    
    - **Main Application**: `logs/fess.log`
    - **Crawler**: `logs/fess-crawler.log`
    - **Search**: `logs/fess-search.log`
    - **Thumbnail**: `logs/fess-thumbnail.log`
    
    ### Getting Help
    
    - **Documentation**: https://fess.codelibs.org/
    - **GitHub Issues**: https://github.com/codelibs/fess/issues
    - **Discussions**: https://github.com/codelibs/fess/discussions
    
    ---
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 06 12:40:11 UTC 2025
    - 23.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/suggest/entity/SuggestItem.java

                }
            }
    
            item.id = SuggestUtil.createSuggestTextId(item.text);
            item.timestamp = ZonedDateTime.ofInstant(Instant.ofEpochMilli(timestamp), Clock.systemDefaultZone().getZone());
            return item;
        }
    
        /**
         * Returns the updated source map by merging with existing source.
         * @param existingSource The existing source map.
         * @return The updated source map.
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Thu Aug 07 02:41:28 UTC 2025
    - 25.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/sso/entraid/EntraIdAuthenticator.java

         */
        protected Pair<String[], String[]> getParentGroup(final EntraIdUser user, final String id, final int depth) {
            if (logger.isDebugEnabled()) {
                logger.debug("[getParentGroup] Getting parent groups for id: {}, depth: {}", id, depth);
            }
            if (depth >= maxGroupDepth) {
                if (logger.isDebugEnabled()) {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 56.7K bytes
    - Viewed (0)
Back to top