Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 120 for visitEnd (0.13 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/PublishedRichVersionConstraintsIntegrationTest.groovy

       Constraint path ':test:unspecified' --> 'org:bar:1.0' (runtime) --> 'org:foo:{reject all versions}'""")
    
        }
    
        def "shows only one path to dependency when node is already visited"() {
            given:
            repository {
                'org' {
                    'a:1.0' {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/text/TreeFormatter.java

            }
            return this;
        }
    
        @Override
        public TreeFormatter endChildren() {
            if (current.parent == null) {
                throw new IllegalStateException("Not visiting any node.");
            }
            if (current.state == State.CollectValue) {
                current.state = State.Done;
                current = current.parent;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  3. fess-crawler-es/src/main/java/org/codelibs/fess/crawler/service/impl/EsUrlQueueService.java

            return urlQueue;
        }
    
        @Override
        public void saveSession(final String sessionId) {
            // TODO use cache
        }
    
        @Override
        public boolean visited(final EsUrlQueue urlQueue) {
            final String url = urlQueue.getUrl();
            if (StringUtil.isBlank(url)) {
                if (logger.isDebugEnabled()) {
                    logger.debug("URL is a blank: {}", url);
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  4. src/encoding/json/encode.go

    	current := []field{}
    	next := []field{{typ: t}}
    
    	// Count of queued names for current level and the next.
    	var count, nextCount map[reflect.Type]int
    
    	// Types already visited at an earlier level.
    	visited := map[reflect.Type]bool{}
    
    	// Fields found.
    	var fields []field
    
    	// Buffer to run appendHTMLEscape on field names.
    	var nameEscBuf []byte
    
    	for len(next) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/UnitOfWork.java

         * Because of these reasons only capture inputs as identity if they are actually used to calculate the identity of the work.
         * Any non-identity inputs should be visited when calling {@link #visitRegularInputs(InputVisitor)}.
         */
        default void visitIdentityInputs(InputVisitor visitor) {}
    
        /**
         * Visit regular inputs of the work.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:28 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/SingleIncludePatternFileTreeSpec.groovy

            1 * visitor.visitFile({ it.file == tempDir.file("dir2/file1") })
            1 * visitor.visitFile({ it.file == tempDir.file("dir3/file1") })
            0 * _
        }
    
        def "stop visiting"() {
            fileTree = new SingleIncludePatternFileTree(tempDir.testDirectory, "dir?/file1")
    
            when:
            fileTree.visit(visitor)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  7. pkg/registry/rbac/validation/rule.go

    	// VisitRulesFor invokes visitor() with each rule that applies to a given user in a given namespace, and each error encountered resolving those rules.
    	// If visitor() returns false, visiting is short-circuited.
    	VisitRulesFor(user user.Info, namespace string, visitor func(source fmt.Stringer, rule *rbacv1.PolicyRule, err error) bool)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 02 16:51:16 UTC 2020
    - 11.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/convert_control_to_data_outputs.cc

      // Modify all the while ops referencing the body function and the
      // corresponding while condition functions. Note that each while condition
      // needs to be modified only once.
      OperationSetTy visited;
      for (TF::WhileOp while_op : while_callers) {
        // If the while callers are modified as part of the optimization, then the
        // side effect analysis of their parent functions are invalidated. They
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/ComponentState.java

        }
    
        /**
         * Describes the possible states of a component in the graph.
         */
        enum ComponentSelectionState {
            /**
             * A selectable component is either new to the graph, or has been visited before,
             * but wasn't selected because another compatible version was used.
             */
            Selectable(true),
    
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 17K bytes
    - Viewed (0)
  10. src/cmd/covdata/dump.go

    	// data (for example, a counter data entry with pkgid=N funcid=10
    	// where package N only has 3 functions).
    	pkm map[uint32]uint32
    
    	// pkgpaths records all package import paths encountered while
    	// visiting coverage data files (used to implement the "pkglist"
    	// subcommand).
    	pkgpaths map[string]struct{}
    
    	// Current package name and import path.
    	pkgName       string
    	pkgImportPath string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:57 UTC 2023
    - 11.2K bytes
    - Viewed (0)
Back to top