Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 103 for visit (0.01 sec)

  1. 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)
  2. 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)
  3. build-logic/java-api-extractor/src/test/groovy/org/gradle/internal/tools/api/ApiClassExtractorTest.groovy

            when:
            def cr = new ClassReader(api.extractApiClassFrom(api.classes.A))
            def stubVersion = 0
            cr.accept(new ClassVisitor(Opcodes.ASM7) {
                @Override
                void visit(int version, int access, String name, String signature, String superName, String[] interfaces) {
                    stubVersion = version
                }
            }, 0)
    
            then:
            stubVersion == expectedVersion
    Registered: 2025-05-28 11:36
    - Last Modified: 2024-06-27 14:27
    - 14.1K bytes
    - Viewed (0)
  4. callbacks/associations.go

    // if values kind is Slice/Array, check all items have been saved
    var visitMapStoreKey = "gorm:saved_association_map"
    
    func checkAssociationsSaved(db *gorm.DB, values reflect.Value) bool {
    	if visit, ok := db.Get(visitMapStoreKey); ok {
    		if v, ok := visit.(*visitMap); ok {
    			if loadOrStoreVisitMap(v, values) {
    				return true
    			}
    		}
    	} else {
    		vistMap := make(visitMap)
    		loadOrStoreVisitMap(&vistMap, values)
    Registered: 2025-05-25 09:35
    - Last Modified: 2025-02-13 06:16
    - 14.4K bytes
    - Viewed (0)
  5. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/NullabilityBreakingChangesRule.groovy

            List<Boolean> typeParametersNullability = []
    
            NullableClassTypeParametersVisitor() {
                super(AsmConstants.ASM_LEVEL)
            }
    
            @Override
            void visit(int version, int access, String name, String signature, String superName, String[] interfaces) {
                if (signature != null) {
                    new SignatureReader(signature).accept(new SignatureVisitor(AsmConstants.ASM_LEVEL) {
    Registered: 2025-05-28 11:36
    - Last Modified: 2025-05-15 17:05
    - 14K bytes
    - Viewed (0)
  6. docs/sts/web-identity.md

    ```
    mc admin config get myminio identity_openid
    identity_openid config_url=https://accounts.google.com/.well-known/openid-configuration client_id=843351d4-1080-11ea-aa20-271ecba3924a
    ```
    
    Testing with an example
    > Visit [Google Developer Console](https://console.cloud.google.com) under Project, APIs, Credentials to get your OAuth2 client credentials. Add `http://localhost:8080/oauth2/callback` as a valid OAuth2 Redirect URL.
    
    ```
    Registered: 2025-05-25 19:28
    - Last Modified: 2024-07-10 20:16
    - 18.9K bytes
    - Viewed (0)
  7. manifests/addons/dashboards/istio-extension-dashboard.json

              "expr": "avg(envoy_wasm_remote_load_cache_negative_hits)",
              "interval": "",
              "legendFormat": "negative hits",
              "refId": "C"
            }
          ],
          "title": "Cache Visit",
          "type": "timeseries"
        },
        {
          "datasource": {
            "type": "prometheus",
            "uid": "${datasource}"
          },
          "fieldConfig": {
            "defaults": {
    Registered: 2025-05-28 22:53
    - Last Modified: 2024-11-18 17:10
    - 20K bytes
    - Viewed (0)
  8. guava/src/com/google/common/reflect/Types.java

            result.set(t.getGenericComponentType());
          }
    
          @Override
          void visitClass(Class<?> t) {
            result.set(t.getComponentType());
          }
        }.visit(type);
        return result.get();
      }
    
      /**
       * Returns {@code ? extends X} if any of {@code bounds} is a subtype of {@code X[]}; or null
       * otherwise.
       */
    Registered: 2025-05-30 12:43
    - Last Modified: 2025-02-13 17:34
    - 22.9K bytes
    - Viewed (0)
  9. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/JavadocConverter.java

            handler.add(new UnknownJavadocTagHandler(nodes, document, listener));
            handler.add(new UnknownHtmlElementHandler(nodes, document, listener));
    
            lexer.visit(handler);
    
            return new DocCommentImpl(nodes.getElements());
        }
    
        private static class DocCommentImpl implements DocComment {
            private final List<Element> nodes;
    
    Registered: 2025-05-28 11:36
    - Last Modified: 2025-05-21 06:20
    - 29.3K bytes
    - Viewed (0)
  10. cmd/batch-expire.go

    			prefixResultCh := make(chan itemOrErr[ObjectInfo], workerSize)
    			err := api.Walk(ctx, r.Bucket, prefix, prefixResultCh, WalkOptions{
    				Marker:       lastObject,
    				LatestOnly:   false, // we need to visit all versions of the object to implement purge: retainVersions
    				VersionsSort: WalkVersionsSortDesc,
    			})
    			if err != nil {
    				cancelCause(err)
    				xioutil.SafeClose(results)
    				return
    			}
    Registered: 2025-05-25 19:28
    - Last Modified: 2025-04-22 11:16
    - 23K bytes
    - Viewed (0)
Back to top