Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 227 for subdir (0.13 sec)

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

    ! stderr 'matched no packages'
    stderr '^go: example\.net/emptysubdir/subdir/\.\.\.: module example\.net/emptysubdir/subdir: reading http://.*: 404 Not Found\n\tserver response: 404 page not found\n\z'
    
    # It doesn't make sense to 'go get' a path in the standard library,
    # since the standard library necessarily can't have unresolved imports.
    #
    # TODO(#30241): Maybe that won't always be the case?
    #
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  2. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/impl/FileSystemSnapshotFilterTest.groovy

            def rootFile2 = root.createFile("rootFile2")
            def subdir = dir1.createDir("subdir")
            def subdirFile1 = subdir.createFile("subdirFile1")
    
            def unfiltered = fileSystemAccess.read(root.getAbsolutePath(), snapshottingFilter(new PatternSet())).get()
    
            expect:
            filteredPaths(unfiltered, include("**/*2")) == [root, dir1, dirFile2, subdir, rootFile2] as Set
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/file/archive/AbstractArchiveFileTreeTest.java

            rootDir.file("subdir/file1.txt").write("content");
            rootDir.file("subdir2/file2.txt").write("content");
            archiveFileToRoot(getArchiveFile());
    
            assertVisits(getTree(), toList("subdir/file1.txt", "subdir2/file2.txt"), toList("subdir", "subdir2"));
            assertSetContainsForAllTypes(getTree(), toList("subdir/file1.txt", "subdir2/file2.txt"));
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 28 16:17:59 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/cache/internal/VersionSpecificCacheDirectoryScanner.java

            ImmutableSortedSet.Builder<VersionSpecificCacheDirectory> builder = ImmutableSortedSet.naturalOrder();
            for (File subDir : listVersionSpecificCacheDirs()) {
                GradleVersion version = tryParseGradleVersion(subDir);
                if (version != null) {
                    builder.add(new VersionSpecificCacheDirectory(subDir, version));
                }
            }
            return builder.build();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 07 14:25:52 UTC 2018
    - 2.5K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_toolchain_slash.txt

    chmod 0777 run.sh
    
    ! go list all
    ! stdout 'RAN SCRIPT'
    
    cd subdir
    ! go list all
    ! stdout 'RAN SCRIPT'
    
    -- go.mod --
    module exploit
    
    go 1.21
    toolchain go1.999999-/run.sh
    -- go1.999999-/run.sh --
    #!/bin/sh
    printf 'RAN SCRIPT\n'
    exit 1
    -- run.sh --
    #!/bin/sh
    printf 'RAN SCRIPT\n'
    exit 1
    -- subdir/go.mod --
    module exploit
    
    go 1.21
    toolchain go1.999999-/../../run.sh
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 06 18:27:30 UTC 2023
    - 464 bytes
    - Viewed (0)
  6. src/cmd/go/internal/modfetch/codehost/shell.go

    				continue
    			}
    			os.Stdout.Write(data)
    
    		case "zip":
    			if len(f) != 4 {
    				fmt.Fprintf(os.Stderr, "?usage: zip rev subdir output\n")
    				continue
    			}
    			subdir := f[2]
    			if subdir == "-" {
    				subdir = ""
    			}
    			rc, err := repo.ReadZip(f[1], subdir, 10<<20)
    			if err != nil {
    				fmt.Fprintf(os.Stderr, "?%s\n", err)
    				continue
    			}
    			data, err := io.ReadAll(rc)
    			rc.Close()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/GradleBuildScriptExecutionFromSubDirIntegTest.groovy

                    }
                }
            """
            settingsFile << "include 'tmp'"
    
            when:
            def subdir = file("tmp")
            subdir.mkdirs()
            executer.inDirectory(subdir)
            succeeds ':checkDir'
    
            then:
            subdir.listFiles().length == 0
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:22 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modfetch/codehost/vcs.go

    	readZip       func(rev, subdir, remote, target string) []string                                   // cmd to read rev's subdir as zip file
    	doReadZip     func(ctx context.Context, dst io.Writer, workDir, rev, subdir, remote string) error // arbitrary function to read rev's subdir as zip file
    }
    
    var re = lazyregexp.New
    
    var vcsCmds = map[string]*vcsCmd{
    	"hg": {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modfetch/codehost/git_test.go

    			},
    		},
    
    		{
    			repo:   gitrepo1,
    			rev:    "aaaaaaaaab",
    			subdir: "",
    			err:    "unknown revision",
    		},
    		{
    			repo:   hgrepo1,
    			rev:    "aaaaaaaaab",
    			subdir: "",
    			err:    "unknown revision",
    		},
    
    		{
    			repo:   vgotest1,
    			rev:    "submod/v1.0.4",
    			subdir: "submod",
    			files: map[string]uint64{
    				"prefix/":                0,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 19:46:23 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  10. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/CompositeCleanupActionTest.groovy

            given:
            def firstCleanupAction = Mock(CleanupAction)
            def secondCleanupAction = Mock(CleanupAction)
            def subDir = temporaryFolder.file("subDir")
    
            when:
            CompositeCleanupAction.builder()
                .add(firstCleanupAction)
                .add(subDir, secondCleanupAction)
                .build()
                .clean(cleanableStore, progressMonitor)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top