Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,337 for trees (0.15 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r73/DependencyArtifactDownloadProgressEventCrossVersionTest.groovy

                collectOutputs(build)
                build.addProgressListener(events, OperationType.FILE_DOWNLOAD)
                    .run()
            }
    
            then:
            events.operations.size() == 8
            events.trees == events.operations
            events.operation("Download ${modules.projectB.pom.uri}").assertIsDownload(modules.projectB.pom)
    
            def downloadB = events.operation("Download ${modules.projectB.artifact.uri}")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/corefeature/ArchiveTreePerformanceTest.groovy

            }
        }
    
        @RunFor(
            @Scenario(type = PER_COMMIT, operatingSystems = [LINUX], testProjects = ["archivePerformanceProject"])
        )
        def "visiting zip trees"() {
            given:
            runner.tasksToRun = ['visitZip']
            runner.addBuildMutator { createArchive(it, "archive.zip") { contents, output -> contents.zipTo(output) } }
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 11:42:52 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/AbstractFileTreeTest.groovy

        def "can add file trees together"() {
            File file1 = new File("f1")
            File file2 = new File("f2")
            FileVisitDetails fileVisitDetails1 = fileVisitDetails(file1)
            FileVisitDetails fileVisitDetails2 = fileVisitDetails(file2)
            def tree1 = new TestFileTree([fileVisitDetails1])
            def tree2 = new TestFileTree([fileVisitDetails2])
    
            when:
            FileTree sum = tree1.plus(tree2)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  4. cmd/importverifier/importverifier.go

    	XTestImports []string `yaml:",omitempty"` // imports from XTestGoFiles
    }
    
    // ImportRestriction describes a set of allowable import
    // trees for a tree of source code
    type ImportRestriction struct {
    	// BaseDir is the root of a package tree that is restricted by this
    	// configuration, given as a relative path from the root of the repository.
    	// This is a directory which `go list` might not consider a package (if it
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:16 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  5. src/cmd/go/internal/web/bootstrap.go

    // license that can be found in the LICENSE file.
    
    //go:build cmd_go_bootstrap
    
    // This code is compiled only into the bootstrap 'go' binary.
    // These stubs avoid importing packages with large dependency
    // trees that potentially require C linking,
    // like the use of "net/http" in vcs.go.
    
    package web
    
    import (
    	"errors"
    	urlpkg "net/url"
    )
    
    func get(security SecurityMode, url *urlpkg.URL) (*Response, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:00:34 UTC 2022
    - 691 bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/file/DefaultSourceDirectorySet.java

            Map<File, DirectoryTree> trees = new LinkedHashMap<>();
            for (DirectoryTree tree : getSourceTrees()) {
                if (!trees.containsKey(tree.getDir())) {
                    trees.put(tree.getDir(), tree);
                }
            }
            return new LinkedHashSet<>(trees.values());
        }
    
        protected Set<DirectoryFileTree> getSourceTrees() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Oct 29 02:23:21 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  7. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/vfs/impl/DefaultFileSystemAccessTest.groovy

        }
    
        def "reuses cached unfiltered trees when looking for details of a filtered tree"() {
            given: "An existing snapshot"
            def d = temporaryFolder.createDir("d")
            d.file("f1").createFile()
            d.file("d1/f1").createFile()
            d.file("d1/f2").createFile()
    
            allowFileSystemAccess(true)
            read(d)
    
            and: "A filtered tree over the same directory"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 10K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/files/fileTrees/groovy/settings.gradle

    rootProject.name = 'file-trees'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 32 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/files/fileTrees/kotlin/settings.gradle.kts

    rootProject.name = "file-trees"...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 32 bytes
    - Viewed (0)
  10. platforms/core-execution/build-cache/src/test/groovy/org/gradle/caching/internal/controller/DefaultBuildCacheControllerPackOperationExecutorTest.groovy

            then:
            0 * _
        }
    
        def entity(TestCacheableTree... trees) {
            return Stub(CacheableEntity) {
                identity >> ":test"
                type >> CacheableEntity
                visitOutputTrees(_ as CacheableEntity.CacheableTreeVisitor) >> { CacheableEntity.CacheableTreeVisitor visitor ->
                    trees.each { visitor.visitOutputTree(it.name, it.type, it.root) }
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top