Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 112 for Walks (0.06 sec)

  1. src/go/types/union.go

    				panic("empty or top union term")
    			}
    		}
    		if !(*term)(x).disjoint((*term)(y)) {
    			return i
    		}
    	}
    	return -1
    }
    
    // flattenUnion walks a union type expression of the form A | B | C | ...,
    // extracting both the binary exprs (blist) and leaf types (tlist).
    func flattenUnion(list []ast.Expr, x ast.Expr) (blist, tlist []ast.Expr) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  2. src/cmd/cover/cfg_test.go

    	testenv.MustHaveGoRun(t)
    
    	// For packages with no test files, the new "go test -cover"
    	// strategy is to run cmd/cover on the package in a special
    	// "EmitMetaFile" mode. When running in this mode, cmd/cover walks
    	// the package doing instrumentation, but when finished, instead of
    	// writing out instrumented source files, it directly emits a
    	// meta-data file for the package in question, essentially
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 12:51:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  3. pkg/util/iptree/iptree.go

    	}
    	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.
    func (t *Tree[T]) WalkPath(path netip.Prefix, fn WalkFn[T]) {
    	n := t.rootV4
    	if path.Addr().Is6() {
    		n = t.rootV6
    	}
    	bitPosition := 0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:04 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/util/patches/patches.go

    		}
    		patches = append(patches, string(patchJSON))
    	}
    
    	return &patchSet{
    		targetName: targetName,
    		patchType:  patchType,
    		patches:    patches,
    	}, nil
    }
    
    // getPatchSetsFromPath walks a path, ignores sub-directories and non-patch files, and
    // returns a list of patchFile objects.
    func getPatchSetsFromPath(targetPath string, knownTargets []string, output io.Writer) ([]*patchSet, []string, []string, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/walk/switch.go

    	"cmd/compile/internal/rttype"
    	"cmd/compile/internal/ssagen"
    	"cmd/compile/internal/typecheck"
    	"cmd/compile/internal/types"
    	"cmd/internal/obj"
    	"cmd/internal/src"
    )
    
    // walkSwitch walks a switch statement.
    func walkSwitch(sw *ir.SwitchStmt) {
    	// Guard against double walk, see #25776.
    	if sw.Walked() {
    		return // Was fatal, but eliminating every possible source of double-walking is hard
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  6. pkg/test/framework/testcontext.go

    		}})
    	case cleanup.Conditionally:
    		c.scope.addCloser(&closer{fn: func() error {
    			fn()
    			return nil
    		}, noskip: true})
    	default:
    		// No cleanup.
    		return
    	}
    }
    
    // topLevelScopes walks up the tree to find all "top level" or "container"
    // scopes. We always want to dump the resources created at the "top level" when
    // their descendant scopes fail.
    func (c *testContext) topLevelScopes() []*scope {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/projectmodule/DefaultProjectDependencyPublicationResolver.java

                            variant.getName(), root.getName(), identityPath
                        ));
                    }
                });
                return result;
            }
        }
    
        /**
         * Walks a composite component and its subcomponents to determine coordinates of each variant.
         */
        private static class ComponentWalker {
    
            interface ComponentVisitor<T> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/best-practices/organizing_gradle_projects.adoc

    [[sec:settings_file]]
    == Always define a settings file
    
    Gradle tries to locate a `settings.gradle` (Groovy DSL) or a `settings.gradle.kts` (Kotlin DSL) file with every invocation of the build.
    For that purpose, the runtime walks the hierarchy of the directory tree up to the root directory.
    The algorithm stops searching as soon as it finds the settings file.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:16:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssagen/pgen.go

    // functions.
    func RegisterMapInitLsym(s *obj.LSym) {
    	if globalMapInitLsyms == nil {
    		globalMapInitLsyms = make(map[*obj.LSym]struct{})
    	}
    	globalMapInitLsyms[s] = struct{}{}
    }
    
    // weakenGlobalMapInitRelocs walks through all of the relocations on a
    // given a package init function "fn" and looks for relocs that target
    // outlined global map initializer functions; if it finds any such
    // relocs, it flags them as R_WEAK.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  10. src/cmd/cgo/ast.go

    	ctxTypeSwitch
    	ctxFile
    	ctxDecl
    	ctxSpec
    	ctxDefer
    	ctxCall  // any function call other than ctxCall2
    	ctxCall2 // function call whose result is assigned to two variables
    	ctxSelector
    )
    
    // walk walks the AST x, calling visit(f, x, context) for each node.
    func (f *File) walk(x interface{}, context astContext, visit func(*File, interface{}, astContext)) {
    	visit(f, x, context)
    	switch n := x.(type) {
    	case *ast.Expr:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 07 16:54:27 UTC 2023
    - 14.3K bytes
    - Viewed (0)
Back to top