Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 78 for sh_link (0.16 sec)

  1. src/os/os_test.go

    				t.Fatalf("Chtimes failed: %v", err)
    			}
    			names := []string{"bar.txt"}
    			if testenv.HasSymlink() {
    				if err := Symlink(sizedTempDir+"/bar.txt", sizedTempDir+"/symlink.txt"); err != nil {
    					t.Fatalf("Symlink failed: %v", err)
    				}
    				names = append(names, "symlink.txt")
    			}
    			if testenv.HasLink() {
    				if err := Link(sizedTempDir+"/bar.txt", sizedTempDir+"/link.txt"); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/cli-runtime/pkg/resource/builder_test.go

    	if err := os.Symlink(fmt.Sprintf("%s/inode/symlink/loop", tmpDir), fmt.Sprintf("%s/inode/symlink/loop", tmpDir)); err != nil {
    		t.Fatalf("error creating test file: %v", err)
    	}
    
    	tests := []struct {
    		name      string
    		recursive bool
    		directory string
    	}{
    		{"symlink", false, fmt.Sprintf("%s/inode/symlink/pod-link", tmpDir)},
    		{"symlink", true, fmt.Sprintf("%s/inode/symlink/pod-link", tmpDir)},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 11:58:41 UTC 2023
    - 56.1K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanParallelTest.groovy

        @Requires(UnitTestPreconditions.Symlinks)
        def "a task that writes into a symlink that overlaps with output of currently running task is not started"() {
            given:
            def taskOutput = file("outputDir").createDir()
            def symlink = file("symlink")
            symlink.createLink(taskOutput)
    
            and:
            Task a = task("a", type: AsyncWithOutputDirectory)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 93.5K bytes
    - Viewed (0)
  4. src/cmd/go/go_test.go

    	tg.tempFile("yy/zz/zz.go", "package zz\n")
    	if err := os.Symlink(tg.path("yy"), tg.path("src/example/xx/yy")); err != nil {
    		t.Skipf("symlink failed: %v", err)
    	}
    	tg.run("list", "example/xx/z...")
    	tg.grepStdoutNot(".", "list should not have matched anything")
    	tg.grepStderr("matched no packages", "list should have reported that pattern matched no packages")
    	tg.grepStderrNot("symlink", "list should not have reported symlink")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  5. configure.py

      return answer
    
    
    def symlink_force(target, link_name):
      """Force symlink, equivalent of 'ln -sf'.
    
      Args:
        target: items to link to.
        link_name: name of the link.
      """
      try:
        os.symlink(target, link_name)
      except OSError as e:
        if e.errno == errno.EEXIST:
          os.remove(link_name)
          os.symlink(target, link_name)
        else:
          raise e
    
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (1)
  6. pkg/kubelet/kuberuntime/kuberuntime_container.go

    		return s.Message(), kubecontainer.ErrRunContainer
    	}
    	m.recordContainerEvent(pod, container, containerID, v1.EventTypeNormal, events.StartedContainer, fmt.Sprintf("Started container %s", container.Name))
    
    	// Symlink container logs to the legacy container log location for cluster logging
    	// support.
    	// TODO(random-liu): Remove this after cluster logging supports CRI container log path.
    	containerMeta := containerConfig.GetMetadata()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  7. src/runtime/mgcmark.go

    // safely flush because it may result in trying to wake up a goroutine that
    // was just scanned, resulting in a self-deadlock.
    //
    // scanstack will also shrink the stack if it is safe to do so. If it
    // is not, it schedules a stack shrink for the next synchronous safe
    // point.
    //
    // scanstack is marked go:systemstack because it must not be preempted
    // while using a workbuf.
    //
    //go:nowritebarrier
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/css/manual.css

    .site-footer__copy,
    .site-footer__secondary-links {
    	flex-grow: 0;
    	flex-basis: 280px;
    	/* 1. */
    }
    
    /*
     * 1. 'flex-shrink: 1' is applied to the element with the smallest computed width among
     *    'site-footer__copy' and 'site-footer__links'.
     */
    .site-footer__copy {
    	flex-shrink: 1;
    	/* 1. */
    }
    
    .site-footer__logo {
    	flex: 0 0 auto;
    	margin-right: 10px;
    	margin-left: 10px;
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  9. .bazelrc

    build:windows --host_copt=/d2ReducedOptimizeHugeFunctions
    
    # Enable the runfiles symlink tree on Windows. This makes it possible to build
    # the pip package on Windows without an intermediate data-file archive, as the
    # build_pip_package script in its current form (as of Aug 2023) uses the
    # runfiles symlink tree to decide what to put into the Python wheel.
    startup --windows_enable_symlinks
    build:windows --enable_runfiles
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  10. src/syscall/zerrors_darwin_arm64.go

    	AF_INET6                          = 0x1e
    	AF_IPX                            = 0x17
    	AF_ISDN                           = 0x1c
    	AF_ISO                            = 0x7
    	AF_LAT                            = 0xe
    	AF_LINK                           = 0x12
    	AF_LOCAL                          = 0x1
    	AF_MAX                            = 0x28
    	AF_NATM                           = 0x1f
    	AF_NDRV                           = 0x1b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 55.8K bytes
    - Viewed (0)
Back to top