Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,961 for root1 (0.07 sec)

  1. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildIncludeCycleIntegrationTest.groovy

            """
    
            when:
            execute(rootBuild, ':root1:compileJava')
    
            then:
            result.assertTasksExecuted(':root2:compileJava', ':buildA:compileJava', ':root1:compileJava')
    
            and:
            canRunFromCache(rootBuild, ':root1:compileJava')
        }
    
        def "can depend back on root build and back on an included build"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Aug 19 21:32:57 UTC 2022
    - 7.6K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/list_shadow.txt

    env GOPATH=$WORK/gopath/src/shadow/root1${:}$WORK/gopath/src/shadow/root2
    
    # The math in root1 is not "math" because the standard math is.
    go list -f '({{.ImportPath}}) ({{.ConflictDir}})' ./shadow/root1/src/math
    stdout '^\(.*(\\|/)src(\\|/)shadow(\\|/)root1(\\|/)src(\\|/)math\) \('$GOROOT'(\\|/)?src(\\|/)math\)$'
    
    # The foo in root1 is "foo".
    go list -f '({{.ImportPath}}) ({{.ConflictDir}})' ./shadow/root1/src/foo
    stdout '^\(foo\) \(\)$'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 15 00:06:54 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/internal/fingerprint/classpath/impl/DefaultClasspathFingerprinterTest.groovy

            fileCollectionFingerprint.empty
        }
    
        def "root elements are unsorted, non-root elements are sorted amongst themselves"() {
            def rootFile1 = file("root1.txt") << "root1"
            def rootDir = file("dir").createDir()
            rootDir.file("file1.txt") << "file1"
            rootDir.file("file2.txt") << "file2"
            def rootFile2 = file("root2.txt") << "root2"
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:33 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/initialization/loadercache/DefaultClassLoaderCacheTest.groovy

            expect:
            def root = classLoader(classPath("root"))
            cache.get(id1, classPath("c1"), root, null).is cache.get(id2, classPath("c1"), root, null)
        }
    
        def "parents are respected"() {
            expect:
            def root1 = classLoader(classPath("root1"))
            def root2 = classLoader(classPath("root2"))
            cache.get(id1, classPath("c1"), root1, null) != cache.get(id2, classPath("c1"), root2, null)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 23 19:34:48 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/changes/OutputFileChangesTest.groovy

                    regularFile("root/two", 0x2345)
                ]),
                missing("root")
            ) == [removed("root"), removed("root/one"), removed("root/two")]
        }
    
        def "type change missing -> directory"() {
            expect:
            changes(
                missing("root"),
                directory("root", [
                    regularFile("root/one", 0x1234),
                    regularFile("root/two", 0x2345)
                ])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  6. src/internal/types/testdata/examples/types.go

    // A generic binary tree might be declared as follows.
    type Tree[E any] struct {
    	left, right *Tree[E]
    	payload E
    }
    
    // A simple instantiation of Tree:
    var root1 Tree[int]
    
    // The actual type parameter provided may be a generic type itself:
    var root2 Tree[List[int]]
    
    // A couple of more complex examples.
    // We don't need extra parentheses around the element type of the slices on
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 23:16:04 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  7. src/crypto/x509/root.go

    var x509usefallbackroots = godebug.New("x509usefallbackroots")
    
    // SetFallbackRoots sets the roots to use during certificate verification, if no
    // custom roots are specified and a platform verifier or a system certificate
    // pool is not available (for instance in a container which does not have a root
    // certificate bundle). SetFallbackRoots will panic if roots is nil.
    //
    // SetFallbackRoots may only be called once, if called multiple times it will
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. pkg/test/cert/ca/root.go

    	if err := os.WriteFile(root.ConfFile, []byte(rootCAConf), os.ModePerm); err != nil {
    		return Root{}, err
    	}
    
    	// Create the root key.
    	if err := cert.GenerateKey(root.KeyFile); err != nil {
    		return Root{}, err
    	}
    
    	// Create the root CSR
    	if err := cert.GenerateCSR(root.ConfFile, root.KeyFile, root.CSRFile); err != nil {
    		return Root{}, err
    	}
    
    	// Create the root cert
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 03 18:09:59 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/resources/org/gradle/api/tasks/copyTestResources/src/root.b

    root.b...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 15 21:14:41 UTC 2012
    - 6 bytes
    - Viewed (0)
  10. operator/cmd/operator/root.go

    // limitations under the License.
    
    package main
    
    import (
    	"flag"
    
    	"github.com/spf13/cobra"
    
    	"istio.io/istio/pkg/collateral"
    	"istio.io/istio/pkg/version"
    )
    
    // getRootCmd returns the root of the cobra command-tree.
    func getRootCmd(args []string) *cobra.Command {
    	rootCmd := &cobra.Command{
    		Use:   "operator",
    		Short: "The Istio operator.",
    		Args:  cobra.ExactArgs(0),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 03:51:36 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top