Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for sysdir (0.29 sec)

  1. src/cmd/go/internal/load/pkg.go

    	if str.HasFilePathPrefix(filepath.Clean(srcDir), filepath.Clean(parent)) {
    		return nil
    	}
    
    	// Look for symlinks before reporting error.
    	srcDir = expandPath(srcDir)
    	parent = expandPath(parent)
    	if str.HasFilePathPrefix(filepath.Clean(srcDir), filepath.Clean(parent)) {
    		return nil
    	}
    
    	// Vendor is present, and srcDir is outside parent's tree. Not allowed.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  2. cluster/gce/gci/configure-helper.sh

      fi
    }
    
    # Creates a symlink for a ($1) so that it may be used as block storage
    function safe-block-symlink(){
      local device="${1}"
      local symdir="${2}"
    
      mkdir -p "${symdir}"
    
      get-or-generate-uuid "${device}"
      local myuuid="${retuuid}"
    
      local sym="${symdir}/local-ssd-${myuuid}"
      # Do not "mkdir -p ${sym}" as that will cause unintended symlink behavior
      ln -s "${device}" "${sym}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux.go

    	EEXIST      = syscall.Errno(0x11)
    	EFAULT      = syscall.Errno(0xe)
    	EFBIG       = syscall.Errno(0x1b)
    	EINTR       = syscall.Errno(0x4)
    	EINVAL      = syscall.Errno(0x16)
    	EIO         = syscall.Errno(0x5)
    	EISDIR      = syscall.Errno(0x15)
    	EMFILE      = syscall.Errno(0x18)
    	EMLINK      = syscall.Errno(0x1f)
    	ENFILE      = syscall.Errno(0x17)
    	ENODEV      = syscall.Errno(0x13)
    	ENOENT      = syscall.Errno(0x2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 185.8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIntegrationTest.groovy

        def "directories are not created for output #method which is part of the input"() {
            given:
            buildFile << """
                def a = file('a.jar')
                a.mkdirs()
                new File(a, "subdir").mkdirs()
                new File(a, "subfile.txt").text = "input file"
    
                dependencies {
                    compile files(a)
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:42 UTC 2023
    - 100.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_zos_s390x.go

    	SYS_WCSNCAT                         = 0x8D  // 141
    	SYS_WCSSPN                          = 0x8E  // 142
    	SYS_WCSNCPY                         = 0x8F  // 143
    	SYS_ABS                             = 0x90  // 144
    	SYS_DIV                             = 0x91  // 145
    	SYS_LABS                            = 0x92  // 146
    	SYS_STRNCPY                         = 0x93  // 147
    	SYS_MEMCPY                          = 0x94  // 148
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 146.6K bytes
    - Viewed (0)
Back to top