Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 1,631 for yield (0.18 sec)

  1. src/syscall/zsysnum_freebsd_arm.go

    	SYS_SETRESUID                = 311 // { int setresuid(uid_t ruid, uid_t euid, \
    	SYS_SETRESGID                = 312 // { int setresgid(gid_t rgid, gid_t egid, \
    	SYS_YIELD                    = 321 // { int yield(void); }
    	SYS_MLOCKALL                 = 324 // { int mlockall(int how); }
    	SYS_MUNLOCKALL               = 325 // { int munlockall(void); }
    	SYS___GETCWD                 = 326 // { int __getcwd(u_char *buf, u_int buflen); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 25.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/walk/convert.go

    	// Keep in sync with cmd/compile/internal/types/type.go:Type.SoleComponent.
    	for {
    		switch {
    		case n.Type().IsStruct():
    			if n.Type().Field(0).Sym.IsBlank() {
    				// Treat blank fields as the zero value as the Go language requires.
    				n = typecheck.TempAt(base.Pos, ir.CurFunc, n.Type().Field(0).Type)
    				appendWalkStmt(init, ir.NewAssignStmt(base.Pos, n, nil))
    				continue
    			}
    			n = typecheck.DotField(n.Pos(), n, 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 17:28:22 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/python/py_function_lib.py

        logging.log_every_n(
            logging.DEBUG,
            'Running representative sample for calibration: %d / %s',
            5,
            sample_num,
            total_num_samples,
        )
        yield sample
    
      logging.info(
          'Running representative samples complete: %d / %s',
          sample_num,
          total_num_samples,
      )
    
    
    def _run_function_for_calibration_graph_mode(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 05:32:11 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Stream.kt

       *
       *  * A `SYN_RESET` frame abnormally terminates the stream.
       *  * Both input and output streams have transmitted all data and headers.
       *
       * Note that the input stream may continue to yield data even after a stream reports itself as
       * not open. This is because input data is buffered.
       */
      val isOpen: Boolean
        get() {
          this.withLock {
            if (errorCode != null) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/loopreschedchecks.go

    // if b has its own phi definition then it takes the place of h.
    // defsForUses provides information about other definitions of the variable that are present
    // (and if nil, indicates that the variable is no longer live)
    // sdom must yield a preorder of the flow graph if recursively walked, root-to-children.
    // The result of newSparseOrderedTree with order supplied by a dfs-postorder satisfies this
    // requirement.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 21:17:10 UTC 2023
    - 16K bytes
    - Viewed (0)
  6. src/syscall/zsysnum_dragonfly_amd64.go

    	SYS_LIO_LISTIO             = 320 // { int lio_listio(int mode, struct aiocb * const *acb_list, int nent, struct sigevent *sig); }
    	SYS_YIELD                  = 321 // { int yield(void); }
    	SYS_MLOCKALL               = 324 // { int mlockall(int how); }
    	SYS_MUNLOCKALL             = 325 // { int munlockall(void); }
    	SYS___GETCWD               = 326 // { int __getcwd(u_char *buf, u_int buflen); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 22.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tests/prepare-tf-fake-quant.mlir

      ^bb0(%arg1: tensor<8xf32>, %arg2: tensor<f32>, %arg3: tensor<f32>):
        %2 = "tf.FakeQuantWithMinMaxVars"(%arg1, %arg2, %arg3) {num_bits = 5, narrow_range = false} : (tensor<8xf32>, tensor<f32>, tensor<f32>) -> tensor<8xf32>
        "tfl.yield"(%2) : (tensor<8xf32>) -> ()
      }) {num_bits = 5, narrow_range = false} :  (tensor<8xf32>, tensor<f32>, tensor<f32>) -> tensor<8xf32>
      func.return %rst : tensor<8xf32>
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/util/concurrent/MoreExecutorsTest.java

      void awaitTimedWaiting(Thread thread) {
        while (true) {
          switch (thread.getState()) {
            case BLOCKED:
            case NEW:
            case RUNNABLE:
            case WAITING:
              Thread.yield();
              break;
            case TIMED_WAITING:
              return;
            case TERMINATED:
            default:
              throw new AssertionError();
          }
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 28.2K bytes
    - Viewed (0)
  9. src/syscall/zsysnum_freebsd_386.go

    	SYS_SETRESUID                = 311 // { int setresuid(uid_t ruid, uid_t euid, \
    	SYS_SETRESGID                = 312 // { int setresgid(gid_t rgid, gid_t egid, \
    	SYS_YIELD                    = 321 // { int yield(void); }
    	SYS_MLOCKALL                 = 324 // { int mlockall(int how); }
    	SYS_MUNLOCKALL               = 325 // { int munlockall(void); }
    	SYS___GETCWD                 = 326 // { int __getcwd(u_char *buf, u_int buflen); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 25.5K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/base/Splitter.java

       * will <i>stop splitting when the limit is reached</i>, and just return the final piece as-is.
       *
       * <p><b>Exception:</b> for consistency with separator-based splitters, {@code split("")} does not
       * yield an empty iterable, but an iterable containing {@code ""}. This is the only case in which
       * {@code Iterables.size(split(input))} does not equal {@code IntMath.divide(input.length(),
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 23.7K bytes
    - Viewed (0)
Back to top