Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 47 for subdir2 (1.44 sec)

  1. src/cmd/go/testdata/script/mod_get_pkgtags.txt

    ! go get example.net/missing/subdir@v0.1.0
    stderr '^go: module example.net/missing@v0.1.0 found \(replaced by ./missing\), but does not contain package example.net/missing/subdir$'
    
    go get example.net/missing@v0.1.0
    
    
    # Getting the subdirectory should continue to fail even if the corresponding
    # module is already present in the build list.
    
    ! go get example.net/missing/subdir@v0.1.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  2. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/vfs/impl/DefaultFileSystemAccessConcurrencyTest.groovy

        def "parallel invalidation yields correct results"() {
            def dir = temporaryFolder.createDir("some/deep/hierarchy")
            (1..1000).each {
                def subdir = dir.file(it)
                subdir.file("in-dir.txt").createFile()
            }
    
            allowFileSystemAccess(true)
            read(dir)
            def executorService = Executors.newFixedThreadPool(100)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/initialization/layout/BuildLayoutFactoryTest.groovy

            and:
            def currentDir = tmpDir.createDir("sub/current")
            def subDir = tmpDir.createDir("sub")
            def settingsFile = subDir.createFile(settingsFilename)
            tmpDir.createFile(settingsFilename)
    
            expect:
            def layout = locator.getLayoutFor(currentDir, true)
            layout.rootDirectory == subDir
            layout.settingsDir == subDir
            layout.settingsFile == settingsFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 09:18:31 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  4. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/compile/MinimalGroovyCompileOptions.java

            this.optimizationOptions = optimizationOptions;
        }
    
        public File getStubDir() {
            return stubDir;
        }
    
        public void setStubDir(File stubDir) {
            this.stubDir = stubDir;
        }
    
        @Nullable
        public File getConfigurationScript() {
            return configurationScript;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DirectoryFileTreeTest.groovy

            def excludedFile = rootDir.file("subdir1/a/b/c.html").createFile()
            def notUnderRoot = temporaryFolder.createDir("root2").file("a.txt").createFile()
            def doesNotExist = rootDir.file("b.txt")
    
            when:
            def patterns = new PatternSet()
            patterns.include("**/*.txt")
            patterns.exclude("subdir1/**")
    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. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/FileCollectionSpec.groovy

            dir1.file("subdir/f2").createFile()
            TestFile missing = testDir.file("f3")
            testDir.file("f2").createFile()
            testDir.file("ignored1").createFile()
            def collection = containing(file1, dir1, missing)
            def tree = collection.asFileTree
    
            expect:
            assertSetContainsForFileSet(tree, toSet("f1", "f2", "subdir/f2"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/build-organization/cross-project-output-sharing/kotlin/producer/build.gradle.kts

    val makeFile = tasks.register("makeFile") {
        val sharedFile = layout.buildDirectory.file("some-subdir/shared-file.txt")
        outputs.file(sharedFile)
        doFirst {
            sharedFile.get().asFile.writeText("This file is shared across Gradle subprojects.")
        }
    }
    
    val sharedConfiguration by configurations.creating {
        isCanBeResolved = false
    }
    
    artifacts {
        add(sharedConfiguration.name, makeFile)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 409 bytes
    - Viewed (0)
  8. src/io/fs/format.go

    }
    
    // FormatDirEntry returns a formatted version of dir for human readability.
    // Implementations of [DirEntry] can call this from a String method.
    // The outputs for a directory named subdir and a file named hello.go are:
    //
    //	d subdir/
    //	- hello.go
    func FormatDirEntry(dir DirEntry) string {
    	name := dir.Name()
    	b := make([]byte, 0, 5+len(name))
    
    	// The Type method does not return any permission bits,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:34:35 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/install_shadow_gopath.txt

    # Tests Issue #3562
    # go get foo.io (not foo.io/subdir) was not working consistently.
    
    env GO111MODULE=off
    env GOPATH=$WORK/gopath1${:}$WORK/gopath2
    
    mkdir $WORK/gopath1/src/test
    mkdir $WORK/gopath2/src/test
    cp main.go $WORK/gopath2/src/test/main.go
    cd $WORK/gopath2/src/test
    
    ! go install
    stderr 'no install location for.*gopath2.src.test: hidden by .*gopath1.src.test'
    
    -- main.go --
    package main
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 415 bytes
    - Viewed (0)
  10. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/AbstractSourceDependencyIntegrationTest.groovy

            def subdir = repo.file("subdir")
            repo.workTree.listFiles().each {
                if (it.name == '.git') {
                    return
                }
                it.copyTo(subdir.file(it.name))
                it.delete()
            }
            commit = repo.commit('updated')
            mappingFor(repo, "org.test:dep", 'rootDir = "subdir"')
    
            expect:
            succeeds('assemble')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 7.7K bytes
    - Viewed (0)
Back to top