Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 218 for Visiting (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. pkg/util/iptree/iptree.go

    			break
    		}
    		// update the new bit position with the new node mask
    		bitPosition = n.prefix.Bits()
    	}
    	recursiveWalk[T](n, fn)
    
    }
    
    // WalkPath is used to walk the tree, but only visiting nodes
    // from the root down to a given IP prefix. Where WalkPrefix walks
    // all the entries *under* the given prefix, this walks the
    // entries *above* the given prefix.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:04 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  9. src/image/jpeg/scan.go

    					// The blocks are traversed one MCU at a time. For 4:2:0 chroma
    					// subsampling, there are four Y 8x8 blocks in every 16x16 MCU.
    					//
    					// For a sequential 32x16 pixel image, the Y blocks visiting order is:
    					//	0 1 4 5
    					//	2 3 6 7
    					//
    					// For progressive images, the interleaved scans (those with nComp > 1)
    					// are traversed as above, but non-interleaved scans are traversed left
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 00:46:29 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/deadcode.go

    				// interface with a "child" type of it using reflection (e.g. obtain an
    				// interface of T from []chan T). We need to traverse its "child" types
    				// with UsedInIface attribute set.
    				// When visiting the child type (chan T in the example above), it will
    				// have UsedInIface set, so it in turn will mark and (re)visit its children
    				// (e.g. T above).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 14:52:41 UTC 2024
    - 19K bytes
    - Viewed (0)
Back to top