Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getChild (0.04 sec)

  1. src/main/java/jcifs/internal/smb2/lease/DirectoryCacheEntry.java

            }
        }
    
        /**
         * Get a specific child
         *
         * @param name child name
         * @return file info or null if not found
         */
        public FileInfo getChild(String name) {
            lock.readLock().lock();
            try {
                lastAccessTime = System.currentTimeMillis();
                return children.get(name);
            } finally {
                lock.readLock().unlock();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 02:21:31 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  2. docs/smb3-features/04-directory-leasing-design.md

                lastAccessTime = System.currentTimeMillis();
                return new ArrayList<>(children.values());
            } finally {
                lock.readLock().unlock();
            }
        }
        
        public FileInfo getChild(String name) {
            lock.readLock().lock();
            try {
                lastAccessTime = System.currentTimeMillis();
                return children.get(name);
            } finally {
                lock.readLock().unlock();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 36.2K bytes
    - Viewed (0)
  3. api/maven-api-xml/src/main/java/org/apache/maven/api/xml/XmlNode.java

        @Nonnull
        default List<XmlNode> getChildren() {
            return children();
        }
    
        @Deprecated(since = "4.0.0", forRemoval = true)
        @Nullable
        default XmlNode getChild(String name) {
            return child(name);
        }
    
        @Deprecated(since = "4.0.0", forRemoval = true)
        @Nullable
        default Object getInputLocation() {
            return inputLocation();
        }
    
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Sat Jul 19 11:09:56 UTC 2025
    - 18.2K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/Project.java

        @Nonnull
        Model getModel();
    
        /**
         * Shorthand method.
         *
         * @return the build element of the project model
         */
        @Nonnull
        default Build getBuild() {
            Build build = getModel().getBuild();
            return build != null ? build : Build.newInstance();
        }
    
        /**
         * Returns the path to the pom file for this project.
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Feb 27 11:07:03 UTC 2025
    - 10.6K bytes
    - Viewed (0)
Back to top