Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for visitDir (0.11 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/Node.java

        /**
         * Traverses this node and potentially its children using the specified visitor.
         *
         * @param visitor the visitor to call back, must not be {@code null}
         * @return {@code true} to visit siblings nodes of this node as well, {@code false} to skip siblings
         */
        boolean accept(@Nonnull NodeVisitor visitor);
    
        /**
         * Returns a new tree starting at this node, filtering the children.
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/reflect/TypeVisitorTest.java

          }
        }.visit(type);
      }
    
      private static void assertVisited(Type type) {
        TypeVisitor visitor = new BaseTypeVisitor();
        try {
          visitor.visit(type);
          fail("Type not visited");
        } catch (UnsupportedOperationException expected) {
        }
        try {
          visitor.visit(new Type[] {type});
          fail("Type not visited");
        } catch (UnsupportedOperationException expected) {
        }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 3.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/query/DefaultQueryBuilder.java

            return queryBuilder.rewrite(queryShardContext);
        }
    
        @Override
        public void visit(final QueryBuilderVisitor visitor) {
            queryBuilder.visit(visitor);
        }
    
        @Override
        public XContentBuilder toXContent(final XContentBuilder builder, final Params params) throws IOException {
            return queryBuilder.toXContent(builder, params);
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/NodeVisitor.java

    package org.apache.maven.api;
    
    import org.apache.maven.api.annotations.Consumer;
    import org.apache.maven.api.annotations.Experimental;
    import org.apache.maven.api.annotations.Nonnull;
    
    /**
     * Defines a hierarchical visitor for collecting dependency node trees.
     *
     * @since 4.0.0
     */
    @Experimental
    @Consumer
    public interface NodeVisitor {
        /**
         * Starts the visit to the specified dependency node.
         *
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Thu Mar 23 05:29:39 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. android/guava/javadoc-link/checker-framework/package-list

    org.checkerframework.framework.test.diagnostics
    org.checkerframework.framework.type
    org.checkerframework.framework.type.treeannotator
    org.checkerframework.framework.type.typeannotator
    org.checkerframework.framework.type.visitor
    org.checkerframework.framework.util
    org.checkerframework.framework.util.defaults
    org.checkerframework.framework.util.dependenttypes
    org.checkerframework.framework.util.element
    org.checkerframework.framework.util.typeinference
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Dec 07 19:00:31 UTC 2017
    - 3.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java

            if (!baseDir.exists()) {
                return 0;
            }
            try {
                final FilePurgeVisitor visitor = new FilePurgeVisitor(baseDir.toPath(), imageExtention, expiry);
                Files.walkFileTree(baseDir.toPath(), visitor);
                return visitor.getCount();
            } catch (final Exception e) {
                throw new JobProcessingException(e);
            }
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:20:39 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  7. guava/javadoc-link/checker-framework/package-list

    org.checkerframework.framework.test.diagnostics
    org.checkerframework.framework.type
    org.checkerframework.framework.type.treeannotator
    org.checkerframework.framework.type.typeannotator
    org.checkerframework.framework.type.visitor
    org.checkerframework.framework.util
    org.checkerframework.framework.util.defaults
    org.checkerframework.framework.util.dependenttypes
    org.checkerframework.framework.util.element
    org.checkerframework.framework.util.typeinference
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Dec 07 19:00:31 UTC 2017
    - 3.8K bytes
    - Viewed (0)
  8. docs/fr/docs/deployment/docker.md

    Vous verrez quelque chose comme :
    
    ```JSON
    {"item_id": 5, "q": "somequery"}
    ```
    
    ## Documentation interactive de l'API
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  9. api/go1.txt

    pkg go/ast, type ValueSpec struct, Names []*Ident
    pkg go/ast, type ValueSpec struct, Type Expr
    pkg go/ast, type ValueSpec struct, Values []Expr
    pkg go/ast, type Visitor interface { Visit }
    pkg go/ast, type Visitor interface, Visit(Node) Visitor
    pkg go/build, const AllowBinary ImportMode
    pkg go/build, const FindOnly ImportMode
    pkg go/build, func ArchChar(string) (string, error)
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top