- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 74 for visit (0.02 sec)
-
SUPPORT.md
Here are some resources to help you understand and use Istio: - For in-depth information about how to use Istio, visit [istio.io](https://istio.io) - To ask questions and get assistance from our community, visit [GitHub Discussions](https://github.com/istio/istio/discussions)
Registered: 2025-05-28 22:53 - Last Modified: 2024-02-12 19:00 - 411 bytes - Viewed (0) -
android/guava/src/com/google/common/reflect/TypeVisitor.java
* new TypeVisitor() { * protected void visitParameterizedType(ParameterizedType t) { * visit(t.getOwnerType()); * visit(t.getActualTypeArguments()); * } * protected void visitGenericArrayType(GenericArrayType t) { * visit(t.getGenericComponentType()); * } * protected void visitTypeVariable(TypeVariable<?> t) { * throw new IllegalArgumentException("Cannot contain type variable."); * }
Registered: 2025-05-30 12:43 - Last Modified: 2025-05-13 17:27 - 3.6K bytes - Viewed (0) -
src/cmd/cgo/ast.go
case *ast.CommClause: f.walk(n.Comm, ctxStmt, visit) f.walk(n.Body, ctxStmt, visit) case *ast.SelectStmt: f.walk(n.Body, ctxStmt, visit) case *ast.ForStmt: f.walk(n.Init, ctxStmt, visit) f.walk(&n.Cond, ctxExpr, visit) f.walk(n.Post, ctxStmt, visit) f.walk(n.Body, ctxStmt, visit) case *ast.RangeStmt: f.walk(&n.Key, ctxExpr, visit) f.walk(&n.Value, ctxExpr, visit)
Registered: 2025-05-27 11:13 - Last Modified: 2024-10-14 15:47 - 14.3K bytes - Viewed (0) -
guava-tests/test/com/google/common/reflect/TypeVisitorTest.java
void visitParameterizedType(ParameterizedType t) { visit(t.getActualTypeArguments()); } @Override void visitTypeVariable(TypeVariable<?> t) { visit(t.getBounds()); } }.visit(type); } private static void assertVisited(Type type) { TypeVisitor visitor = new BaseTypeVisitor(); try { visitor.visit(type); fail("Type not visited");
Registered: 2025-05-30 12:43 - Last Modified: 2024-12-19 18:03 - 3.8K bytes - Viewed (0) -
guava/src/com/google/common/reflect/TypeVisitor.java
* new TypeVisitor() { * protected void visitParameterizedType(ParameterizedType t) { * visit(t.getOwnerType()); * visit(t.getActualTypeArguments()); * } * protected void visitGenericArrayType(GenericArrayType t) { * visit(t.getGenericComponentType()); * } * protected void visitTypeVariable(TypeVariable<?> t) { * throw new IllegalArgumentException("Cannot contain type variable."); * }
Registered: 2025-05-30 12:43 - Last Modified: 2025-05-13 17:27 - 3.6K bytes - Viewed (0) -
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) {
Registered: 2025-05-28 11:36 - Last Modified: 2024-08-19 15:07 - 11.8K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/NodeVisitor.java
* * @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 * specified dependency node's children and proceed to its next sibling */
Registered: 2025-05-24 08:56 - Last Modified: 2023-03-23 05:29 - 1.8K bytes - Viewed (0) -
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() {
Registered: 2025-05-28 11:36 - Last Modified: 2024-06-28 08:29 - 6.5K bytes - Viewed (0) -
src/cmd/cgo/ast_go118.go
"go/ast" "go/token" ) func (f *File) walkUnexpected(x interface{}, context astContext, visit func(*File, interface{}, astContext)) { switch n := x.(type) { default: error_(token.NoPos, "unexpected type %T in walk", x) panic("unexpected type") case *ast.IndexListExpr: f.walk(&n.X, ctxExpr, visit) f.walk(n.Indices, ctxExpr, visit) } } func funcTypeTypeParams(n *ast.FuncType) *ast.FieldList { return n.TypeParams
Registered: 2025-05-27 11:13 - Last Modified: 2022-11-30 21:45 - 730 bytes - Viewed (0) -
CITATION.cff
# This CITATION.cff file was generated with cffinit. # Visit https://bit.ly/cffinit to generate yours today! cff-version: 1.2.0 title: FastAPI message: >- If you use this software, please cite it using the metadata from this file. type: software authors: - given-names: Sebastián family-names: RamÃrez email: ******@****.*** identifiers: repository-code: 'https://github.com/fastapi/fastapi'
Registered: 2025-05-25 07:19 - Last Modified: 2024-07-29 23:35 - 614 bytes - Viewed (0)