Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 889 for root1 (0.04 sec)

  1. 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)
  2. subprojects/core/src/main/java/org/gradle/internal/operations/trace/BuildOperationTrace.java

                        logOutputStream.close();
                    }
    
                    if (outputTree) {
                        List<BuildOperationRecord> roots = readLogToTreeRoots(logFile(basePath), false);
                        writeDetailTree(roots);
                        writeSummaryTree(roots);
                    }
                } catch (IOException e) {
                    throw UncheckedException.throwAsUncheckedException(e);
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/BuildOperationTreeFixture.groovy

        List<BuildOperationRecord> getRoots() {
            operations.roots
        }
    
        @Override
        @SuppressWarnings("GrUnnecessaryPublicModifier")
        public <T extends BuildOperationType<?, ?>> BuildOperationRecord root(Class<T> type, Spec<? super BuildOperationRecord> predicate = Specs.satisfyAll()) {
            def detailsType = BuildOperationTypes.detailsType(type)
            def roots = operations.roots.findAll {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:20 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  4. 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)
  5. pkg/istio-agent/plugins.go

    	}
    
    	// Will use TLS unless the reserved 15010 port is used ( istiod on an ipsec/secure VPC)
    	// rootCert may be nil - in which case the system roots are used, and the CA is expected to have public key
    	// Otherwise assume the injection has mounted /etc/certs/root-cert.pem
    	return citadel.NewCitadelClient(opts, tlsOpts)
    }
    
    func init() {
    	providers["Citadel"] = createCitadel
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 11 03:32:57 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/phases/certs/certlist_test.go

    }
    
    func TestMakeCertTree(t *testing.T) {
    	rootCert := &KubeadmCert{
    		Name: "root",
    	}
    	leaf0 := &KubeadmCert{
    		Name:   "leaf0",
    		CAName: "root",
    	}
    	leaf1 := &KubeadmCert{
    		Name:   "leaf1",
    		CAName: "root",
    	}
    	selfSigned := &KubeadmCert{
    		Name: "self-signed",
    	}
    
    	certMap := CertificateMap{
    		"root":        rootCert,
    		"leaf0":       leaf0,
    		"leaf1":       leaf1,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  7. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/declarations/KotlinStandaloneDeclarationProvider.kt

     * [shouldBuildStubsForBinaryLibraries] is true. In Standalone mode, binary roots don't need to be specified because library symbols are
     * provided via class-based deserialization, not stub-based deserialization.
     *
     * @param binaryRoots Binary roots of the binary libraries that are specific to [project].
     * @param sharedBinaryRoots Binary roots that are shared between multiple different projects. This allows Kotlin tests to cache stubs for
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  8. pkg/istio-agent/agent.go

    	// Node identifier used by Envoy
    	ServiceNode string
    
    	// XDSRootCerts is the location of the root CA for the XDS connection. Used for setting platform certs or
    	// using custom roots.
    	XDSRootCerts string
    
    	// CARootCerts of the location of the root CA for the CA connection. Used for setting platform certs or
    	// using custom roots.
    	CARootCerts string
    
    	// Extra headers to add to the XDS connection.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  9. pilot/pkg/bootstrap/istio_ca.go

    //
    // Support for signing other root CA has been removed - too dangerous, no clear use case.
    //
    // Default config, for backward compat with Citadel:
    // - if "cacerts" secret exists in istio-system, will be mounted. It may contain an optional "root-cert.pem",
    // with additional roots and optional {ca-key, ca-cert, cert-chain}.pem user-provided root CA.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/SnapshotTaskInputsOperationIntegrationTest.groovy

                hash != null
                roots.size() == 1
                with(roots[0]) {
                    path == file("a/build/libs/a.jar").absolutePath
                    !containsKey("children")
                }
            }
            with(bCompileJava.stableSources) {
                hash != null
                roots.size() == 2
                with(roots[0]) {
                    path == file("b/src/main/java").absolutePath
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 23.5K bytes
    - Viewed (0)
Back to top