Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 389 for symlinks (0.21 sec)

  1. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/impl/DirectorySnapshotterStatisticsTest.groovy

            then:
            3 * statisticsCollector.recordVisitDirectory()
            2 * statisticsCollector.recordVisitFile()
            0 * _
        }
    
        @Requires(UnitTestPreconditions.Symlinks)
        def "can visit broken symlink"() {
            given:
            def rootDir = tmpDir.createDir("root")
            rootDir.file('brokenSymlink').createLink("linkTarget")
            assert rootDir.listFiles()*.exists() == [false]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  2. pkg/volume/volume_linux.go

    		klog.ErrorS(err, "Lchown failed", "path", filename)
    	}
    
    	// chmod passes through to the underlying file for symlinks.
    	// Symlinks have a mode of 777 but this really doesn't mean anything.
    	// The permissions of the underlying file are what matter.
    	// However, if one reads the mode of a symlink then chmods the symlink
    	// with that mode, it changes the mode of the underlying file, overridden
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 03 19:34:37 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_symlink.txt

    env GO111MODULE=on
    [!symlink] skip
    
    # 'go get' should resolve modules of imported packages.
    go get
    go list -deps -f '{{.Module}}' .
    stdout golang.org/x/text
    
    go get ./subpkg
    go list -deps -f '{{.Module}}' ./subpkg
    stdout golang.org/x/text
    
    # Create a copy of the module using symlinks in src/links.
    mkdir links
    symlink links/go.mod -> $GOPATH/src/go.mod
    symlink links/go.sum -> $GOPATH/src/go.sum
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  4. testing/internal-testing/src/main/resources/valid-precondition-combinations.csv

    UnitTestPreconditions$SmartTerminalAvailable
    UnitTestPreconditions$StableGroovy
    UnitTestPreconditions$StableGroovy,UnitTestPreconditions$Jdk11OrLater,UnitTestPreconditions$Jdk21OrEarlier
    UnitTestPreconditions$Symlinks
    UnitTestPreconditions$Unix
    UnitTestPreconditions$UnixDerivative
    UnitTestPreconditions$UnixDerivative,PluginTestPreconditions$BashAvailable
    UnitTestPreconditions$UnixDerivative,PluginTestPreconditions$DashAvailable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:38 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  5. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/filesystem/services/UnsupportedSymlink.java

    import org.gradle.internal.nativeintegration.filesystem.Symlink;
    
    import java.io.File;
    import java.io.IOException;
    
    class UnsupportedSymlink implements Symlink {
        @Override
        public boolean isSymlinkCreationSupported() {
            return false;
        }
    
        @Override
        public void symlink(File link, File target) throws IOException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:06:40 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/filesystem/services/WindowsSymlink.java

    import org.gradle.internal.nativeintegration.filesystem.Symlink;
    
    import java.io.File;
    import java.io.IOException;
    
    class WindowsSymlink implements Symlink {
        @Override
        public boolean isSymlinkCreationSupported() {
            return false;
        }
    
        @Override
        public void symlink(File link, File target) throws IOException {
            throw new IOException("Creation of symlinks is not supported on this platform.");
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:06:40 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  7. doc/next/6-stdlib/99-minor/os/61893.md

    On Windows, the mode bits reported by [Lstat] and [Stat] for
    reparse points changed. Mount points no longer have [ModeSymlink] set,
    and reparse points that are not symlinks, Unix sockets, or dedup files
    now always have [ModeIrregular] set.
    This behavior is controlled by the `winsymlink` setting.
    For Go 1.23, it defaults to `winsymlink=1`.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 20:57:18 UTC 2024
    - 386 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/optimizing-performance/file_system_watching.adoc

    * ext3
    * ext4
    * XFS
    * HFS+
    * NTFS
    
    Gradle also supports VirtualBox's shared folders.
    
    Network file systems like Samba and NFS are not supported.
    
    .Symlinks
    --
    File system watching is not compatible with symlinks.
    If your project files include symlinks, symlinked files do not benefit from file system-watching optimizations.
    --
    
    == Unsupported File Systems
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 26 16:37:56 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  9. hack/verify-no-vendor-cycles.sh

    # Check for any vendored package that imports main repo
    # Staging repos are explicitly excluded even though go list does not currently consider symlinks
    go run cmd/dependencycheck/dependencycheck.go -restrict "^k8s\.io/kubernetes/" -exclude "^k8s\.io/(${staging_repos_pattern})(/|$)" "${KUBE_TEMP}/deps_other.json"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:56 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. apache-maven/src/assembly/shared/mvnvalidate

    ## resolve links - $0 may be a link to Maven's home
    PRG="$0"
    
    # need this for relative symlinks
    while [ -h "$PRG" ] ; do
      ls=`ls -ld "$PRG"`
      link=`expr "$ls" : '.*-> \(.*\)$'`
      if expr "$link" : '/.*' > /dev/null; then
        PRG="$link"
      else
        PRG="`dirname "$PRG"`/$link"
      fi
    done
    
    saveddir=`pwd`
    
    MAVEN_HOME=`dirname "$PRG"`/..
    
    # make it fully qualified
    MAVEN_HOME=`cd "$MAVEN_HOME" && pwd`
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 23 07:59:32 UTC 2020
    - 418 bytes
    - Viewed (0)
Back to top