- Sort Score
- Result 10 results
- Languages All
Results 111 - 120 of 487 for invokes (0.04 sec)
-
guava/src/com/google/common/base/Suppliers.java
* href="http://en.wikipedia.org/wiki/Memoization">memoization</a> * * <p>The returned supplier is thread-safe. The delegate's {@code get()} method will be invoked at * most once unless the underlying {@code get()} throws an exception. The supplier's serialized * form does not contain the cached value, which will be recalculated when {@code get()} is called
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 16.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans2/Trans2QueryFSInformationResponseTest.java
Object result = createInfoMethod.invoke(response); assertNotNull(result); assertTrue(result instanceof SmbInfoAllocation); // Test FS_SIZE_INFO response = new Trans2QueryFSInformationResponse(config, FileSystemInformation.FS_SIZE_INFO); result = createInfoMethod.invoke(response); assertNotNull(result);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.9K bytes - Viewed (0) -
src/test/java/jcifs/smb/PreauthIntegrityTest.java
Method updateMethod = findMethod(transport.getClass(), "updatePreauthHash", byte[].class); updateMethod.setAccessible(true); updateMethod.invoke(transport, testData); } catch (Exception e) { fail("Thread failed: " + e.getMessage()); } finally { doneLatch.countDown(); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 10.5K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ForwardingBlockingDeque.java
* * <p><b>{@code default} method warning:</b> This class does <i>not</i> forward calls to {@code * default} methods. Instead, it inherits their default implementations. When those implementations * invoke methods, they invoke methods on the {@code ForwardingBlockingDeque}. * * <p>The {@code standard} methods are not guaranteed to be thread-safe, even when all of the * methods that they depend on are thread-safe. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 4.3K bytes - Viewed (0) -
guava/src/com/google/common/collect/ForwardingSetMultimap.java
* * <p><b>{@code default} method warning:</b> This class does <i>not</i> forward calls to {@code * default} methods. Instead, it inherits their default implementations. When those implementations * invoke methods, they invoke methods on the {@code ForwardingSetMultimap}. * * @author Kurt Alfred Kluever * @since 3.0 */ @GwtCompatible
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 2.2K bytes - Viewed (0) -
guava/src/com/google/common/collect/ForwardingIterator.java
* methods were introduced</a>. For newer methods, like {@code forEachRemaining}, it inherits their * default implementations. When those implementations invoke methods, they invoke methods on the * {@code ForwardingIterator}. * * @author Kevin Bourrillion * @since 2.0 */ @GwtCompatible public abstract class ForwardingIterator<T extends @Nullable Object> extends ForwardingObject
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 2.1K bytes - Viewed (0) -
docs/em/docs/advanced/openapi-callbacks.md
👉 💼, ⚫️ `str`: ```Python "{$callback_url}/invoices/{$request.body.id}" ``` , 🚥 👆 🛠️ 👩💻 (🔢 👩💻) 📨 📨 *👆 🛠️* : ``` https://yourapi.com/invoices/?callback_url=https://www.external.org/events ``` ⏮️ 🎻 💪: ```JSON { "id": "2expen51ve", "customer": "Mr. Richie Rich",
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 6.5K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/AbstractFutureState.java
import com.google.j2objc.annotations.J2ObjCIncompatible; import com.google.j2objc.annotations.ReflectionSupport; import com.google.j2objc.annotations.RetainedLocalRef; import java.lang.invoke.MethodHandles; import java.lang.invoke.VarHandle; import java.lang.reflect.Field; import java.security.PrivilegedActionException; import java.security.PrivilegedExceptionAction; import java.util.Locale;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 34.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exec/CrawlerTest.java
String result1 = (String) method.invoke(crawler, dataMap, "key1", "default"); assertEquals("value1", result1); // Test with empty value String result2 = (String) method.invoke(crawler, dataMap, "key2", "default"); assertEquals("default", result2); // Test with null value String result3 = (String) method.invoke(crawler, dataMap, "key3", "default");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 30.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/CrawlingConfigHelperTest.java
assertNull(getIdMethod.invoke(crawlingConfigHelper, (String) null)); assertNull(getIdMethod.invoke(crawlingConfigHelper, "")); assertNull(getIdMethod.invoke(crawlingConfigHelper, "W")); assertEquals("123", getIdMethod.invoke(crawlingConfigHelper, "W123")); assertEquals("abc", getIdMethod.invoke(crawlingConfigHelper, "Fabc"));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 34.9K bytes - Viewed (0)