Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 201 for retrieve (0.04 sec)

  1. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

                        }
                    });
        }
    
        /**
         * Retrieves configuration parameter map for the given configuration name.
         *
         * @param responseData the response data from crawling
         * @param config the configuration name to retrieve
         * @return map of configuration parameters
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 54.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImpl.java

        private static final Logger logger = LogManager.getLogger(FileListIndexUpdateCallbackImpl.class);
    
        /**
         * The key used to specify the pattern for excluding URLs.
         * This constant can be used to retrieve or set the URL exclusion pattern
         * in configuration or processing logic.
         */
        protected static final String URL_EXCLUDE_PATTERN = "url_exclude_pattern";
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 28.9K bytes
    - Viewed (0)
  3. okhttp/src/commonJvmAndroid/kotlin/okhttp3/HttpUrl.kt

     * ```
     *
     * ## What's in a URL?
     *
     * A URL has several components.
     *
     * ### Scheme
     *
     * Sometimes referred to as *protocol*, A URL's scheme describes what mechanism should be used to
     * retrieve the resource. Although URLs have many schemes (`mailto`, `file`, `ftp`), this class only
     * supports `http` and `https`. Use [java.net.URI][URI] for URLs with arbitrary schemes.
     *
     * ### Username and Password
     *
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon May 05 16:01:00 UTC 2025
    - 63.5K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/script/AbstractScriptEngineTest.java

            ScriptEngine retrieved1 = scriptEngineFactory.getScriptEngine("engine1");
            ScriptEngine retrieved2 = scriptEngineFactory.getScriptEngine("engine2");
    
            assertNotNull(retrieved1);
            assertNotNull(retrieved2);
            assertEquals(engine1, retrieved1);
            assertEquals(engine2, retrieved2);
            assertNotSame(retrieved1, retrieved2);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 6.5K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/util/ComponentUtilTest.java

            String retrieved = ComponentUtil.getComponent(String.class);
            assertSame(testInstance, retrieved);
        }
    
        public void test_getComponent_byName_fromMap() {
            Integer testInstance = 42;
            String componentName = "testInteger";
            ComponentUtil.register(testInstance, componentName);
    
            Integer retrieved = ComponentUtil.getComponent(componentName);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/ldap/LdapManager.java

            return new LdapUser(env, username);
        }
    
        /**
         * Retrieves roles for the specified LDAP user based on the provided filters.
         *
         * @param ldapUser the LDAP user to retrieve roles for
         * @param bindDn the bind DN for LDAP connection
         * @param accountFilter the account filter pattern
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 82K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.7.md

    
    ### **Application Autoscaling**
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 308.7K bytes
    - Viewed (1)
  8. src/main/java/org/codelibs/fess/app/service/RelatedContentService.java

         * Configuration settings for Fess application.
         * Contains various configuration parameters used throughout the application.
         */
        @Resource
        protected FessConfig fessConfig;
    
        /**
         * Retrieves a paginated list of related content entities.
         *
         * @param relatedContentPager the pager object containing pagination and search parameters
         * @return a list of RelatedContent entities matching the specified criteria
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.4.md

    * Modifying the default container GC policy parameters ([#27881](https://github.com/kubernetes/kubernetes/pull/27881), [@ronnielai](https://github.com/ronnielai))
    * Kubelet can retrieve host IP even when apiserver has not been contacted ([#27508](https://github.com/kubernetes/kubernetes/pull/27508), [@aaronlevy](https://github.com/aaronlevy))
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  10. guava/src/com/google/common/cache/CacheLoader.java

    import com.google.common.util.concurrent.ListenableFutureTask;
    import java.io.Serializable;
    import java.util.Map;
    import java.util.concurrent.Executor;
    
    /**
     * Computes or retrieves values, based on a key, for use in populating a {@link LoadingCache}.
     *
     * <p>Most implementations will only need to implement {@link #load}. Other methods may be
     * overridden as desired.
     *
     * <p>Usage example:
     *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 9.5K bytes
    - Viewed (0)
Back to top