Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for wsasend (0.09 sec)

  1. src/internal/poll/fd_windows.go

    			return syscall.WSASendto(o.fd.Sysfd, &o.buf, 1, &o.qty, 0, o.sa, &o.o, nil)
    		})
    		return n, err
    	}
    
    	ntotal := 0
    	for len(buf) > 0 {
    		b := buf
    		if len(b) > maxRW {
    			b = b[:maxRW]
    		}
    		o := &fd.wop
    		o.InitBuf(b)
    		o.sa = sa
    		n, err := execIO(o, func(o *operation) error {
    			return syscall.WSASendto(o.fd.Sysfd, &o.buf, 1, &o.qty, 0, o.sa, &o.o, nil)
    		})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 16:50:42 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/build_xla_ops_pass.cc

      // iterate on graph->op_nodes().
      std::vector<Node*> xla_compiled_kernels;
      absl::c_copy_if(graph->op_nodes(), std::back_inserter(xla_compiled_kernels),
                      [](const Node* n) {
                        if (n->IsSend() || n->IsRecv() || n->IsControlFlow()) {
                          return false;
                        }
    
                        // Only compile nodes that are marked for compilation by the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/compilability_check_util.cc

    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 30.3K bytes
    - Viewed (0)
Back to top