Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for resourceType (3.02 sec)

  1. 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;
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  2. 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;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 16.2K bytes
    - Viewed (0)
  3. 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;
            }
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 18.6K bytes
    - Viewed (0)
Back to top