Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 153 for symlinks (0.16 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/core-configuration/file-collections/src/testFixtures/groovy/org/gradle/api/internal/file/collections/AbstractDirectoryWalkerTest.groovy

                    subDir.mkdirs()
                    generateFilesAndSubDirectories(subDir, fileCount, dirCount, maxDepth, currentDepth + 1, fileIdGenerator)
                }
            }
        }
    
        @Requires(UnitTestPreconditions.Symlinks)
        def "symbolic links for directories are handled properly - walker: #walkerInstance.class.simpleName"() {
            given:
            def rootDir = tmpDir.createDir("root")
            def dir = rootDir.createDir("a/b")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/JavaSourceIncrementalCompilationIntegrationTest.groovy

            result.assertHasErrorOutput("package java.util.logging is not visible")
        }
    
        @Requires(UnitTestPreconditions.Symlinks)
        @Issue("https://github.com/gradle/gradle/issues/9202")
        def "source mapping file works with symlinks"() {
            // Daemon cleans up symlinks in VFS
            executer.requireDaemon()
            executer.requireIsolatedDaemons()
    
            given:
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 17:44:34 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  9. src/os/stat_windows.go

    		// (per https://pubs.opengroup.org/onlinepubs/9699919799.2013edition/basedefs/V1_chap04.html#tag_04_12):
    		// symlinks before the last separator in the path must be resolved. Since
    		// the last separator in this case follows the last path element, we should
    		// follow symlinks in the last path element.
    		followSurrogates = true
    	}
    	return stat("Lstat", name, followSurrogates)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  10. platforms/jvm/jvm-services/src/test/groovy/org/gradle/jvm/toolchain/internal/SdkmanInstallationSupplierTest.groovy

            directories*.source.unique() == ["SDKMAN!"]
        }
    
        @Requires(UnitTestPreconditions.Symlinks)
        def "supplies installations with symlinked candidate"() {
            given:
            def real = candidates.createDir("java/11.0.6.hs-adpt")
            def symlink = candidates.file("java/symlink").createLink(real)
    
            when:
            def directories = supplier.get()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:17:53 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top