Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 66 for danger (0.58 sec)

  1. okhttp/src/jvmTest/kotlin/okhttp3/CacheTest.kt

        val response2 = get(server.url("/"))
        assertThat(response2.body.string()).isEqualTo("A")
        assertThat(response2.header("Warning")).isNull()
      }
    
      @Test
      fun getHeadersRetainsCached200LevelWarnings() {
        server.enqueue(
          MockResponse
            .Builder()
            .addHeader("Warning: 299 test danger")
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 16 09:39:51 UTC 2025
    - 113.6K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.31.md

    2](https://console.cloud.google.com/artifacts/docker/k8s-artifacts-prod/southamerica-east1/images/kube-controller-manager) | [amd64](https://console.cloud.google.com/artifacts/docker/k8s-artifacts-prod/southamerica-east1/images/kube-controller-manager-amd64), [arm64](https://console.cloud.google.com/artifacts/docker/k8s-artifacts-prod/southamerica-east1/images/kube-controller-manager-arm64), [ppc64le](https://console.cloud.google.com/artifacts/docker/k8s-artifacts-prod/southamerica-east1/images/...
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Aug 13 19:49:57 UTC 2025
    - 429.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/service/CharMappingService.java

         * <p>
         * This method fetches character mapping items with pagination support and updates
         * the pager with the current page information including total count and page ranges.
         * </p>
         *
         * @param dictId the dictionary ID to retrieve character mappings from
         * @param charMappingPager the pager object containing pagination parameters
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/api/WebApiManagerTest.java

        }
    
        public void test_matches_withNullRequest() {
            // Test null request handling
            WebApiManager manager = new TestWebApiManager("/api");
            assertFalse(manager.matches(null));
        }
    
        public void test_matches_withEmptyPath() {
            // Test empty path matching
            WebApiManager manager = new TestWebApiManager("");
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 26.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/dict/DictionaryManager.java

        /**
         * Default constructor for DictionaryManager.
         * Creates a new dictionary manager with an empty creator list.
         */
        public DictionaryManager() {
            // Default constructor
        }
    
        /**
         * Initializes the dictionary manager after construction.
         * Sets up the relationship between this manager and all registered creators.
         */
        @PostConstruct
        public void init() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 7.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/dict/DictionaryFile.java

        public Date getTimestamp() {
            return timestamp;
        }
    
        /**
         * Sets the dictionary manager for this file and returns this instance.
         *
         * @param dictionaryManager the dictionary manager to set
         * @return this dictionary file instance for method chaining
         */
        public DictionaryFile<T> manager(final DictionaryManager dictionaryManager) {
            this.dictionaryManager = dictionaryManager;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/api/engine/SearchEngineApiManager.java

        /**
         * Default constructor.
         * Initializes the API manager with the admin server path prefix.
         */
        public SearchEngineApiManager() {
            super();
            setPathPrefix(ADMIN_SERVER);
        }
    
        /**
         * Registers this API manager with the web API manager factory.
         * Called automatically after construction via @PostConstruct.
         */
        @PostConstruct
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 12.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/JobHelper.java

        /** Thread-local storage for job runtime information */
        protected ThreadLocal<LaJobRuntime> jobRuntimeLocal = new ThreadLocal<>();
    
        /**
         * Registers a scheduled job with the job manager.
         *
         * @param scheduledJob the scheduled job to register
         */
        public void register(final ScheduledJob scheduledJob) {
            final JobManager jobManager = ComponentUtil.getJobManager();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 10.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/base/FessSearchAction.java

                        tagList.toArray(new String[tagList.size()]), null, null, null));
            }
            return super.hookBefore(runtime);
        }
    
        /**
         * Returns the login manager for this action. Search actions do not require
         * a login manager as they handle authentication differently.
         *
         * @return an empty OptionalThing as search actions don't use login managers
         */
        @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 13.8K bytes
    - Viewed (0)
  10. okhttp-sse/src/main/kotlin/okhttp3/sse/EventSource.kt

         * asynchronous process to connect the socket. Once that succeeds or fails, `listener` will be
         * notified. The caller must cancel the returned event source when it is no longer in use.
         */
        fun newEventSource(
          request: Request,
          listener: EventSourceListener,
        ): EventSource
    
        companion object {
          /**
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 30 11:47:47 UTC 2025
    - 2.5K bytes
    - Viewed (0)
Back to top