- Sort Score
- Result 10 results
- Languages All
Results 201 - 210 of 408 for fallback (0.41 sec)
-
android/guava-tests/test/com/google/common/util/concurrent/FutureCallbackTest.java
MockCallback callback = new MockCallback("foo"); addCallback(f, callback, directExecutor()); f.set("foo"); } public void testExecutorSuccess() { CountingSameThreadExecutor ex = new CountingSameThreadExecutor(); SettableFuture<String> f = SettableFuture.create(); MockCallback callback = new MockCallback("foo"); Futures.addCallback(f, callback, ex); f.set("foo");
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Jul 14 14:44:08 UTC 2025 - 6.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/user/cbean/ca/bs/BsRoleCA.java
if (queryLambda != null) { queryLambda.callback(cq); } FilterAggregationBuilder builder = regFilterA(name, cq.getQuery()); if (opLambda != null) { opLambda.callback(builder); } if (aggsLambda != null) { RoleCA ca = new RoleCA(); aggsLambda.callback(ca); ca.getAggregationBuilderList().forEach(builder::subAggregation);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 9K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.27.md
- Fallback from OpenAPI V3 to V2 when the OpenAPI V3 document is invalid or incomplete. ([#117980](https://github.com/kubernetes/kubernetes/pull/117980), [@seans3](https://github.com/seans3)) [SIG CLI]
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Wed Jul 17 07:48:22 UTC 2024 - 466.3K bytes - Viewed (2) -
src/main/java/org/codelibs/fess/ds/callback/IndexUpdateCallback.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.ds.callback; import java.util.Map; import org.codelibs.fess.entity.DataStoreParams; /** * Callback interface for handling index update operations during data store processing. * This interface provides methods for storing documents, tracking processing metrics,
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/AbstractDataStore.java
/** * Store the data. * @param dataConfig The data configuration. * @param callback The callback. * @param paramMap The parameters. * @param scriptMap The script map. * @param defaultDataMap The default data map. */ protected abstract void storeData(DataConfig dataConfig, IndexUpdateCallback callback, DataStoreParams paramMap, Map<String, String> scriptMap, Map<String, Object> defaultDataMap);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.5K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/DispatcherCleanupTest.kt
import org.junit.jupiter.api.Test class DispatcherCleanupTest { @StartStop private val server = MockWebServer() @Test fun testFinish() { val okhttp = OkHttpClient() val callback = object : Callback { override fun onFailure( call: Call, e: IOException, ) {} override fun onResponse( call: Call, response: Response, ) {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Jun 18 12:28:21 UTC 2025 - 1.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/DataStore.java
package org.codelibs.fess.ds; import org.codelibs.fess.ds.callback.IndexUpdateCallback; import org.codelibs.fess.entity.DataStoreParams; import org.codelibs.fess.opensearch.config.exentity.DataConfig; /** * The interface for DataStore. */ public interface DataStore { /** * Store the data. * @param config The data configuration. * @param callback The callback. * @param initParamMap The initial parameters.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/SearchEngineUtil.java
* * @param index the name of the index to scroll through * @param callback the function to apply to each search hit, returning true to continue or false to stop * @return the number of documents processed */ public static long scroll(final String index, final Function<SearchHit, Boolean> callback) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/CrawlingConfigHelperTest.java
ComponentUtil.register(new WebConfigBhv() { @Override public ListResultBean<WebConfig> selectList(final CBCall<WebConfigCB> cbLambda) { cbLambda.callback(cb); final ListResultBean<WebConfig> list = new ListResultBean<>(); list.add((WebConfig) crawlingConfigHelper.getCrawlingConfig("W1"));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 34.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/ldap/LdapUserTest.java
// Verify parameters assertSame(ldapUser, user); assertEquals("dc=example,dc=com", baseDn); assertEquals("(uid=%s)", accountFilter); assertEquals("(memberOf=%s)", groupFilter); // Test callback String[] callbackRoles = new String[] { "role1", "role2" };
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 16.6K bytes - Viewed (0)