Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 201 for retrieve (0.06 sec)

  1. okhttp/src/commonJvmAndroid/kotlin/okhttp3/EventListener.kt

      /**
       * Invoked when OkHttp decides whether to retry after a connectivity failure.
       *
       * OkHttp won't retry when it is configured not to:
       *
       *  * If retries are forbidden with [OkHttpClient.retryOnConnectionFailure]. (OkHttp's defaults
       *    permit retries.)
       *  * If OkHttp already attempted to transmit the request body, and [RequestBody.isOneShot] is
       *    true.
       *
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue May 27 14:58:02 UTC 2025
    - 17.4K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/script/ScriptEngineFactoryTest.java

            assertNotNull(retrieved);
            assertEquals(engine, retrieved);
        }
    
        // Test getScriptEngine with uppercase query
        public void test_getScriptEngine_uppercaseQuery() {
            TestScriptEngine engine = new TestScriptEngine();
            scriptEngineFactory.add("test", engine);
    
            ScriptEngine retrieved = scriptEngineFactory.getScriptEngine("TEST");
            assertNotNull(retrieved);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.1K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.17.md

    the minimum allowed resource version.  Previously when listing resources that had the watch cache disabled clients could retrieve a snapshot at that exact resource version.  If the client requests a resource version newer than the current state, a TimeoutError is returned suggesting the client retry in a few seconds.  This behavior is now consistent for both single item retrieval and list calls, and for when the watch cache is enabled or disabled. ([#72170](https://github.com/kubernetes/kubernetes/pull/72170),...
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Thu Jan 28 10:44:33 UTC 2021
    - 346.2K bytes
    - Viewed (1)
  4. CHANGELOG/CHANGELOG-1.19.md

    - Fixed bug that caused cAdvisor to incorrectly detect single-socket multi-NUMA topology. ([#99209](https://github.com/kubernetes/kubernetes/pull/99209), [@iwankgb](https://github.com/iwankgb)) [SIG Node]
    - Fixes kubelet to retrieve number of sockets from cAdvisor MachineInfo, instead of assuming it to be equal to number of NUMA nodes. ([#99771](https://github.com/kubernetes/kubernetes/pull/99771), [@iwankgb](https://github.com/iwankgb)) [SIG Node]
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Jan 05 05:42:32 UTC 2022
    - 489.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/service/GroupService.java

        @Resource
        protected UserBhv userBhv;
    
        /**
         * Default constructor for GroupService.
         */
        public GroupService() {
            // Default constructor
        }
    
        /**
         * Retrieves a paginated list of groups based on the provided pager criteria.
         * Updates the pager with pagination information including page numbers and ranges.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/MapMaker.java

     * operations. A partially-reclaimed entry is never exposed to the user. Any {@link Map.Entry}
     * instance retrieved from the map's {@linkplain Map#entrySet entry set} is a snapshot of that
     * entry's state at the time of retrieval; such entries do, however, support {@link
     * Map.Entry#setValue}, which simply calls {@link Map#put} on the entry's key.
     *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/ds/DataStoreFactoryTest.java

            DataStore retrieved = dataStoreFactory.getDataStore("myStore");
            assertNotNull(retrieved);
            assertSame(dataStore, retrieved);
        }
    
        // Test getDataStore with non-existing name
        public void test_getDataStore_nonExistingName() {
            DataStore retrieved = dataStoreFactory.getDataStore("nonExisting");
            assertNull(retrieved);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

                }
    
            }
        }
    
        /**
         * Retrieves the access result data from an OpenSearch access result.
         * Handles exceptions that may occur during data retrieval.
         *
         * @param accessResult the access result to extract data from
         * @return the access result data, or null if retrieval fails
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 32.7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/service/UserService.java

        @Resource
        protected FessLoginAssist fessLoginAssist;
    
        /** Fess configuration for system settings */
        @Resource
        protected FessConfig fessConfig;
    
        /**
         * Retrieves a paginated list of users based on the provided pager criteria.
         * Updates the pager with pagination information including total count and page navigation.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/beans/PropertyDesc.java

         *
         * @return whether the property has a setter method
         */
        boolean hasWriteMethod();
    
        /**
         * Returns whether the property value can be retrieved.
         *
         * @return whether the property value can be retrieved
         */
        boolean isReadable();
    
        /**
         * Returns whether the property value can be set.
         *
         * @return whether the property value can be set
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 4.3K bytes
    - Viewed (0)
Back to top