Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 94 for ARE (0.06 sec)

  1. doc/go1.17_spec.html

    to operands that are <i>comparable</i>.
    The ordering operators <code>&lt;</code>, <code>&lt;=</code>, <code>&gt;</code>, and <code>&gt;=</code>
    apply to operands that are <i>ordered</i>.
    These terms and the result of the comparisons are defined as follows:
    </p>
    
    <ul>
    	<li>
    	Boolean values are comparable.
    	Two boolean values are equal if they are either both
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    //
    // The build flags are shared by the build, clean, get, install, list, run,
    // and test commands:
    //
    //	-C dir
    //		Change to dir before running the command.
    //		Any files named on the command line are interpreted after
    //		changing directories.
    //		If used, this flag must be the first one in the command line.
    //	-a
    //		force rebuilding of packages that are already up-to-date.
    //	-n
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods.go

    				// All regular containers are terminated in success and all restartable
    				// init containers are stopped.
    				if stopped == succeeded {
    					return v1.PodSucceeded
    				}
    				// There is at least one failure
    				return v1.PodFailed
    			}
    		}
    		// All containers are terminated
    		if spec.RestartPolicy == v1.RestartPolicyAlways {
    			// All containers are in the process of restarting
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

    pruning away boxes that have high intersection-over-union (IOU) overlap
    with previously selected boxes.  Bounding boxes with score less than
    `score_threshold` are removed.  Bounding boxes are supplied as
    [y1, x1, y2, x2], where (y1, x1) and (y2, x2) are the coordinates of any
    diagonal pair of box corners and the coordinates can be provided as normalized
    (i.e., lying in the interval [0, 1]) or absolute.  Note that this algorithm
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

    // Returns true when the given type lists contain a single element of shaped
    // type with compatible shapes (unranked shape is compatible with any ranked
    // shape, ranked shapes are compatible if their respective dimensions are
    // compatible, dynamic dimensions are compatible with any size, static
    // dimensions must be equal to be compatible) and identical element types.
    bool VerifyCompatibleShapesSameElementType(TypeRange lhs, TypeRange rhs) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      // * Each dimension pair of the source and target shapes are either equal
      //   or one of them is one.
      return success();
    }
    
    OpFoldResult BroadcastToOp::fold(FoldAdaptor) {
      Value input = this->getInput();
    
      // Fold broadcast if operand and result types are the same and all dimensions
      // are statically known (no-op broadcast).
      auto result_ty = mlir::dyn_cast<ShapedType>(getType());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet.go

    	}
    
    	var nodeHasSynced cache.InformerSynced
    	var nodeLister corelisters.NodeLister
    
    	// If kubeClient == nil, we are running in standalone mode (i.e. no API servers)
    	// If not nil, we are running as part of a cluster and should sync w/API
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  8. api/maven-api-model/src/main/mdo/maven.mdo

                dependencies in this section are not immediately resolved. Instead, when a POM derived
                from this one declares a dependency described by a matching groupId and artifactId, the
                version and other values from this section are used for that dependency if they were not
                already specified.</description>
              <association>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

    with a new first dimension for the list index. List update operations are
    converted to operations that create a new tensor representing the list.
    
    In the current implementation, the resulting operations are statically shaped,
    which means it must be possible to infer a bound on the full shape of the
    TensorList. That is, the `element_shape` and `num_elements` arguments to a
    tensor list creation op are constant.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Maps.java

       * and values are the result of applying the provided mapping functions to the input elements. The
       * resulting implementation is specialized for enum key types. The returned map and its views will
       * iterate over keys in their enum definition order, not encounter order.
       *
       * <p>If the mapped keys contain duplicates, the values are merged using the specified merging
       * function.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
Back to top