Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 294 for configured (0.05 sec)

  1. src/main/java/org/codelibs/fess/helper/DataIndexHelper.java

         */
        public DataIndexHelper() {
            // Default constructor with explicit documentation
        }
    
        /**
         * Initiates crawling for all configured data stores.
         * This method retrieves all available data configurations and
         * starts the crawling process for each one.
         *
         * @param sessionId unique identifier for this crawling session
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 18.9K bytes
    - Viewed (0)
  2. src/test/java/jcifs/BufferCacheTest.java

            // When
            byte[] buffer = mockBufferCache.getBuffer();
    
            // Then
            assertNotNull(buffer, "getBuffer should never return null");
            assertSame(expectedBuffer, buffer, "Should return configured buffer");
        }
    
        @Test
        @DisplayName("releaseBuffer should accept byte arrays gracefully")
        void testReleaseBufferContract() {
            // Given
            byte[] buffer = new byte[1024];
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  3. src/test/java/jcifs/smb1/ntlmssp/NtlmMessageTest.java

            System.arraycopy(dest, 8, actualPayload, 0, payload.length);
            assertArrayEquals(payload, actualPayload, "Payload copy must match");
        }
    
        @Test
        @DisplayName("getOEMEncoding returns configured OEM encoding")
        void testGetOEMEncoding() {
            assertEquals(Config.DEFAULT_OEM_ENCODING, NtlmMessage.getOEMEncoding(), "OEM encoding should match config’s default value");
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/query/FuzzyQueryCommand.java

         *
         * @param context the query context containing field mappings
         * @param fuzzyQuery the Lucene FuzzyQuery to convert
         * @param boost the boost factor to apply
         * @return OpenSearch QueryBuilder configured for fuzzy matching
         */
        protected QueryBuilder convertFuzzyQuery(final QueryContext context, final FuzzyQuery fuzzyQuery, final float boost) {
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  5. build.gradle.kts

      if (project.name != "okhttp") {
        configure<CheckstyleExtension> {
          config = resources.text.fromArchiveEntry(checkstyleConfig, "google_checks.xml")
          toolVersion = rootProject.libs.versions.checkStyle.get()
          sourceSets = listOf(project.sourceSets["main"])
        }
    
        // Animal Sniffer confirms we generally don't use APIs not on Java 8.
        configure<AnimalSnifferExtension> {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Aug 01 08:06:31 UTC 2025
    - 11.3K bytes
    - Viewed (0)
  6. src/test/java/jcifs/dcerpc/DcerpcHandleTest.java

            @Test
            @DisplayName("Should handle basic send/receive fragment methods")
            void testSendReceiveFragmentMethods() throws IOException {
                // Given: Test handle with configured return values
                handle.setDoSendReceiveFragmentReturn(100);
                handle.setDoReceiveFragmentReturn(50);
    
                // When: Calling fragment methods
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 15.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/job/ExecJob.java

            }
        }
    
        /**
         * Creates a timeout task for this job execution.
         * If timeout is not set or is &lt;= 0, returns null.
         *
         * @return the timeout task, or null if no timeout is configured
         */
        protected TimeoutTask createTimeoutTask() {
            if (timeout <= 0) {
                return null;
            }
            return TimeoutManager.getInstance().addTimeoutTarget(() -> {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  8. docs/features/calls.md

    If the response issues an authorization challenge, OkHttp will ask the [`Authenticator`](https://square.github.io/okhttp/4.x/okhttp/okhttp3/-authenticator/) (if one is configured) to satisfy the challenge. If the authenticator supplies a credential, the request is retried with that credential included.
    
    ## Retrying Requests
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/PopularWordHelper.java

         */
        public PopularWordHelper() {
            // Default constructor
        }
    
        /**
         * Initializes the PopularWordHelper after dependency injection.
         * Sets up the cache with configured size and expiration settings.
         */
        @PostConstruct
        public void init() {
            if (logger.isDebugEnabled()) {
                logger.debug("Initialize {}", this.getClass().getSimpleName());
            }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/pager/CrawlingInfoPager.java

            this.pageNumberList = pageNumberList;
        }
    
        /**
         * Gets the default page size from the Fess configuration.
         *
         * @return the default page size configured in the system
         */
        protected int getDefaultPageSize() {
            return ComponentUtil.getFessConfig().getPagingPageSizeAsInteger();
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.9K bytes
    - Viewed (0)
Back to top