Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 122 for jailed (0.16 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

          }
          return success();
        };
        if (failed(check_i64_attr("top_k"))) return failure();
        if (failed(check_i64_attr("reduction_dim"))) return failure();
        if (failed(check_f32_attr("recall_target"))) return failure();
        if (failed(check_bool_attr("aggregate_to_topk"))) return failure();
        if (failed(check_i64_attr("reduction_input_size_override"))) {
          return failure();
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/ClosingFuture.java

     *
     * // later
     * try { // get() will throw if the operation failed or was cancelled.
     *   UserName userName = userNameValueAndCloser.get();
     *   // do something with userName
     * } finally {
     *   userNameValueAndCloser.closeAsync();
     * }
     * }</pre>
     *
     * In this example, when {@code userNameValueAndCloser.closeAsync()} is called, the transaction and
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

     *
     * // later
     * try { // get() will throw if the operation failed or was cancelled.
     *   UserName userName = userNameValueAndCloser.get();
     *   // do something with userName
     * } finally {
     *   userNameValueAndCloser.closeAsync();
     * }
     * }</pre>
     *
     * In this example, when {@code userNameValueAndCloser.closeAsync()} is called, the transaction and
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  4. cluster/gce/util.sh

              echo -e "${color_red}Failed to create instance template ${template_name} ${color_norm}" >&2
              exit 2
            fi
            echo -e "${color_yellow}Attempt ${attempt} failed to create instance template ${template_name}. Retrying.${color_norm}" >&2
            attempt=$((attempt + 1))
            sleep $((attempt * 5))
    
            # In case the previous attempt failed with something like a
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  5. src/database/sql/sql_test.go

    			go func() {
    				defer close(waitingForConn)
    
    				for {
    					if t.Failed() {
    						return
    					}
    					db.mu.Lock()
    					ct := db.connRequests.Len()
    					db.mu.Unlock()
    					if ct > 0 {
    						return
    					}
    					time.Sleep(pollDuration)
    				}
    			}()
    
    			<-waitingForConn
    
    			if t.Failed() {
    				return
    			}
    
    			offsetMu.Lock()
    			if ec.expired {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  6. src/runtime/proc.go

    	execLock rwmutex
    )
    
    // These errors are reported (via writeErrStr) by some OS-specific
    // versions of newosproc and newosproc0.
    const (
    	failthreadcreate  = "runtime: failed to create new OS thread\n"
    	failallocatestack = "runtime: failed to allocate stack for the new OS thread\n"
    )
    
    // newmHandoff contains a list of m structures that need new OS threads.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

      };
    
      if (check(op.getWindowDimensions(), "window_dimensions").failed())
        return failure();
    
      if (check(op.getWindowStrides(), "window_strides").failed()) return failure();
    
      if (check(op.getBaseDilations(), "base_dilations").failed()) return failure();
    
      if (check(op.getWindowDilations(), "window_dilations").failed())
        return failure();
    
      ElementsAttr padding;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  8. src/database/sql/sql.go

    // within a transaction ([Tx]) or connection ([Conn]). Once [DB.Begin] is called, the
    // returned [Tx] is bound to a single connection. Once [Tx.Commit] or
    // [Tx.Rollback] is called on the transaction, that transaction's
    // connection is returned to [DB]'s idle connection pool. The pool size
    // can be controlled with [DB.SetMaxIdleConns].
    type DB struct {
    	// Total time waited for new connections.
    	waitDuration atomic.Int64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

                     << ", " << crop_b_name << " " << crop_b << ", and block_size "
                     << block_size;
          }
    
          return success();
        };
    
        if (failed(check_spatial_dim(1, "height", "crop_top", "crop_bottom")) ||
            failed(check_spatial_dim(2, "width", "crop_left", "crop_right")))
          return failure();
    
        int64_t input_depth = input_shape[3];
        int64_t output_depth = output_shape[3];
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

        if (mlir::failed(pm.run(module)))
          return diag_handler.Combine(
              errors::Internal("Failed to promote var handles to args."));
        if (failed(
                mlir::tf_saved_model::LiftVariables(module, bundle.GetSession())))
          return diag_handler.Combine(
              errors::Internal("Failed to lift variables."));
      } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
Back to top