Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 80 for subdir (0.18 sec)

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

    stdout 'Go Gopher'
    
    env GOPROXY=direct
    
    ! go mod download
    stderr '^go: github\.com/golang/notexist/subdir@v0.1.0: reading github\.com/golang/notexist/subdir/go\.mod at revision subdir/v0\.1\.0: '
    
    -- go.mod --
    module test
    
    go 1.18
    
    require github.com/golang/notexist/subdir v0.1.0
    
    -- $WORK/home/gopher/.gitconfig --
    [user]
    	name = Go Gopher
    	email = ******@****.***
    [url "******@****.***:"]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 16:37:00 UTC 2023
    - 749 bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/upgrade/postupgrade_test.go

    		t.Fatalf("Failed to create key file %s: %v", keyPath, err)
    	}
    	keyFile.Close()
    
    	subDir := filepath.Join(tmpdir, "expired")
    	if err := os.Mkdir(subDir, 0766); err != nil {
    		t.Fatalf("Failed to create backup directory %s: %v", subDir, err)
    	}
    
    	filesToMove := map[string]string{
    		filepath.Join(tmpdir, constants.APIServerCertName): filepath.Join(subDir, constants.APIServerCertName),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 15 11:40:04 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/vendor_import.txt

    	"testing"
    )
    
    func TestMsgExternal(t *testing.T) {
    	if strings.Msg != "hello, world" {
    		t.Fatalf("unexpected msg: %v", strings.Msg)
    	}
    }
    -- vend/subdir/bad.go --
    package subdir
    
    import _ "r"
    -- vend/subdir/good.go --
    package subdir
    
    import _ "p"
    -- vend/vendor/p/p.go --
    package p
    -- vend/vendor/q/q.go --
    package q
    -- vend/vendor/strings/msg.go --
    package strings
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 22 21:14:01 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  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. 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)
  9. src/cmd/go/internal/modfetch/codehost/svn.go

    	// in the local filesystem. (If there is an encoding problem at that point, we
    	// would probably reject the resulting module anyway.)
    
    	remotePath := remote
    	if subdir != "" {
    		remotePath += "/" + subdir
    	}
    
    	release, err := base.AcquireNet()
    	if err != nil {
    		return err
    	}
    	out, err := Run(ctx, workDir, []string{
    		"svn", "list",
    		"--non-interactive",
    		"--xml",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 02:47:12 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/cache/internal/scopes/DefaultCacheScopeMapping.java

            }
        }
    
        private File getCacheDir(File rootDir, VersionStrategy versionStrategy, String subDir) {
            switch (versionStrategy) {
                case CachePerVersion:
                    return new File(rootDir, version.getVersion() + "/" + subDir);
                case SharedCache:
                    return new File(rootDir, subDir);
                default:
                    throw new IllegalArgumentException();
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:30:42 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top