Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for carlin (0.04 sec)

  1. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"application/vnd.lotus-screencam",
    				"application/vnd.lotus-wordpro",
    				"application/vnd.macports.portpkg",
    				"application/vnd.marlin.drm.actiontoken+xml",
    				"application/vnd.marlin.drm.conftoken+xml",
    				"application/vnd.marlin.drm.license+xml",
    				"application/vnd.marlin.drm.mdcf",
    				"application/vnd.mcd",
    				"application/vnd.medcalcdata",
    				"application/vnd.mediastation.cdkey",
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sun Nov 23 03:46:53 UTC 2025
    - 50.1K bytes
    - Viewed (0)
  2. fess-crawler/src/test/java/org/codelibs/fess/net/protocol/gcs/HandlerTest.java

                assertTrue(e instanceof IOException);
                assertTrue(e.getMessage().contains("GCS_PROJECT_ID is blank"));
            }
        }
    
        /**
         * Test that connect() is idempotent - calling it multiple times should be safe.
         */
        public void test_connect_idempotent() throws Exception {
            URL url = new URL("gcs://mybucket/object.txt");
            Handler handler = new Handler();
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Dec 11 08:38:29 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  3. fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/OpenSearchDataService.java

                return (T) Long.valueOf(value.longValue());
            }
            return (T) field;
        }
    
        /**
         * Iterates through all access results for a session, calling the callback for each result.
         * Uses OpenSearch scroll API for efficient iteration over large result sets.
         *
         * @param sessionId The session ID.
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 11.1K bytes
    - Viewed (0)
  4. fess-crawler/src/test/java/org/codelibs/fess/crawler/util/TemporaryFileInputStreamTest.java

                assertFalse(stream.markSupported());
    
                assertEquals('A', stream.read());
                assertEquals('B', stream.read());
    
                // Mark is not supported, so calling mark has no effect
                stream.mark(10);
    
                assertEquals('C', stream.read());
                assertEquals('D', stream.read());
    
                // Reset will throw IOException because mark is not supported
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sat Nov 22 13:28:22 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/base/FessAdminAction.java

            return super.hookBefore(runtime);
        }
    
        /**
         * Hook method called after action execution completes.
         * <p>
         * This method performs cleanup operations by calling the parent hook.
         * </p>
         *
         * @param runtime the action runtime context
         */
        @Override
        public void hookFinally(final ActionRuntime runtime) {
            super.hookFinally(runtime);
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 27 07:01:25 UTC 2025
    - 9.7K bytes
    - Viewed (0)
  6. fess-crawler/src/test/java/org/codelibs/fess/net/protocol/storage/HandlerTest.java

                assertTrue(e instanceof IOException);
                assertTrue(e.getMessage().contains("endpoint is blank"));
            }
        }
    
        /**
         * Test that connect() is idempotent - calling it multiple times should be safe.
         */
        public void test_connect_idempotent() throws Exception {
            URL url = new URL("storage://mybucket/object.txt");
            Handler handler = new Handler();
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Dec 11 08:38:29 UTC 2025
    - 14.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

                return time;
            }
            return -1;
        }
    
        /**
         * Retrieves a list of access results from the data service for processing.
         * Filters out results that are too recent based on commit margin time and manages crawler throttling.
         *
         * @param cb the consumer to customize the search request
         * @param cleanupTime the time taken for the last cleanup operation
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 32.9K bytes
    - Viewed (0)
  8. fess-crawler/src/test/java/org/codelibs/fess/crawler/pool/CrawlerPooledObjectFactoryTest.java

            // First close
            closeableFactory.destroyObject(pooledObject);
            assertTrue(component.isClosed());
    
            // Component's close is idempotent, so calling destroy again should not increment counter
            closeableFactory.destroyObject(pooledObject);
            assertEquals(1, CloseableTestComponent.getCloseCount());
        }
    
        /**
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 20 13:07:01 UTC 2025
    - 36.7K bytes
    - Viewed (0)
  9. src/main/resources/fess_config.properties

    indexer.click.count.enabled=true
    # Whether to enable favorite count tracking in the indexer.
    indexer.favorite.count.enabled=true
    # Commit margin time (ms) for webfs in the indexer.
    indexer.webfs.commit.margin.time=5000
    # Maximum number of empty lists for webfs in the indexer.
    indexer.webfs.max.empty.list.count=3600
    # Update interval (ms) for webfs in the indexer.
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Dec 11 09:47:03 UTC 2025
    - 54.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/sso/entraid/EntraIdAuthenticator.java

                    final String url = "https://graph.microsoft.com/v1.0/groups/" + id + "/getMemberGroups";
                    if (logger.isDebugEnabled()) {
                        logger.debug("[getParentGroup] Calling API: {}", url);
                    }
                    try (CurlResponse response = Curl.post(url)
                            .header("Authorization", "Bearer " + user.getAuthenticationResult().accessToken())
    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