Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/core-runtime/BYTECODE-INTERCEPTION-README.md

    Interceptors are generated at Gradle build time and are packed into the distribution as described in [Gradle Distribution Build Time](#gradle-distribution-build-time).
    
    For jar visiting we use different implementations of [ClasspathElementTransform](https://github.com/gradle/gradle/blob/master/subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/ClasspathElementTransform.java) interface.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 09:22:58 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  7. 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)
  8. src/cmd/compile/internal/ssa/memcombine.go

    		// Mark all stores which are not last in a store sequence.
    		mark.clear()
    		for _, v := range b.Values {
    			if v.Op == OpStore {
    				mark.add(v.MemoryArg().ID)
    			}
    		}
    
    		// pick an order for visiting stores such that
    		// later stores come earlier in the ordering.
    		order = order[:0]
    		for _, v := range b.Values {
    			if v.Op != OpStore {
    				continue
    			}
    			if mark.contains(v.ID) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 19:45:41 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/lib.go

    }
    
    func dfs(lib *sym.Library, mark map[*sym.Library]markKind, order *[]*sym.Library) {
    	if mark[lib] == visited {
    		return
    	}
    	if mark[lib] == visiting {
    		panic("found import cycle while visiting " + lib.Pkg)
    	}
    	mark[lib] = visiting
    	for _, i := range lib.Imports {
    		dfs(i, mark, order)
    	}
    	mark[lib] = visited
    	*order = append(*order, lib)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  10. pkg/wasm/cache_test.go

    				if gotErr != nil {
    					t.Errorf("got unexpected error %v", gotErr)
    				}
    			}
    			if c.wantVisitServer != serverVisited {
    				t.Errorf("test wasm binary server encountered the unexpected visiting status got %v, want %v", serverVisited, c.wantVisitServer)
    			}
    		})
    	}
    }
    
    func setupOCIRegistry(t *testing.T, host string) (dockerImageDigest, invalidOCIImageDigest string) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 33.9K bytes
    - Viewed (0)
Back to top