Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for isInitialized (0.31 sec)

  1. tensorflow/c/c_api.cc

      }
      if (!result.ok()) {
        status->status = result;
        return;
      }
    
      // Store results in c_outputs[]
      for (int i = 0; i < noutputs; ++i) {
        const Tensor& src = outputs[i];
        if (!src.IsInitialized() || src.NumElements() == 0) {
          c_outputs[i] =
              EmptyTensor(static_cast<TF_DataType>(src.dtype()), src.shape());
          continue;
        }
        c_outputs[i] = TF_TensorFromTensor(src, &status->status);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  2. doc/go1.17_spec.html

    Multiple variables on the left-hand side of a variable declaration initialized
    by single (multi-valued) expression on the right-hand side are initialized
    together: If any of the variables on the left-hand side is initialized, all
    those variables are initialized in the same step.
    </p>
    
    <pre>
    var x = a
    var a, b = f() // a and b are initialized together, before x is initialized
    </pre>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  3. cmd/bucket-replication.go

    // a synchronous manner.
    func mustReplicate(ctx context.Context, bucket, object string, mopts mustReplicateOptions) (dsc ReplicateDecision) {
    	// object layer not initialized we return with no decision.
    	if newObjectLayerFn() == nil {
    		return
    	}
    
    	// Disable server-side replication on object prefixes which are excluded
    	// from versioning via the MinIO bucket versioning extension.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  4. src/reflect/value.go

    	checkBucket uintptr
    }
    
    func (h *hiter) initialized() bool {
    	return h.t != nil
    }
    
    // A MapIter is an iterator for ranging over a map.
    // See [Value.MapRange].
    type MapIter struct {
    	m     Value
    	hiter hiter
    }
    
    // Key returns the key of iter's current map entry.
    func (iter *MapIter) Key() Value {
    	if !iter.hiter.initialized() {
    		panic("MapIter.Key called before Next")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

    TensorList. That is, the `element_shape` and `num_elements` arguments to a
    tensor list creation op are constant.
    
    A tensor list creation op `tf.EmptyTensorList`/`tf.TensorListReserve` will be
    turned in to a zero-initialized buffer, and the size is initialized to 0
    for `tf.EmptyTensorList` or the specified size for `tf.TensorListReserve`.
    Each push will be turned into `tf.XlaDynamicUpdateSlice` with the incremented
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

            self._output_saved_model_path,
            quantization_options,
            representative_dataset=repr_ds,
        )
    
        # Tests table lookup to make sure the table has been initialized
        # successfully.
        with session.Session(graph=ops.Graph()) as sess:
          output_meta_graph_def = saved_model_loader.load(
              sess, tags=tags, export_dir=self._output_saved_model_path
          )
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  7. src/runtime/proc.go

    	for _, t := range ts {
    		doInit1(t)
    	}
    }
    
    func doInit1(t *initTask) {
    	switch t.state {
    	case 2: // fully initialized
    		return
    	case 1: // initialization in progress
    		throw("recursive call during initialization - linker skew")
    	default: // not initialized yet
    		t.state = 1 // initialization in progress
    
    		var (
    			start  int64
    			before tracestat
    		)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/Maps.java

       * href="http://goo.gl/iz2Wi">"diamond" syntax</a>.
       *
       * @param map the mappings to be placed in the new map
       * @return a new {@code HashMap} initialized with the mappings from {@code map}
       */
      public static <K extends @Nullable Object, V extends @Nullable Object> HashMap<K, V> newHashMap(
          Map<? extends K, ? extends V> map) {
        return new HashMap<>(map);
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/Maps.java

       * href="http://goo.gl/iz2Wi">"diamond" syntax</a>.
       *
       * @param map the mappings to be placed in the new map
       * @return a new {@code HashMap} initialized with the mappings from {@code map}
       */
      public static <K extends @Nullable Object, V extends @Nullable Object> HashMap<K, V> newHashMap(
          Map<? extends K, ? extends V> map) {
        return new HashMap<>(map);
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  10. src/net/http/server.go

    	// subsequent requests on this connection and stop reading
    	// input from it.
    	requestBodyLimitHit bool
    
    	// trailers are the headers to be sent after the handler
    	// finishes writing the body. This field is initialized from
    	// the Trailer response header when the response header is
    	// written.
    	trailers []string
    
    	handlerDone atomic.Bool // set true when the handler exits
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
Back to top