Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 592 for pipe1 (0.05 sec)

  1. src/main/java/jcifs/smb/WinError.java

            "No more connections can be made to this remote computer at this time because there are already as many connections as the computer can accept.",
            "The pipe state is invalid.", "All pipe instances are busy.", "The pipe is being closed.", "No process is on the other end of the pipe.",
            "More data is available.", "The service is not available", "The list of servers for this workgroup is not currently available.",
        };
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.4K bytes
    - Viewed (0)
  2. src/runtime/os_solaris.go

    	r1, _ := sysvicall2Err(fn, a1, a2)
    	return r1
    }
    
    //go:nosplit
    //go:cgo_unsafe_args
    
    // sysvicall2Err returns both the system call result and the errno value.
    // This is used by sysvicall2 and pipe2.
    func sysvicall2Err(fn *libcFunc, a1, a2 uintptr) (uintptr, uintptr) {
    	// Leave caller's PC/SP around for traceback.
    	gp := getg()
    	var mp *m
    	if gp != nil {
    		mp = gp.m
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  3. src/syscall/exec_freebsd.go

    	// so that pass 2 won't stomp on an fd it needs later.
    	if pipe < nextfd {
    		_, _, err1 = RawSyscall(SYS_FCNTL, uintptr(pipe), F_DUP2FD_CLOEXEC, uintptr(nextfd))
    		if err1 != 0 {
    			goto childerror
    		}
    		pipe = nextfd
    		nextfd++
    	}
    	for i = 0; i < len(fd); i++ {
    		if fd[i] >= 0 && fd[i] < i {
    			if nextfd == pipe { // don't stomp on pipe
    				nextfd++
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 29 18:51:35 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  4. src/syscall/exec_libc.go

    	// Pass 1: look for fd[i] < i and move those up above len(fd)
    	// so that pass 2 won't stomp on an fd it needs later.
    	if pipe < nextfd {
    		switch runtime.GOOS {
    		case "illumos", "solaris":
    			_, err1 = fcntl1(uintptr(pipe), _F_DUP2FD_CLOEXEC, uintptr(nextfd))
    		default:
    			_, err1 = dup2child(uintptr(pipe), uintptr(nextfd))
    			if err1 != 0 {
    				goto childerror
    			}
    			_, err1 = fcntl1(uintptr(nextfd), F_SETFD, FD_CLOEXEC)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 29 18:51:35 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  5. src/image/png/reader_test.go

    			if c.R != 0x11a7 || c.G != 0x11a7 || c.B != 0x11a7 || c.A != 0x1085 {
    				t.Error(fn, fmt.Errorf("wrong pixel value at (2, 1): %x", c))
    			}
    			continue
    		}
    
    		piper, pipew := io.Pipe()
    		pb := bufio.NewScanner(piper)
    		go sng(pipew, fn, img)
    		defer piper.Close()
    
    		// Read the .sng file.
    		sf, err := os.Open("testdata/pngsuite/" + fn + ".sng")
    		if err != nil {
    			t.Error(fn, err)
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 24 12:12:12 UTC 2022
    - 28.5K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/dcerpc/DcerpcPipeHandle.java

            if (out != null && out.isOpen() == false)
                throw new IOException("DCERPC pipe is no longer open");
    
            if (in == null)
                in = (SmbFileInputStream)pipe.getNamedPipeInputStream();
            if (out == null)
                out = (SmbFileOutputStream)pipe.getNamedPipeOutputStream();
            if (isDirect) {
                out.writeDirect( buf, off, length, 1 );
                return;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 3.7K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/constants/constants_windows.go

    const (
    	// CRISocketContainerd is the containerd CRI endpoint
    	CRISocketContainerd = "npipe:////./pipe/containerd-containerd"
    	// CRISocketCRIO is the cri-o CRI endpoint
    	// NOTE: this is a placeholder as CRI-O does not support Windows
    	CRISocketCRIO = "npipe:////./pipe/cri-o"
    	// CRISocketDocker is the cri-dockerd CRI endpoint
    	CRISocketDocker = "npipe:////./pipe/cri-dockerd"
    
    	// DefaultCRISocket defines the default CRI socket
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 12 15:15:45 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  8. src/runtime/netpoll_kqueue_pipe.go

    // Therefore we use the pipe to wake up the kevent on NetBSD at this point. Get back here
    // and switch to EVFILT_USER when we bump up the minimal requirement of NetBSD to 10.0.
    // Alternatively, maybe we can use EVFILT_USER on the NetBSD by checking the kernel version
    // via uname(3) and fall back to the pipe if the kernel version is older than 10.0.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/testcshared/testdata/libgo2/libgo2.go

    // the shared library without using any exported symbols.  The init
    // function creates a pipe and Dups the read end to a known number
    // that the C code can also use.
    
    const (
    	fd = 30
    )
    
    func init() {
    	var p [2]int
    	if e := syscall.Pipe(p[0:]); e != nil {
    		fmt.Fprintf(os.Stderr, "pipe: %v\n", e)
    		os.Exit(2)
    	}
    
    	if e := dup2(p[0], fd); e != nil {
    		fmt.Fprintf(os.Stderr, "dup2: %v\n", e)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. src/runtime/runtime-gdb_unix_test.go

    	if err != nil {
    		t.Fatalf("building source %v\n%s", err, out)
    	}
    
    	r, w, err := os.Pipe()
    	if err != nil {
    		t.Fatalf("error creating control pipe: %v", err)
    	}
    	defer r.Close()
    
    	// Start the test binary.
    	cmd = testenv.Command(t, "./a.exe", "-pipe-fd=3")
    	cmd.Dir = dir
    	cmd.ExtraFiles = []*os.File{w}
    	var output bytes.Buffer
    	cmd.Stdout = &output // for test logging
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 17 19:05:30 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top