Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 48 of 48 for dups (0.35 sec)

  1. src/runtime/mprof.go

    		pc := getcallerpc()
    		systemstack(func() {
    			g0 := getg()
    			// Force traceback=1 to override GOTRACEBACK setting,
    			// so that Stack's results are consistent.
    			// GOTRACEBACK is only about crash dumps.
    			g0.m.traceback = 1
    			g0.writebuf = buf[0:0:len(buf)]
    			goroutineheader(gp)
    			traceback(pc, sp, 0, gp)
    			if all {
    				tracebackothers(gp)
    			}
    			g0.m.traceback = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_linux.go

    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Dup(oldfd int) (fd int, err error) {
    	r0, _, e1 := Syscall(SYS_DUP, uintptr(oldfd), 0, 0)
    	fd = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Dup3(oldfd int, newfd int, flags int) (err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //   GTEST_HAS_STREAM_REDIRECTION
    //                            - Define it to 1/0 to indicate whether the
    //                              platform supports I/O stream redirection using
    //                              dup() and dup2().
    //   GTEST_USE_OWN_TR1_TUPLE  - Define it to 1/0 to indicate whether Google
    //                              Test's own tr1 tuple implementation should be
    //                              used.  Unused when the user sets
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  4. src/runtime/traceback.go

    			return '>'
    		case frame.sp:
    			return '<'
    		case bad:
    			return '!'
    		}
    		return 0
    	})
    }
    
    // isSystemGoroutine reports whether the goroutine g must be omitted
    // in stack dumps and deadlock detector. This is any goroutine that
    // starts at a runtime.* entry point, except for runtime.main,
    // runtime.handleAsyncEvent (wasm only) and sometimes runtime.runfinq.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //   GTEST_HAS_STREAM_REDIRECTION
    //                            - Define it to 1/0 to indicate whether the
    //                              platform supports I/O stream redirection using
    //                              dup() and dup2().
    //   GTEST_USE_OWN_TR1_TUPLE  - Define it to 1/0 to indicate whether Google
    //                              Test's own tr1 tuple implementation should be
    //                              used.  Unused when the user sets
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  6. tensorflow/c/c_api_test.cc

      ASSERT_TRUE(scalar3 != nullptr);
      ASSERT_TRUE(feed3 != nullptr);
      ASSERT_TRUE(neg3 != nullptr);
    
      // Check that newly-imported scalar and feed have control deps (neg3 will
      // inherit them from input)
      TF_Operation* control_inputs[100];
      int num_control_inputs = TF_OperationGetControlInputs(
          scalar3, control_inputs, TF_OperationNumControlInputs(scalar3));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         *
         * <p>
         * Example:
         *
         * <pre>
         * project.sync {
         *    from 'my/shared/dependencyDir'
         *    into 'build/deps/compile'
         * }
         * </pre>
         * Note that you can preserve output that already exists in the destination directory:
         * <pre>
         * project.sync {
         *     from 'source'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    This pass is intended to run after the split_into_island_per_op
    pass. That pass splits up multi-op islands into multiple individual islands
    wrapping a single op without applying any control deps between the new
    islands. So, this pass is needed in order to make preservation of the
    semantic ordering relationships between ops as determined by side effect
    analysis explicit in the IR.
    
    Example: original program:
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
Back to top