Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 76 of 76 for Roots (0.04 sec)

  1. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/GradleKotlinDslRegressionsTest.kt

            build("help", "--info").apply {
                assertNotOutput("is not supposed to be used along with regular Kotlin sources, and will be ignored in the future versions by default. (Use -Xallow-any-scripts-in-source-roots command line option to opt-in for the old behavior.)")
            }
        }
    
        @Test
        @Issue("https://github.com/gradle/gradle/issues/24481")
        fun `applied project scripts don't have project accessors`() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 07:57:29 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/build_trimpath.txt

    go build -trimpath -o paths-a.exe paths
    exec ./paths-a.exe paths-a.exe
    stdout 'binary contains GOPATH: false'
    stdout 'binary contains an empty GOROOT'
    
    # Two binaries built from identical packages in different GOPATH roots
    # should be identical.
    env GOPATH=$WORK/b
    go build -trimpath -o paths-b.exe paths
    cmp -q paths-a.exe paths-b.exe
    
    
    # Same sequence of tests but with gccgo.
    # gccgo does not support builds in module mode.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/BuildOperationTreeQueries.groovy

        }
    
        List<BuildOperationRecord.Progress> progress(Class<?> clazz) {
            return all().collect { it.progress(clazz) }.flatten()
        }
    
        void walk(Action<? super BuildOperationRecord> action) {
            roots.each { walk(it, action) }
        }
    
        @SuppressWarnings("GrMethodMayBeStatic")
        void walk(BuildOperationRecord parent, Action<? super BuildOperationRecord> action) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/AbstractWindowsKitComponentLocator.java

        private static final String[] REGISTRY_BASEPATHS = {
            "SOFTWARE\\",
            "SOFTWARE\\Wow6432Node\\"
        };
        private static final String REGISTRY_ROOTPATH_KIT = "Microsoft\\Windows Kits\\Installed Roots";
        private static final String REGISTRY_KIT_10 = "KitsRoot10";
    
        private final Pattern windowsKitVersionPattern = Pattern.compile("[0-9]+(\\.[0-9]+)*");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/dynamic_cafile_content.go

    	if len(caBundle) == 0 {
    		return nil, fmt.Errorf("missing content for CA bundle %q", name)
    	}
    
    	// Wrap with an x509 verifier
    	var err error
    	verifyOptions := defaultVerifyOptions()
    	verifyOptions.Roots, err = cert.NewPoolFromBytes(caBundle)
    	if err != nil {
    		return nil, fmt.Errorf("error loading CA bundle for %q: %v", name, err)
    	}
    
    	return &caBundleAndVerifier{
    		caBundle:      caBundle,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  6. pkg/ledger/smt_test.go

    	ch = make(chan result, 1)
    	smt2.update(smt2.root, keys[1:], values[1:], nil, 0, smt.trieHeight, false, true, ch)
    	res = <-ch
    	cleanRoot := res.update
    	if !bytes.Equal(newRoot, cleanRoot) {
    		t.Fatal("roots mismatch")
    	}
    
    	// Empty the trie
    	var newValues [][]byte
    	for i := 0; i < 10; i++ {
    		newValues = append(newValues, defaultLeaf)
    	}
    	ch = make(chan result, 1)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 7.9K bytes
    - Viewed (0)
Back to top