Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 3,906 for while_1 (1.39 sec)

  1. tensorflow/compiler/mlir/tfrt/tests/mlrt/while_to_map_fn.mlir

      // CHECK-SAME: {body_fn = @"map/while/LoopCond_body/MapFnBody", num_tensor_list_or_flow_in = 1 : i32} 
      // CHECK-NOT: tf.While
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 23 06:40:22 UTC 2024
    - 68.6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/ExecutionList.java

        // NPE on null listener, so we propagate that contract up into the add method as well.
        checkNotNull(runnable, "Runnable was null.");
        checkNotNull(executor, "Executor was null.");
    
        // Lock while we check state. We must maintain the lock while adding the new pair so that
        // another thread can't run the list out from under us. We only add to the list if we have not
        // yet started execution.
        synchronized (this) {
          if (!executed) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 22 21:17:24 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/resource-device-inference.mlir

            -> !tf_res
          // CHECK-NEXT: "tf.VarHandleOp"
          %var_handle = "tf.VarHandleOp"() {container = "c", shared_name = "v0", device = "/TPU:1"}
            : () -> !tf_res
          // CHECK-NEXT: "tf.While"
          "tf.While"(%arg1, %id0, %var_handle) {
              body = @while_body,
              cond = @while_cond, is_stateless = false}
            : (tensor<i32>, !tf_res,
               !tf_res) ->
              (tensor<i32>, !tf_res,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 17 16:01:45 UTC 2022
    - 18.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/results/VisitedGraphResults.java

     * of the dependency graph, as well as access to any failures that occurred while
     * building the graph.
     */
    public interface VisitedGraphResults {
    
        /**
         * Returns true if any failures occurred while building these results.
         */
        boolean hasAnyFailure();
    
        /**
         * Visits all failures that occurred while resolving the graph.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. operator/pkg/metrics/monitoring.go

    	OperatorVersionLabel = monitoring.CreateLabel("version")
    
    	// MergeErrorLabel describes the type of merge error.
    	MergeErrorLabel = monitoring.CreateLabel("error_type")
    
    	// RenderErrorLabel describes the type of the error while rendering.
    	RenderErrorLabel = monitoring.CreateLabel("render_error")
    
    	// CRFetchErrorReasonLabel describes the reason/HTTP code
    	// for failing to fetch CR.
    	CRFetchErrorReasonLabel = monitoring.CreateLabel("reason")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 10 15:35:03 UTC 2023
    - 7K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/netbios/Lmhosts.java

                            b = b * 10 + c - '0';
                        }
                        ip = ( ip << 8 ) + b;
                    }
                    while( i < data.length && Character.isWhitespace( data[i] )) {
                        i++;
                    }
                    j = i;
                    while( j < data.length && Character.isWhitespace( data[j] ) == false ) {
                        j++;
                    }
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 5.8K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/ListenerCallQueue.java

     *   <li>It is easy for the user to ensure that listeners are never invoked while holding locks.
     * </ul>
     *
     * The last point is subtle. Often the observable object will be managing its own internal state
     * using a lock, however it is dangerous to dispatch listeners while holding a lock because they
     * might run on the {@code directExecutor()} or be otherwise re-entrant (call back into your
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Dec 13 19:45:20 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/kubelet/kubelet.go

    		return
    	}
    
    	if !initSystem.ServiceExists(kubeadmconstants.Kubelet) {
    		fmt.Println("[kubelet-start] Couldn't detect a kubelet service, can't make sure the kubelet not running for a short period of time while setting up configuration for it.")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 15 16:01:35 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/control_flow.mlir

      // CHECK: [[pred_0:%.*]]:2 = tfrt.call @"while_cond_lt9/tfrt_predicate"
      // CHECK: tfrt.while [[pred_0]]#1 @"while_body_add2/tfrt_body_10"
      // CHECK-SAME: parallel_iterations(10)
      // CHECK: [[pred_1:%.*]]:2 = tfrt.call @"while_cond_lt9/tfrt_predicate"
      // CHECK: tfrt.while [[pred_1]]#1 @"while_body_add2/tfrt_body_1"
      // CHECK-SAME: parallel_iterations(1)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 00:40:32 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  10. platforms/core-runtime/io/src/main/java/org/gradle/internal/io/StreamByteBuffer.java

            return input;
        }
    
        public void writeTo(OutputStream target) throws IOException {
            while (prepareRead() != -1) {
                currentReadChunk.writeTo(target);
            }
        }
    
        public void readFrom(InputStream inputStream, int len) throws IOException {
            int bytesLeft = len;
            while (bytesLeft > 0) {
                int spaceLeft = allocateSpace();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 08:51:14 UTC 2024
    - 16.6K bytes
    - Viewed (0)
Back to top