Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 175 for npipe (0.04 sec)

  1. src/text/template/parse/lex.go

    	itemIdentifier // alphanumeric identifier not starting with '.'
    	itemLeftDelim  // left action delimiter
    	itemLeftParen  // '(' inside action
    	itemNumber     // simple number, including imaginary
    	itemPipe       // pipe symbol
    	itemRawString  // raw quoted string (includes quotes)
    	itemRightDelim // right action delimiter
    	itemRightParen // ')' inside action
    	itemSpace      // run of spaces separating arguments
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 04 22:36:12 UTC 2022
    - 18.1K bytes
    - Viewed (0)
  2. src/runtime/os2_aix.go

    //go:cgo_import_dynamic libc_mprotect mprotect "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_munmap munmap "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_open open "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_pipe pipe "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_raise raise "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_read read "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_sched_yield sched_yield "libc.a/shr_64.o"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/build_xla_ops_pass_test.cc

          NodeWith(Op("Switch"), Inputs(Out(0, xla_compile), Out(1, xla_compile)));
      auto ctrl_dep =
          NodeWith(Op("Identity"), Inputs(Out(0, switch_on_compilation_pred)));
      // Check that we pipe int32 inputs through an IdentityN to avoid extra D2H
      // copies.
      EXPECT_THAT(
          stateful_partitioned_call_op,
          NodeWith(Inputs(Out(NodeWith(Op("IdentityN"), CtrlDeps(ctrl_dep))))));
    }
    #endif
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/test/inl_test.go

    		}
    	}
    
    	args := append([]string{"build", "-gcflags=-m -m", "-tags=math_big_pure_go"}, pkgs...)
    	cmd := testenv.CleanCmdEnv(testenv.Command(t, testenv.GoToolPath(t), args...))
    	pr, pw := io.Pipe()
    	cmd.Stdout = pw
    	cmd.Stderr = pw
    	cmdErr := make(chan error, 1)
    	go func() {
    		cmdErr <- cmd.Run()
    		pw.Close()
    	}()
    	scanner := bufio.NewScanner(pr)
    	curPkg := ""
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/SmbTransport.java

                if (resp.command == ServerMessageBlock.SMB_COM_READ_ANDX &&
                            (errorCode == 0 ||
                            errorCode == 0x80000005)) { // overflow indicator normal for pipe
                    SmbComReadAndXResponse r = (SmbComReadAndXResponse)resp;
                    int off = HEADER_LENGTH;
                                        /* WordCount thru dataOffset always 27 */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 31.2K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/UntrackedTaskIntegrationTest.groovy

            cleanup:
            unreadableDir.setReadable(true)
        }
    
        @Requires(UnitTestPreconditions.UnixDerivative)
        def "tracked task producing named pipe fails"() {
            def rootDir = file("build/root")
            def namedPipe = rootDir.file("unreadable")
            rootDir.mkdirs()
            namedPipe.createNamedPipe()
    
            buildFile generateProducerTask(false)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 23 08:05:53 UTC 2023
    - 16.4K bytes
    - Viewed (0)
  7. cmd/metacache-set.go

    		return nil
    	}
    	readers := make([]*metacacheReader, len(disks))
    	defer func() {
    		for _, r := range readers {
    			r.Close()
    		}
    	}()
    	for i := range disks {
    		r, w := io.Pipe()
    		// Make sure we close the pipe so blocked writes doesn't stay around.
    		defer r.CloseWithError(context.Canceled)
    
    		readers[i] = newMetacacheReader(r)
    		d := disks[i]
    
    		// Send request to each disk.
    		go func() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 22:18:44 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  8. pkg/volume/util/subpath/subpath_linux.go

    			return false, "", fmt.Errorf("error creating directory %s: %s", bindPathTarget, err)
    		}
    	} else {
    		// "/bin/touch <bindPathTarget>".
    		// A file is enough for all possible targets (symlink, device, pipe,
    		// socket, ...), bind-mounting them into a file correctly changes type
    		// of the target file.
    		if err = ioutil.WriteFile(bindPathTarget, []byte{}, 0640); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 12 14:09:11 UTC 2022
    - 21.4K bytes
    - Viewed (0)
  9. src/net/http/fcgi/fcgi_test.go

    	close(rc.closed)
    	return rc.ReadCloser.Close()
    }
    
    // Test whether server properly closes connection when processing slow
    // requests
    func TestSlowRequest(t *testing.T) {
    	pr, pw := io.Pipe()
    
    	writerDone := make(chan struct{})
    	go func() {
    		for _, buf := range [][]byte{
    			streamBeginTypeStdin,
    			makeRecord(typeStdin, 1, nil),
    		} {
    			pw.Write(buf)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 11 18:51:39 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  10. src/runtime/sys_darwin.go

    //go:cgo_unsafe_args
    func read(fd int32, p unsafe.Pointer, n int32) int32 {
    	ret := libcCall(unsafe.Pointer(abi.FuncPCABI0(read_trampoline)), unsafe.Pointer(&fd))
    	KeepAlive(p)
    	return ret
    }
    func read_trampoline()
    
    func pipe() (r, w int32, errno int32) {
    	var p [2]int32
    	errno = libcCall(unsafe.Pointer(abi.FuncPCABI0(pipe_trampoline)), noescape(unsafe.Pointer(&p)))
    	return p[0], p[1], errno
    }
    func pipe_trampoline()
    
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 23.9K bytes
    - Viewed (0)
Back to top