Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 66 for Symlink (0.06 seconds)

  1. src/archive/zip/testdata/symlink.zip

    symlink ../target...
    Created: Tue Dec 30 11:13:12 GMT 2025
    - Last Modified: Mon Sep 08 04:08:51 GMT 2014
    - 173 bytes
    - Click Count (0)
  2. cmd/os-readdir_test.go

    			t.Fatalf("Unable to create a file, %s", err)
    		}
    		// Symlink will not be added to entries.
    		if err := os.Symlink(filepath.Join(dir, name1), filepath.Join(dir, name2)); err != nil {
    			t.Fatalf("Unable to create a symlink, %s", err)
    		}
    		// Add to entries.
    		entries = append(entries, name1)
    		// Symlinks are preserved for regular files
    		entries = append(entries, name2)
    	}
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Tue May 27 15:19:03 GMT 2025
    - 7.5K bytes
    - Click Count (0)
  3. cmd/os_windows.go

    		var typ os.FileMode // regular file
    		switch {
    		case data.FileAttributes&syscall.FILE_ATTRIBUTE_REPARSE_POINT != 0:
    			// Reparse point is a symlink
    			fi, err := os.Stat(pathJoin(dirPath, name))
    			if err != nil {
    				// It got deleted in the meantime, not found
    				// or returns too many symlinks ignore this
    				// file/directory.
    				if osIsNotExist(err) || isSysErrPathNotFound(err) ||
    					isSysErrTooManySymlinks(err) {
    					continue
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Tue Feb 18 16:25:55 GMT 2025
    - 5K bytes
    - Click Count (0)
  4. src/archive/tar/testdata/hdr-only.tar

    fifo file The quick brown fox jumped over the lazy dog! hardlink null sda symlink badlink fifo The quick brown fox jumped over the lazy dog! hardlink sda symli badlink...
    Created: Tue Dec 30 11:13:12 GMT 2025
    - Last Modified: Tue Dec 01 20:16:26 GMT 2015
    - 10K bytes
    - Click Count (0)
  5. ci/devinfra/docker/windows2022/Dockerfile

    # Symlink a directory, to have it pretend be the T:\ drive.
    # This drive letter is used by internal CI,
    # and part of it is mounted to the container during the container's creation.
    #
    # While the mount argument (`-v host_path:container_path`) still requires
    # `container_path` to be a legitimate C:\ path, in this case, 'C:\drive_t',
    # this symlink does allow for the convenience of passing unedited paths
    Created: Tue Dec 30 12:39:10 GMT 2025
    - Last Modified: Mon Jan 13 18:59:55 GMT 2025
    - 10.3K bytes
    - Click Count (0)
  6. ci/official/libtensorflow.sh

      tfrun nvidia-smi
    fi
    
    # Update the version numbers for Nightly only
    if [[ "$TFCI_NIGHTLY_UPDATE_VERSION_ENABLE" == 1 ]]; then
      python_bin=python3
      # TODO(belitskiy): Add a `python3` alias/symlink to Windows Docker image.
      if [[ $(uname -s) = MSYS_NT* ]]; then
        python_bin="python"
      fi
      tfrun "$python_bin" tensorflow/tools/ci_build/update_version.py --nightly
    fi
    
    if [[ $(uname -s) != MSYS_NT* ]]; then
    Created: Tue Dec 30 12:39:10 GMT 2025
    - Last Modified: Fri Jan 24 20:17:08 GMT 2025
    - 2K bytes
    - Click Count (0)
  7. ci/official/envs/windows_x86_2022

    TFCI_WHL_SIZE_LIMIT=450M
    TFCI_WHL_SIZE_LIMIT_ENABLE=1
    TFCI_WHL_IMPORT_TEST_ENABLE=1
    TFCI_PYTHON_VERIFY_PIP_INSTALL_ARGS=""
    
    # Used to simulate a T:\ drive within the container, to a limited extent,
    # via a symlink.
    # Helpful since the internal CI utilizes a T:\ drive, part of which is mounted
    # to the container, and would result in C:\<path> != T:\<path> mismatches,
    # when using variables like `TFCI_OUTPUT_DIR` in `docker exec commands,
    Created: Tue Dec 30 12:39:10 GMT 2025
    - Last Modified: Thu Nov 06 19:44:26 GMT 2025
    - 2.7K bytes
    - Click Count (0)
  8. cmd/os-readdir-common.go

    package cmd
    
    // Options for readDir function call
    type readDirOpts struct {
    	// The maximum number of entries to return
    	count int
    	// Follow directory symlink
    	followDirSymlink bool
    }
    
    // Return all the entries at the directory dirPath.
    func readDir(dirPath string) (entries []string, err error) {
    	return readDirWithOpts(dirPath, readDirOpts{count: -1})
    }
    
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Fri Jul 09 23:20:51 GMT 2021
    - 1.3K bytes
    - Click Count (0)
  9. src/archive/zip/writer_test.go

    		Method: Deflate,
    		Mode:   0755 | fs.ModeSetuid,
    	},
    	{
    		Name:   "setgid",
    		Data:   []byte("setgid file"),
    		Method: Deflate,
    		Mode:   0755 | fs.ModeSetgid,
    	},
    	{
    		Name:   "symlink",
    		Data:   []byte("../link/target"),
    		Method: Deflate,
    		Mode:   0755 | fs.ModeSymlink,
    	},
    	{
    		Name:   "device",
    		Data:   []byte("device file"),
    		Method: Deflate,
    		Mode:   0755 | fs.ModeDevice,
    	},
    Created: Tue Dec 30 11:13:12 GMT 2025
    - Last Modified: Tue Jan 28 04:20:09 GMT 2025
    - 14.4K bytes
    - Click Count (0)
  10. ci/official/wheel.sh

      tfrun nvidia-smi
    fi
    
    # Update the version numbers for Nightly only
    if [[ "$TFCI_NIGHTLY_UPDATE_VERSION_ENABLE" == 1 ]]; then
      python_bin=python3
      # TODO(belitskiy): Add a `python3` alias/symlink to Windows Docker image.
      if [[ $(uname -s) = MSYS_NT* ]]; then
        python_bin="python"
      fi
      tfrun "$python_bin" tensorflow/tools/ci_build/update_version.py --nightly
      # replace tensorflow to tf_nightly in the wheel name
    Created: Tue Dec 30 12:39:10 GMT 2025
    - Last Modified: Mon Mar 03 17:29:53 GMT 2025
    - 3.8K bytes
    - Click Count (0)
Back to Top