Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 153 for symlinks (0.39 sec)

  1. src/crypto/x509/root_unix_test.go

    	if f, err := os.Create(temp("file")); err != nil {
    		t.Fatal(err)
    	} else {
    		f.Close()
    	}
    	if err := os.Symlink("target-in", temp("link-in")); err != nil {
    		t.Fatal(err)
    	}
    	if err := os.Symlink("../target-out", temp("link-out")); err != nil {
    		t.Fatal(err)
    	}
    	got, err := readUniqueDirectoryEntries(tmp)
    	if err != nil {
    		t.Fatal(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 01 00:36:38 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  2. pkg/volume/util/volumepathhandler/volume_path_handler_unsupported.go

    	return "", fmt.Errorf("GetLoopDevice not supported for this build.")
    }
    
    // FindGlobalMapPathUUIDFromPod finds {pod uuid} bind mount under globalMapPath
    // corresponding to map path symlink, and then return global map path with pod uuid.
    func (v VolumePathHandler) FindGlobalMapPathUUIDFromPod(pluginDir, mapPath string, podUID types.UID) (string, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  3. ci/official/containers/linux_arm64/devel.usertools/setup_venv_test.sh

    # Usage: setup_venv_test.sh venv_and_symlink_name "glob pattern for one wheel file"
    # Example: setup_venv_test.sh bazel_pip "/tf/pkg/*.whl"
    # 
    # This will create a venv with that wheel file installed in it, and a symlink
    # in ./venv_and_symlink_name/tensorflow to ./tensorflow. We use this for the
    # "pip" tests.
    
    python -m venv /$1
    mkdir -p $1
    rm -f ./$1/tensorflow
    ln -s $(ls /$1/lib) /$1/lib/python3
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. hack/update-go-workspace.sh

    # This script generates go.work so that it includes all Go packages
    # in this repo, with a few exceptions.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    # Go tools really don't like it if you have a symlink in `pwd`.
    cd "$(pwd -P)"
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    # This sets up the environment, like GOCACHE, which keeps the worktree cleaner.
    kube::golang::setup_env
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 10 15:44:10 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. cluster/gce/windows/README-GCE-Windows-kube-up.md

        k8s repository. If your `~/go/src/k8s.io/kubernetes` directory is actually
        a symlink to `~/go/src/github.com/<username>/kubernetes`, create this
        additional symlink:
    
        ```bash
        cd ~/go/src/github.com; ln -s . github.com
        ```
    
        Without this additional symlink you may receive this error when invoking
        the `run-e2e.sh` script:
    
        ```bash
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 21:39:56 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  6. platforms/core-runtime/files/src/test/groovy/org/gradle/internal/file/impl/AbstractSymlinkDeleterTest.groovy

            then:
            !link.exists()
            keepTxt.assertDoesNotExist()
            didWork
    
            cleanup:
            link.delete()
        }
    
        def "does not follow symlink to a file when followSymlinks is #followSymlinks"() {
            Assume.assumeTrue(canCreateSymbolicLinkToFile())
    
            given:
            def originalFile = tmpDir.createFile("originalFile", "keep.txt")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  7. ci/official/containers/linux_arm64/setup.python.sh

    /setup.packages.sh pythons.txt
    
    # Re-link pyconfig.h from aarch64-linux-gnu into the devtoolset directory
    # for any Python version present
    pushd /usr/include/aarch64-linux-gnu
    for f in $(ls | grep python); do
      # set up symlink for devtoolset-10
      rm -f /dt10/usr/include/aarch64-linux-gnu/$f
      ln -s /usr/include/aarch64-linux-gnu/$f /dt10/usr/include/aarch64-linux-gnu/$f
    done
    popd
    
    # Python 3.10 include headers fix:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Sep 29 00:26:34 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. platforms/jvm/plugins-groovy/src/main/java/org/gradle/api/internal/plugins/GroovyJarFile.java

        }
    
        @Nullable
        public static GroovyJarFile parse(File file) {
            try {
                if (file.getName().contains("groovy")) {
                    // Resolve a symlink file to the real location
                    file = file.toPath().toRealPath().toFile();
                }
            } catch (IOException e) {
                // Let the code use the original File otherwise
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 19:14:26 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/DarwinFileWatcherRegistryFactory.java

         * That means that we would not invalidate the right locations in the virtual file system on macOS.
         * Therefore, we disable file system watching when we try to watch a directory whose parent is a symlink.
         *
         * Note that the project directory is canonicalized by Gradle, so the project directory can always be watched.
         */
        private static void validateLocationToWatch(File location) {
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:33 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/impl/DefaultOverlappingOutputDetectorTest.groovy

            "directory"      | new DirectorySnapshot("/absolute/path", "path", AccessType.DIRECT, TestHashCodes.hashCodeFrom(123), [])
            "broken symlink" | new MissingFileSnapshot("/absolute/path", "path", AccessType.VIA_SYMLINK)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 3.7K bytes
    - Viewed (0)
Back to top