Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 163 for root1 (0.42 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            then:
            thrown InvalidUserDataException
        }
    
        def "creates hierarchy"() {
            def root1 = conf("root1")
            def middle1 = conf("middle1").extendsFrom(root1)
            def root2 = conf("root2")
            def middle2 = conf("middle2").extendsFrom(root2)
            def leaf = conf("leaf1").extendsFrom(middle1, middle2)
    
            when:
            def hierarchy = leaf.hierarchy
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  2. pkg/apis/certificates/validation/validation_test.go

    		SerialNumber: big.NewInt(0),
    		Subject: pkix.Name{
    			CommonName: "root1",
    		},
    		IsCA:                  true,
    		BasicConstraintsValid: true,
    	})
    
    	goodCert2 := mustMakeCertificate(t, &x509.Certificate{
    		SerialNumber: big.NewInt(0),
    		Subject: pkix.Name{
    			CommonName: "root2",
    		},
    		IsCA:                  true,
    		BasicConstraintsValid: true,
    	})
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 61K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/buildlist.go

    	drop := make(map[string]bool)
    	for _, m := range replace {
    		drop[m.Path] = true
    	}
    	var roots []module.Version
    	for _, m := range rs.rootModules {
    		if !drop[m.Path] {
    			roots = append(roots, m)
    		}
    	}
    	roots = append(roots, replace...)
    	gover.ModSort(roots)
    	return newRequirements(rs.pruning, roots, rs.direct)
    }
    
    // A ConstraintError describes inconsistent constraints in EditBuildList
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/load.go

    			return "", false
    		}
    		var root string
    		var err error
    		if repl := Replacement(m); repl.Path != "" && repl.Version == "" {
    			root = repl.Path
    			if !filepath.IsAbs(root) {
    				root = filepath.Join(replaceRelativeTo(), root)
    			}
    		} else if repl.Path != "" {
    			root, err = modfetch.DownloadDir(ctx, repl)
    		} else {
    			root, err = modfetch.DownloadDir(ctx, m)
    		}
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

            // Roots
            mavenRepo.module('org.test', 'excludingRoot', '1.0').dependsOn(firstAligned, exclusions: [[group: 'org.test', module: 'excluded']]).publish()
            mavenRepo.module('org.test', 'root2', '1.0').dependsOn(intermediate3).publish()
            mavenRepo.module('org.test', 'root3', '1.0').dependsOn(otherAligned).publish()
    
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/init.go

    			}
    			continue
    		}
    
    		roots = append(roots, r.Mod)
    		if !r.Indirect {
    			direct[r.Mod.Path] = true
    		}
    	}
    	goVersion := gover.FromGoMod(modFile)
    	var toolchain string
    	if addToolchainRoot && modFile.Toolchain != nil {
    		toolchain = modFile.Toolchain.Name
    	}
    	roots = appendGoAndToolchainRoots(roots, goVersion, toolchain, direct)
    	return roots, direct
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  7. src/runtime/mgcmark.go

    	// at a time. Used by special root marking.
    	//
    	// Higher values improve throughput by increasing locality, but
    	// increase the minimum latency of a marking operation.
    	//
    	// Must be a multiple of the pageInUse bitmap element size and
    	// must also evenly divide pagesPerArena.
    	pagesPerSpanRoot = 512
    )
    
    // gcMarkRootPrepare queues root scanning jobs (stacks, globals, and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/deadness_analysis_test.cc

    TEST(DeadnessAnalysisTest, OrIsAssociative) {
      Scope root = Scope::NewRootScope().ExitOnError();
    
      ops::Switch sw_0 = CreateSwitch(root, "0");
      ops::Switch sw_1 = CreateSwitch(root, "1");
      ops::Switch sw_2 = CreateSwitch(root, "2");
    
      ops::Merge m0(root.WithOpName("m0"), {sw_0.output_false, sw_1.output_false});
      ops::Merge m1(root.WithOpName("m1"), {m0.output, sw_2.output_false});
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

    }
    
    TEST(XlaCompilationTest, ChainOfOps) {
      Scope root = Scope::NewRootScope().ExitOnError();
    
      Node* write_0 = MakeWrite(root, "W0");
      Node* neutral_0 = MakeNeutral(root, "N0");
      Node* read_0 = MakeRead(root, "R0");
      Node* write_1 = MakeWrite(root, "W1");
      Node* neutral_1 = MakeNeutral(root, "N1");
      Node* read_1 = MakeRead(root, "R1");
    
      root.graph()->AddControlEdge(write_0, neutral_0);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  10. src/go/build/build.go

    				p.Goroot = true
    				p.Root = ctxt.GOROOT
    				goto Found
    			}
    		}
    		for _, root := range gopath {
    			dir := ctxt.joinPath(root, "src", path)
    			isDir := ctxt.isDir(dir)
    			binaryOnly = !isDir && mode&AllowBinary != 0 && pkga != "" && ctxt.isFile(ctxt.joinPath(root, pkga))
    			if isDir || binaryOnly {
    				p.Dir = dir
    				p.Root = root
    				goto Found
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
Back to top