Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 533 for Visiting (0.23 sec)

  1. src/cmd/compile/internal/types2/mono.go

    	// that appears twice.
    	for !seen[v] {
    		stack = append(stack, v)
    		seen[v] = true
    		v = check.mono.edges[check.mono.vertices[v].pre].src
    	}
    
    	// Trim any vertices we visited before visiting v the first
    	// time. Since v is the first vertex we found within the cycle, any
    	// vertices we visited earlier cannot be part of the cycle.
    	for stack[0] != v {
    		stack = stack[1:]
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 28 00:05:29 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  2. 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)
  3. tensorflow/compiler/mlir/tensorflow/analysis/resource_alias_analysis.cc

      // Seed this analysis for each such region by mapping all resource arguments
      // for such regions to a new unique-id. This is required because walk() walks
      // the attached regions first before visiting the op, so there is no
      // opportunity during the walk to seed region arguments. Also note that walk
      // eventually also visits the Op on which the walk() is called, so make sure
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/base-services-groovy/src/main/java/org/gradle/groovy/scripts/internal/ExpressionReplacingVisitorSupport.java

        private Expression replacementExpr;
    
        /**
         * Visits the given expression, potentially replacing it. If {@link #replaceVisitedExpressionWith(Expression)} is called while visiting the expression,
         * this new value will be returned. Otherwise, the original value will be returned.
         */
        public Expression replaceExpr(Expression expr) {
            replacementExpr = null;
            expr.visit(this);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 10:00:26 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  5. 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)
  6. src/cmd/covdata/metamerge.go

    	}
    }
    
    func (mm *metaMerge) beginPod() {
    	mm.pod = &podstate{
    		pmm: make(map[pkfunc]decodecounter.FuncPayload),
    	}
    }
    
    // metaEndPod handles actions needed when we're done visiting all of
    // the things in a pod -- counter files and meta-data file. There are
    // three cases of interest here:
    //
    // Case 1: in an unconditional merge (we're not selecting a specific set of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 17:17:47 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  7. plugin/pkg/auth/authorizer/node/node_authorizer.go

    			return true
    		},
    	}
    	traversal.Walk(r.graph.graph, startingVertex, func(n graph.Node) bool {
    		if n.ID() == nodeVertex.ID() {
    			// We found the node we want
    			found = true
    		}
    		// Stop visiting if we've found the node we want
    		return found
    	})
    	if !found {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 16K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/phases/workflow/runner.go

    	sourceFlags.VisitAll(func(f *pflag.Flag) {
    		for _, c := range cmdFlags {
    			if f.Name == c {
    				targetFlags.AddFlag(f)
    			}
    		}
    	})
    }
    
    // visitAll provides a utility method for visiting all the phases in the workflow
    // in the execution order and executing a func on each phase.
    // Nested phase are visited immediately after their parent phase.
    func (e *Runner) visitAll(fn func(*phaseRunner) error) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 21 05:35:15 UTC 2022
    - 16K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/loopreschedchecks.go

    				continue
    			}
    			for i, w := range v.Args {
    				if w != x {
    					continue
    				}
    				tgt := rewriteTarget{v, i}
    
    				// It's possible dominated control flow will rewrite this instead.
    				// Visiting in preorder (a property of how sdom was constructed)
    				// ensures that these are seen in the proper order.
    				if dfPhiTargets[tgt] {
    					continue
    				}
    				*p = append(*p, tgt)
    				if f.pass.debug > 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 21:17:10 UTC 2023
    - 16K bytes
    - Viewed (0)
  10. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollectionSpec.groovy

            fileTreeDependencies.toList() == [task]
            filteredFileTreeDependencies.toList() == [task]
            3 * taskResolver.resolveTask("task") >> task
            0 * _
        }
    
        def "does not resolve paths when visiting dependencies"() {
            given:
            collection.from('ignore')
    
            when:
            collection.buildDependencies.getDependencies(null)
    
            then:
            0 * _
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 53K bytes
    - Viewed (0)
Back to top