Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 385 for symlink1 (0.19 sec)

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

    # argument has .go suffix, is a symlink and exists
    [symlink] symlink test_sym.go -> test.go
    [symlink] ! go get test_sym.go
    [symlink] stderr 'go: test_sym.go: arguments must be package or module paths'
    [symlink] rm test_sym.go
    
    # argument has .go suffix, is a symlink and exists in sub-directory
    [symlink] symlink test/test_sym.go -> test.go
    [symlink] ! go get test/test_sym.go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:08 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/controlplane/volumes.go

    	// On some systems where we host-mount /etc/ssl/certs, it is also required to mount additional directories.
    	// This is needed due to symlinks pointing from files in /etc/ssl/certs to these directories.
    	for _, caCertsExtraVolumePath := range caCertsExtraVolumePaths {
    		if isExtraVolumeMountNeeded(caCertsExtraVolumePath) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 09:33:18 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/tools/ToolSearchPath.java

                File symlink = maybeResolveCygwinSymlink(symlinkCandidate);
                if (symlink != null) {
                    return symlink;
                }
            }
            return null;
        }
    
        private File maybeResolveCygwinSymlink(File symlink) throws IOException {
            if (!symlink.isFile()) {
                return null;
            }
            if (symlink.length() <= 11) {
                return null;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/tasks/Delete.java

        }
    
        /**
         * Returns if symlinks should be followed when doing a delete.
         *
         * @return true if symlinks will be followed.
         */
        @Input
        public boolean isFollowSymlinks() {
            return followSymlinks;
        }
    
        /**
         * Set if symlinks should be followed. If the platform doesn't support symlinks, then this will have no effect.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 24 23:13:41 UTC 2022
    - 4K bytes
    - Viewed (0)
  5. src/cmd/internal/moddeps/moddeps_test.go

    		if info.IsDir() && (src == filepath.Join(testenv.GOROOT(t), "bin") ||
    			src == filepath.Join(testenv.GOROOT(t), "pkg")) {
    			// If the OS supports symlinks, use them instead
    			// of copying the bin and pkg directories.
    			if err := os.Symlink(src, dst); err == nil {
    				return filepath.SkipDir
    			}
    		}
    
    		perm := info.Mode() & os.ModePerm
    		if info.Mode()&os.ModeSymlink != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  6. platforms/core-runtime/native/src/test/groovy/org/gradle/internal/nativeintegration/filesystem/services/GenericFileSystemTest.groovy

        def symlink = Stub(Symlink)
        def fileMetadataAccessor = Stub(FileMetadataAccessor)
        def statistics = Mock(StatStatistics.Collector)
        def fileSystemFactory = new GenericFileSystem.Factory(fileMetadataAccessor, statistics, TestFiles.tmpDirTemporaryFileProvider(temporaryFolder.testDirectory))
        def fileSystem = fileSystemFactory.create(fileModeMutator, fileModeAccessor, symlink)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:50:56 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/list_symlink_dotdotdot.txt

    [!symlink] skip
    
    symlink $WORK/gopath/src/sym -> $WORK/gopath/src/tree
    symlink $WORK/gopath/src/tree/squirrel -> $WORK/gopath/src/dir2 # this symlink should not be followed
    cd sym
    go list ./...
    cmp stdout $WORK/gopath/src/want_list.txt
    -- tree/go.mod --
    module example.com/tree
    
    go 1.20
    -- tree/tree.go --
    package tree
    -- tree/branch/branch.go --
    package branch
    -- dir2/squirrel.go --
    package squirrel
    -- want_list.txt --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 31 20:33:05 UTC 2023
    - 463 bytes
    - Viewed (0)
  8. pkg/volume/util/subpath/subpath_windows_test.go

    			subPath:       filepath.Join(testingVolumePath, `symlink`),
    			expectError:   false,
    			symlinkTarget: base,
    		},
    		{
    			volumePath:    testingVolumePath,
    			subPath:       filepath.Join(testingVolumePath, `symlink\c\d`),
    			expectError:   true,
    			symlinkTarget: "",
    		},
    		{
    			volumePath:    testingVolumePath,
    			subPath:       filepath.Join(testingVolumePath, `symlink\y926`),
    			expectError:   true,
    			symlinkTarget: "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 13.8K bytes
    - Viewed (0)
  9. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/filesystem/jdk7/Jdk7Symlink.java

    import org.gradle.api.internal.file.temp.TemporaryFileProvider;
    import org.gradle.internal.nativeintegration.filesystem.Symlink;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import java.io.File;
    import java.io.IOException;
    import java.nio.file.Files;
    import java.nio.file.Path;
    
    public class Jdk7Symlink implements Symlink {
        private static final Logger LOGGER = LoggerFactory.getLogger(Jdk7Symlink.class);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:06:40 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/context/DaemonCompatibilitySpecSpec.groovy

            expect:
            !compatible
            unsatisfiedReason.contains "JVM is incompatible"
        }
    
        @Requires(UnitTestPreconditions.Symlinks)
        def "contexts with symlinked javaHome are compatible"() {
            def linkToJdk = tmp.testDirectory.file("link")
            linkToJdk.createLink(javaHome)
    
            assert javaHome != linkToJdk
            assert linkToJdk.exists()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 8.1K bytes
    - Viewed (0)
Back to top