- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 377 for visite (0.81 seconds)
-
docs/pt/docs/tutorial/security/oauth2-jwt.md
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Wed Nov 12 16:23:57 GMT 2025 - 11.4K bytes - Click Count (0) -
android/guava/src/com/google/common/reflect/TypeVisitor.java
* } * }.visit(type); * } * * <p>One {@code Type} is visited at most once. The second time the same type is visited, it's * ignored by {@link #visit}. This avoids infinite recursion caused by recursive type bounds. * * <p>This class is not thread safe. * * @author Ben Yu */ abstract class TypeVisitor { private final Set<Type> visited = new HashSet<>(); /**Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Tue May 13 17:27:14 GMT 2025 - 3.6K bytes - Click Count (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/JavadocLexer.java
* limitations under the License. */ package gradlebuild.docs.dsl.docbook; public interface JavadocLexer { /** * Visits the tokens in the input stream for this lexer. Reads to the end of the input. */ void visit(TokenVisitor visitor); class TokenVisitor { void onStartHtmlElement(String name) { } void onHtmlElementAttribute(String name, String value) {Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Wed Dec 09 08:14:05 GMT 2020 - 1.3K bytes - Click Count (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/NullabilityBreakingChangesRule.groovy
return null } private static List<Boolean> typeParametersNullabilityOf(CtClass ctClass) { NullableClassTypeParametersVisitor visitor = new NullableClassTypeParametersVisitor() new ClassReader(byteCodeFrom(ctClass)).accept(visitor, 0) return visitor.typeParametersNullability } static class NullableClassTypeParametersVisitor extends ClassVisitor {Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Mon Oct 27 09:26:32 GMT 2025 - 15.4K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlan.java
return sortedNodes; } // Helper method to visit a node private static void visitNode(BuildStep node, Set<BuildStep> visited, List<BuildStep> sortedNodes) { if (visited.add(node)) { // For each successor of the current node, visit unvisited successors node.successors.forEach(successor -> visitNode(successor, visited, sortedNodes)); sortedNodes.add(node); } }Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Mar 28 12:11:25 GMT 2025 - 6.1K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/DefaultGraphConflictResolver.java
return g; } List<MetadataGraphVertex> visited = new ArrayList<>(g.getVertices().size()); visit(g.getEntry(), visited, g); List<MetadataGraphVertex> dropList = new ArrayList<>(g.getVertices().size()); // collect drop list for (MetadataGraphVertex v : g.getVertices()) { if (!visited.contains(v)) { dropList.add(v); } }Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Jul 23 17:27:08 GMT 2025 - 7.4K bytes - Click Count (0) -
build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/docbook/BasicJavadocLexerTest.groovy
lexer.visit(visitor) then: 1 * visitor.onStartJavadocTag('tag') 1 * visitor.onText('some value') 1 * visitor.onEndJavadocTag('tag') 1 * visitor.onEnd() 0 * visitor._ } def javadocTagCanBeEmpty() { when: lexer.pushText("{@empty}") lexer.visit(visitor) then: 1 * visitor.onStartJavadocTag('empty')Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Wed Dec 09 08:14:05 GMT 2020 - 6K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/DefaultClasspathTransformation.java
ClasspathContainer cpc; List<MetadataGraphVertex> visited; // ----------------------------------------------------------------------- protected ClasspathGraphVisitor(MetadataGraph cleanGraph, ClasspathContainer cpc) { this.cpc = cpc; this.graph = cleanGraph; visited = new ArrayList<>(cleanGraph.getVertices().size()); }Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Jul 23 17:27:08 GMT 2025 - 5.1K bytes - Click Count (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/HtmlToXmlJavadocLexer.java
blockContent.add("tr"); blockContent.add("dl"); } @Override public void visit(TokenVisitor visitor) { lexer.visit(new VisitorImpl(visitor)); } private class VisitorImpl extends TokenVisitor { private final TokenVisitor visitor; private final LinkedList<String> elementStack = new LinkedList<String>();
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Wed Dec 09 08:14:05 GMT 2020 - 5.8K bytes - Click Count (0) -
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 theCreated: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Thu Mar 23 05:29:39 GMT 2023 - 1.8K bytes - Click Count (0)