Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,663 for root2 (0.1 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. 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)
  3. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/changes/OutputFileChangesTest.groovy

                    regularFile("root1/one", 0x1234)
                ]),
                directory("root2", [
                    regularFile("root2/one", 0x1234),
                    regularFile("root2/two", 0x2345)
                ])
            ) == [added("root2/two")]
        }
    
        def "deep removal"() {
            expect:
            changes(
                directory("root", [
                    regularFile("root/one", 0x1234),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/file-collections/src/testFixtures/groovy/org/gradle/api/internal/file/collections/AbstractDirectoryWalkerTest.groovy

            given:
            def rootDir = tmpDir.createDir("root")
            def rootTextFile = rootDir.file("a.txt").createFile()
            def nestedTextFile = rootDir.file("a/b/c.txt").createFile()
            def notTextFile = rootDir.file("a/b/c.html").createFile()
            def excludedFile = rootDir.file("subdir1/a/b/c.html").createFile()
            def notUnderRoot = tmpDir.createDir("root2").file("a.txt").createFile()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7K bytes
    - Viewed (0)
  5. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DirectoryFileTreeTest.groovy

            given:
            def root = temporaryFolder.createDir("root")
            def rootFile1 = root.createFile("rootFile1")
            def dir1 = root.createDir("dir1")
            def dirFile1 = dir1.createFile("dirFile1")
            def dirFile2 = dir1.createFile("dirFile2")
            def rootFile2 = root.createFile("rootFile2")
    
            def fileTree = new DirectoryFileTree(root, new PatternSet(), TestFiles.fileSystem(), false).postfix()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 9.6K 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. 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)
  9. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/idea/IdeaIntegrationTest/overwritesExistingDependencies/root.iml

        <orderEntry type="module-library" scope="RUNTIME">
          <library>
            <CLASSES>
              <root url="jar://$CUSTOM_DIR$/../cache/junit/junit/jars/junit-4.7.jar!/"/>
            </CLASSES>
            <JAVADOC/>
            <SOURCES>
              <root url="jar://$CUSTOM_DIR$/../cache/junit/junit/sources/junit-4.7-sources.jar!/"/>
            </SOURCES>
          </library>
        </orderEntry>
      </component>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 738 bytes
    - Viewed (0)
  10. .github/workflows/root-disable.yml

        steps:
          - uses: actions/checkout@v4
          - uses: actions/setup-go@v5
            with:
              go-version: ${{ matrix.go-version }}
              check-latest: true
          - name: Start root lockdown tests
            run: |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 734 bytes
    - Viewed (0)
Back to top