- Sort Score
- Result 10 results
- Languages All
Results 231 - 240 of 372 for Watching (0.03 sec)
-
guava/src/com/google/common/util/concurrent/ExecutionList.java
executeListener(reversedList.runnable, reversedList.executor); reversedList = reversedList.next; } } /** * Submits the given runnable to the given {@link Executor} catching and logging all {@linkplain * RuntimeException runtime exceptions} thrown by the executor. */ @SuppressWarnings("CatchingUnchecked") // sneaky checked exception
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 6.9K bytes - Viewed (0) -
cmd/endpoint.go
if endpoint.IsLocal { gridLocal = u } gridHosts = append(gridHosts, u) } } return gridHosts, gridLocal } // FindGridHostsFromPeerPool will return a matching peerPool from provided peer (as string) func (l EndpointServerPools) FindGridHostsFromPeerPool(peer string) []int { if peer == "" { return nil } var pools []int for _, ep := range l {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sun Mar 30 00:56:02 UTC 2025 - 34.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbConstants.java
/** Milliseconds between 1970 and 1601 */ long MILLISECONDS_BETWEEN_1970_AND_1601 = 11644473600000L; /** Default timezone */ TimeZone TZ = TimeZone.getDefault(); /** Whether to use batching */ boolean USE_BATCHING = Config.getBoolean("jcifs.smb1.smb.client.useBatching", true); /** OEM encoding */ String OEM_ENCODING = Config.getProperty("jcifs.smb1.encoding", Config.DEFAULT_OEM_ENCODING);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 10.3K bytes - Viewed (0) -
api/maven-api-xml/src/main/java/org/apache/maven/api/xml/XmlService.java
* </ul> * * <p>Children combination modes (specified by {@code combine.children} attribute):</p> * <ul> * <li>{@code merge} (default): Merges elements with matching names</li> * <li>{@code append}: Adds elements as siblings</li> * </ul> * * <p>Self combination modes (specified by {@code combine.self} attribute):</p> * <ul>
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Apr 03 13:33:59 UTC 2025 - 9.2K bytes - Viewed (0) -
README.md
- **Thread Safety**: Components support concurrent access - **DFS Support**: Distributed File System resolution - **Streaming Operations**: Efficient directory listings and file operations - **Buffer Caching**: Optimized buffer management - **DCE/RPC Protocol**: Support for advanced operations ## Quick Start ### Basic Usage ```java import jcifs.CIFSContext; import jcifs.context.SingletonContext;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 09:24:52 UTC 2025 - 6.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/thumbnail/ThumbnailManagerTest.java
docMap.put("_id", "docid1"); docMap.put("url", "http://example.com"); boolean result = thumbnailManager.offer(docMap); assertTrue(result); } // Test offer with no matching generator public void test_offer_noMatchingGenerator() { TestThumbnailGenerator generator = new TestThumbnailGenerator(); generator.available = true; generator.target = false;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 18.7K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtStatus.java
int NT_STATUS_PATH_NOT_COVERED = 0xC0000257; /** The IO operation on the reparse point failed */ int NT_STATUS_IO_REPARSE_TAG_NOT_HANDLED = 0xC0000279; /** No more files were found matching the file specification */ int NT_STATUS_NO_MORE_FILES = 0x80000006; /** Array of all NT status codes defined in this interface */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 14.9K bytes - Viewed (0) -
src/test/java/jcifs/SmbTreeTest.java
/** * Setup method executed before each test. */ @BeforeEach void setUp() { // Common setup if needed } /** * Test for unwrap() method with matching type. * Verifies that unwrap returns the correct instance when the type matches. */ @Test void testUnwrap_withMatchingType() { // Create a custom SmbTree type for testing
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.2K bytes - Viewed (0) -
src/main/java/jcifs/SmbResource.java
* @throws CIFSException if an error occurs accessing the resource */ CloseableIterator<SmbResource> children() throws CIFSException; /** * Fetch children matching pattern, server-side filtering * * <p> * The wildcard expression may consist of two special meta * characters in addition to the normal filename characters. The '*'
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 28K bytes - Viewed (1) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/Sources.java
return null; } } /** * Implementation of {@link ModelSource} that extends {@link PathSource} with model-specific * functionality. This implementation uses request-scoped caching ({@link CacheRetention#REQUEST_SCOPED}) * since it represents a POM file that is actively being built and may change during the build process. * <p> * The request-scoped retention policy ensures that:
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Feb 07 00:45:02 UTC 2025 - 8K bytes - Viewed (0)