Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 175 for npipe (0.03 sec)

  1. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/impl/DirectorySnapshotterTest.groovy

        }
    
    
        @Requires(UnitTestPreconditions.UnixDerivative)
        @Issue("https://github.com/gradle/gradle/issues/2552")
        def "snapshotting named pipe fails"() {
            def rootDir = tmpDir.createDir("root")
            def pipe = rootDir.file("testPipe").createNamedPipe()
    
            when:
            directorySnapshotter.snapshot(rootDir.absolutePath, null, [:], unfilteredSubSnapshotsCollector)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  2. src/os/file_plan9.go

    	}
    	return nil
    }
    
    // Pipe returns a connected pair of Files; reads from r return bytes
    // written to w. It returns the files and an error, if any.
    func Pipe() (r *File, w *File, err error) {
    	var p [2]int
    
    	if e := syscall.Pipe(p[0:]); e != nil {
    		return nil, nil, NewSyscallError("pipe", e)
    	}
    
    	return NewFile(uintptr(p[0]), "|0"), NewFile(uintptr(p[1]), "|1"), nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:35:30 UTC 2024
    - 16K bytes
    - Viewed (0)
  3. src/internal/trace/trace_test.go

    	})
    }
    
    func TestTraceStress(t *testing.T) {
    	switch runtime.GOOS {
    	case "js", "wasip1":
    		t.Skip("no os.Pipe on " + runtime.GOOS)
    	}
    	testTraceProg(t, "stress.go", nil)
    }
    
    func TestTraceStressStartStop(t *testing.T) {
    	switch runtime.GOOS {
    	case "js", "wasip1":
    		t.Skip("no os.Pipe on " + runtime.GOOS)
    	}
    	testTraceProg(t, "stress-start-stop.go", nil)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  4. src/os/os_unix_test.go

    // See also issues: 22939, 24331
    func newFileTest(t *testing.T, blocking bool) {
    	if runtime.GOOS == "js" || runtime.GOOS == "wasip1" {
    		t.Skipf("syscall.Pipe is not available on %s.", runtime.GOOS)
    	}
    
    	p := make([]int, 2)
    	if err := syscall.Pipe(p); err != nil {
    		t.Fatalf("pipe: %v", err)
    	}
    	defer syscall.Close(p[1])
    
    	// Set the read-side to non-blocking.
    	if !blocking {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:32:43 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  5. src/syscall/syscall_darwin.go

    func PtraceDetach(pid int) (err error) { return ptrace(PT_DETACH, pid, 0, 0) }
    
    //sysnb pipe(p *[2]int32) (err error)
    
    func Pipe(p []int) (err error) {
    	if len(p) != 2 {
    		return EINVAL
    	}
    	var q [2]int32
    	err = pipe(&q)
    	if err == nil {
    		p[0] = int(q[0])
    		p[1] = int(q[1])
    	}
    	return
    }
    
    func Getfsstat(buf []Statfs_t, flags int) (n int, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SmbEnumerationUtil.java

        }
    
    
        static FileEntry[] doDfsRootEnum ( CIFSContext ctx, SmbResourceLocator loc, Address address ) throws IOException {
            try ( DcerpcHandle handle = getHandle(ctx, loc, address, "\\PIPE\\netdfs") ) {
                MsrpcDfsRootEnum rpc = new MsrpcDfsRootEnum(loc.getServer());
                handle.sendrecv(rpc);
                if ( rpc.retval != 0 ) {
                    throw new SmbException(rpc.retval, true);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Jul 20 08:41:19 UTC 2019
    - 12.5K bytes
    - Viewed (0)
  7. tools/packaging/common/envoy_bootstrap.json

            "load_assignment": {
              "cluster_name": "sds-grpc",
              "endpoints": [{
                "lb_endpoints": [{
                  "endpoint": {
                    "address":{
                      "pipe": {
                        "path": "./var/run/secrets/workload-spiffe-uds/socket"
                      }
                    }
                  }
                }]
              }]
            }
          },
          {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  8. src/syscall/zerrors_aix_ppc64.go

    	ENXIO           = Errno(0x6)
    	EOPNOTSUPP      = Errno(0x40)
    	EOVERFLOW       = Errno(0x7f)
    	EOWNERDEAD      = Errno(0x5f)
    	EPERM           = Errno(0x1)
    	EPFNOSUPPORT    = Errno(0x41)
    	EPIPE           = Errno(0x20)
    	EPROCLIM        = Errno(0x53)
    	EPROTO          = Errno(0x79)
    	EPROTONOSUPPORT = Errno(0x3e)
    	EPROTOTYPE      = Errno(0x3c)
    	ERANGE          = Errno(0x22)
    	EREMOTE         = Errno(0x5d)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 16:18:12 UTC 2019
    - 47.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go

    	ENOSYS             = Errno(134)
    	ENOTDIR            = Errno(135)
    	ENOTEMPTY          = Errno(136)
    	ENOTTY             = Errno(137)
    	ENXIO              = Errno(138)
    	EPERM              = Errno(139)
    	EPIPE              = Errno(140)
    	EROFS              = Errno(141)
    	ESPIPE             = Errno(142)
    	ESRCH              = Errno(143)
    	EXDEV              = Errno(144)
    	E2BIG              = Errno(145)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/httpstream/wsstream/conn.go

    	w    io.WriteCloser
    
    	read, write bool
    }
    
    // newWebsocketChannel creates a pipe for writing to a websocket. Do not write to this pipe
    // prior to the connection being opened. It may be no, half, or full duplex depending on
    // read and write.
    func newWebsocketChannel(conn *Conn, num byte, read, write bool) *websocketChannel {
    	r, w := io.Pipe()
    	return &websocketChannel{conn, num, r, w, read, write}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:10:30 UTC 2024
    - 14.5K bytes
    - Viewed (0)
Back to top