- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for resourceType (0.1 seconds)
-
src/main/java/jcifs/SmbResourceException.java
* @param message the error message * @param errorCode the SMB error code * @param resourceType the type of resource */ public SmbResourceException(String message, int errorCode, ResourceType resourceType) { super(message, errorCode, Severity.TRANSIENT, Category.RESOURCE); this.resourceType = resourceType; this.availableResources = -1; this.requestedResources = -1; } /**Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 5.6K bytes - Click Count (0) -
src/main/java/jcifs/util/ResourceManager.java
private boolean autoCleanupEnabled = true; /** * Resource holder that tracks resource lifecycle */ private static class ResourceHolder { final String resourceId; final String resourceType; final WeakReference<AutoCloseable> resourceRef; final PhantomReference<AutoCloseable> phantomRef; final long creationTime; final StackTraceElement[] allocationStackTrace;Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 16.2K bytes - Click Count (0) -
src/main/java/org/codelibs/core/io/TraversalUtil.java
for (final Iterator<URL> it = ClassLoaderUtil.getResources(baseName); it.hasNext();) { final URL url = it.next(); final Traverser resourcesType = getTraverser(url, rootPackage, baseName); if (resourcesType != null) { list.add(resourcesType); } } if (list.isEmpty()) { logger.log("WCL0014", rootPackage); return EMPTY_ARRAY; }
Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Thu Jul 31 08:16:49 GMT 2025 - 18.6K bytes - Click Count (0)