Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 35 for rootNode (0.37 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/ModelGraph.java

        private final Deque<ModelListener> pendingListeners = new ArrayDeque<>();
        private final Map<ModelNodeInternal, PendingState> pendingNodes = new LinkedHashMap<>();
    
        public ModelGraph(ModelNodeInternal rootNode) {
            this.root = rootNode;
            flattened.put(root.getPath(), root);
        }
    
        public ModelNodeInternal getRoot() {
            return root;
        }
    
        public Map<ModelPath, ModelNodeInternal> getFlattened() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

                    formatter.startChildren();
                    formatter.node(from.getSimpleName());
                    depth++;
                }
            } while (from != null && !(from instanceof RootNode));
            for (int i = 0; i < depth; i++) {
                formatter.endChildren();
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  3. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelProblemCollector.java

            return ModelProblemUtils.toId(sourceModel);
        }
    
        public void setRootModel(Model rootModel) {
            this.rootModel = rootModel;
        }
    
        public Model getRootModel() {
            return rootModel;
        }
    
        public String getRootModelId() {
            return ModelProblemUtils.toId(rootModel);
        }
    
        public void add(ModelProblem problem) {
            problems.add(problem);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelProblemCollector.java

            return ModelProblemUtils.toId(sourceModel);
        }
    
        public void setRootModel(Model rootModel) {
            this.rootModel = rootModel;
        }
    
        public Model getRootModel() {
            return rootModel;
        }
    
        public String getRootModelId() {
            return ModelProblemUtils.toId(rootModel);
        }
    
        @Override
        public void add(ModelProblem problem) {
            problems.add(problem);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/dsl/org.gradle.api.plugins.sonar.SonarAnalyze.xml

            <title>Properties</title>
            <table>
                <thead>
                    <tr>
                        <td>Name</td>
                    </tr>
                </thead>
                <tr>
                    <td>rootModel</td>
                </tr>
            </table>
        </section>
        <section>
            <title>Methods</title>
            <table>
                <thead>
                    <tr><td>Name</td></tr>
                </thead>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 477 bytes
    - Viewed (0)
  6. src/cmd/go/internal/load/godebug.go

    func defaultGODEBUG(p *Package, directives, testDirectives, xtestDirectives []build.Directive) string {
    	if p.Name != "main" {
    		return ""
    	}
    	goVersion := modload.MainModules.GoVersion()
    	if modload.RootMode == modload.NoRoot && p.Module != nil {
    		// This is go install pkg@version or go run pkg@version.
    		// Use the Go version from the package.
    		// If there isn't one, then assume Go 1.20,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modcmd/verify.go

    	modload.InitWorkfile()
    
    	if len(args) != 0 {
    		// NOTE(rsc): Could take a module pattern.
    		base.Fatalf("go: verify takes no arguments")
    	}
    	modload.ForceUseModules = true
    	modload.RootMode = modload.NeedRoot
    
    	// Only verify up to GOMAXPROCS zips at once.
    	type token struct{}
    	sem := make(chan token, runtime.GOMAXPROCS(0))
    
    	mg, err := modload.LoadModGraph(ctx, "")
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 16:56:35 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modcmd/tidy.go

    	// that are in 'all' but outside of the main module, we must explicitly
    	// request that their test dependencies be included.
    	modload.ForceUseModules = true
    	modload.RootMode = modload.NeedRoot
    
    	goVersion := tidyGo.String()
    	if goVersion != "" && gover.Compare(gover.Local(), goVersion) < 0 {
    		toolchain.SwitchOrFatal(ctx, &gover.TooNewError{
    			What:      "-go flag",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 5K bytes
    - Viewed (0)
  9. src/cmd/go/internal/load/pkg.go

    	}
    	rootMod := qrs[0].Mod
    	deprecation, err := modload.CheckDeprecation(ctx, rootMod)
    	if err != nil {
    		return nil, fmt.Errorf("%s: %w", args[0], err)
    	}
    	if deprecation != "" {
    		fmt.Fprintf(os.Stderr, "go: module %s is deprecated: %s\n", rootMod.Path, modload.ShortMessage(deprecation, ""))
    	}
    	data, err := modfetch.GoMod(ctx, rootMod.Path, rootMod.Version)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  10. src/internal/trace/traceviewer/static/trace_viewer_full.html

    addTreeValuesToHistogramSet(rootNode,histogramSet){const rootPath=[[],[],[]];this.rootNode_=rootNode;this.histogramSet_=histogramSet;this.reportDataFromTree_(this.rootNode_,rootPath);}
    static reportToHistogramSet(rootNode,histogramSet){const reporter=new CpuTimeTreeDataReporter();reporter.addTreeValuesToHistogramSet(rootNode,histogramSet);}}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (1)
Back to top