Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 838 for visited (0.17 sec)

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

    /**
     * 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.
         *
         * @param node the dependency node to visit
         * @return <code>true</code> to visit the specified dependency node's children, <code>false</code> to skip the
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Mar 23 05:29:39 GMT 2023
    - 1.8K bytes
    - Viewed (0)
  2. 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.
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Dec 08 08:42:44 GMT 2023
    - 3.2K bytes
    - Viewed (0)
  3. callbacks/visit_map_test.go

    chenrui <******@****.***> 1647532411 +0800
    Go
    - Registered: Sun Feb 25 09:35:10 GMT 2024
    - Last Modified: Thu Mar 17 15:53:31 GMT 2022
    - 780 bytes
    - Viewed (0)
  4. build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/sources/JavaSourceQueries.kt

                else super.visit(declaration, arg)
    
            override fun visit(declaration: EnumDeclaration, arg: Unit?): Boolean? =
                if (declaration.matchesNameAndIsSince(classSimpleName, version)) true
                else super.visit(declaration, arg)
        }
    
    
    private
    fun isSinceJavaFieldVisitorFor(field: JApiField, version: String) =
        object : PredicateVisitor() {
    
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Fri Dec 01 20:12:19 GMT 2023
    - 6.6K bytes
    - Viewed (0)
  5. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/SourceMetaDataVisitor.java

        }
    
        @Override
        public void visit(PackageDeclaration packageDeclaration, ClassMetaDataRepository<ClassMetaData> repository) {
            this.packageName = packageDeclaration.getNameAsString();
            super.visit(packageDeclaration, repository);
        }
    
        @Override
        public void visit(ClassOrInterfaceDeclaration classDeclaration, ClassMetaDataRepository<ClassMetaData> repository) {
    Java
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Thu Sep 21 13:27:02 GMT 2023
    - 11.7K bytes
    - Viewed (0)
  6. build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/source/model/TypeMetaDataTest.groovy

            1 * visitor.visitText('<')
            1 * visitor.visitType('OtherType')
            1 * visitor.visitText('>')
            0 * visitor._
        }
    
        def visitsSignatureForWildcardType() {
            TypeMetaData.SignatureVisitor visitor = Mock()
            type.setWildcard()
    
            when:
            type.visitSignature(visitor)
    
            then:
            1 * visitor.visitText('?')
            0 * visitor._
        }
    Groovy
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 4.6K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/apidiscovery/v2beta1/generated.proto

      optional string singularResource = 4;
    
      // verbs is a list of supported API operation types (this includes
      // but is not limited to get, list, watch, create, update, patch,
      // delete, deletecollection, and proxy).
      // +listType=set
      repeated string verbs = 5;
    
      // shortNames is a list of suggested short names of the resource.
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 7.8K bytes
    - Viewed (0)
  8. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/model/TypeMetaData.java

        public void visitSignature(SignatureVisitor visitor) {
            if (wildcard) {
                visitor.visitText("?");
            } else if (upperBounds != null) {
                visitor.visitText("? extends ");
                upperBounds.visitSignature(visitor);
            } else if (lowerBounds != null) {
                visitor.visitText("? super ");
                lowerBounds.visitSignature(visitor);
            } else {
    Java
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 6.1K bytes
    - Viewed (0)
  9. docs/sts/README.md

    - Eliminates the need to embed long-term credentials with an application.
    - Eliminates the need to provide access to buckets and objects without having to define static credentials.
    - Temporary credentials have a limited lifetime, there is no need to rotate them or explicitly revoke them. Expired temporary credentials cannot be reused.
    
    ## Identity Federation
    
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Tue Oct 25 00:44:15 GMT 2022
    - 7.8K bytes
    - Viewed (1)
  10. maven-core/src/main/java/org/apache/maven/internal/impl/AbstractNode.java

        @Override
        public boolean accept(NodeVisitor visitor) {
            if (visitor.enter(this)) {
                for (Node child : getChildren()) {
                    if (!child.accept(visitor)) {
                        break;
                    }
                }
            }
            return visitor.leave(this);
        }
    
        @Override
        public Node filter(Predicate<Node> filter) {
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 2.4K bytes
    - Viewed (0)
Back to top