Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 120 for visitEnd (0.24 sec)

  1. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/deps/ClassSetAnalysis.java

            Set<String> visited = new HashSet<>();
            Deque<String> remaining = new ArrayDeque<>(classes);
            remaining.addAll(annotationProcessingData.getGeneratedTypesDependingOnAllOthers());
    
            while (!remaining.isEmpty()) {
                String current = remaining.pop();
                if (!visited.add(current)) {
                    continue;
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/index.go

    		} else {
    			validIndex = true
    		}
    
    		// if we have a valid index, check for duplicate entries
    		if validIndex {
    			if visited[index] {
    				check.errorf(e, DuplicateLitKey, "duplicate index %d in array or slice literal", index)
    			}
    			visited[index] = true
    		}
    		index++
    		if index > max {
    			max = index
    		}
    
    		// check element against composite literal element type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 15 16:16:58 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  3. src/go/types/index.go

    		} else {
    			validIndex = true
    		}
    
    		// if we have a valid index, check for duplicate entries
    		if validIndex {
    			if visited[index] {
    				check.errorf(e, DuplicateLitKey, "duplicate index %d in array or slice literal", index)
    			}
    			visited[index] = true
    		}
    		index++
    		if index > max {
    			max = index
    		}
    
    		// check element against composite literal element type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:17:05 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/properties/annotations/AbstractTypeMetadataWalkerTest.groovy

        }
    
        def "instance walker should allow visiting null nested values"() {
            given:
            def instance = new Object() {
                @TestNested
                NestedType getNested() {
                    return null
                }
                @TestNested
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 24.4K bytes
    - Viewed (0)
  5. .teamcity/performance-test-durations.json

      } ]
    }, {
      "scenario" : "org.gradle.performance.regression.corefeature.ArchiveTreePerformanceTest.visiting gzip tar trees",
      "durations" : [ {
        "testProject" : "archivePerformanceProject",
        "linux" : 322
      } ]
    }, {
      "scenario" : "org.gradle.performance.regression.corefeature.ArchiveTreePerformanceTest.visiting tar trees",
      "durations" : [ {
        "testProject" : "archivePerformanceProject",
        "linux" : 320
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:30:45 UTC 2024
    - 27.9K bytes
    - Viewed (1)
  6. src/cmd/vendor/golang.org/x/tools/go/ast/astutil/imports.go

    		// Not sure if this import is used - err on the side of caution.
    		return true
    	}
    
    	ast.Walk(visitFn(func(n ast.Node) {
    		sel, ok := n.(*ast.SelectorExpr)
    		if ok && isTopName(sel.X, name) {
    			used = true
    		}
    	}), f)
    
    	return
    }
    
    type visitFn func(node ast.Node)
    
    func (fn visitFn) Visit(node ast.Node) ast.Visitor {
    	fn(node)
    	return fn
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 21:56:21 UTC 2022
    - 13.4K bytes
    - Viewed (0)
  7. .teamcity/performance-tests-ci.json

        "testId" : "org.gradle.performance.regression.corefeature.ArchiveTreePerformanceTest.visiting gzip tar trees",
        "groups" : [ {
          "testProject" : "archivePerformanceProject",
          "coverage" : {
            "per_day" : [ "linux" ]
          }
        } ]
      }, {
        "testId" : "org.gradle.performance.regression.corefeature.ArchiveTreePerformanceTest.visiting tar trees",
        "groups" : [ {
          "testProject" : "archivePerformanceProject",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 11 07:05:12 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/adapter/ProtocolToModelAdapter.java

            return result;
        }
    
        private static <T> void getPotentialModelContractSubInterfaces(
            Class<T> targetType,
            Set<Class<?>> visited,
            Map<String, Class<?>> result
        ) {
            boolean isNew = visited.add(targetType);
            if (isNew) {
                Annotation[] annotations = targetType.getAnnotations();
                for (Annotation annotation : annotations) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 04:42:54 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ResolutionResultApiIntegrationTest.groovy

                        { -> ${confList.join('\n')} }()
                    }
                }
    
                void dump(String root, ResolvedComponentResult result, ResolvedVariantResult variant, int depth, Set visited = []) {
                    if (visited.add([result, variant])) {
                        if (variant == null) {
                            println(root)
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 30.5K bytes
    - Viewed (0)
  10. platforms/jvm/normalization-java/src/test/groovy/org/gradle/internal/normalization/java/ApiClassExtractorTest.groovy

                    if (source) {
                        throw new AssertionError("Source information should not be visited, but found source [$source]")
                    }
                    if (debug) {
                        throw new AssertionError("Debug information should not be visited, but found debug [$debug]")
                    }
                }
    
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 14.8K bytes
    - Viewed (0)
Back to top