Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 197 for getRand (0.21 sec)

  1. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/model/CallableInfo.java

     * limitations under the License.
     */
    
    package org.gradle.internal.instrumentation.model;
    
    import java.util.List;
    
    public interface CallableInfo {
        CallableKindInfo getKind();
        CallableOwnerInfo getOwner();
        String getCallableName();
        CallableReturnTypeInfo getReturnType();
        List<ParameterInfo> getParameters();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 908 bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/push_transpose_through_ewise.cc

            llvm::dyn_cast<RankedTensorType>(tpose_arg1->getResultTypes()[0]);
        auto tpose_arg2_type =
            llvm::dyn_cast<RankedTensorType>(tpose_arg2->getResultTypes()[0]);
        if (tpose_arg1_type.getRank() != tpose_arg2_type.getRank()) {
          return failure();
        }
    
        if (llvm::isa<BlockArgument>(tpose_arg1.getPerm()) ||
            llvm::isa<BlockArgument>(tpose_arg2.getPerm())) {
          return failure();
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/reduce_while_operands.cc

      Block &cond = while_op.getCond().front();
      Block &body = while_op.getBody().front();
    
      auto n = while_op.getNumOperands();
      if (!AllOperationSafe(cond) || !AllOperationSafe(body)) return false;
    
      // Find all Consumed indices.
      // i is consumed element if result(i) is used outside whileOp or
      // argument(i) is used in whileOp.getCond().
      for (auto i = 0; i < n; ++i) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/ClasspathEntry.java

     */
    package org.gradle.plugins.ide.eclipse.model;
    
    import groovy.util.Node;
    
    /**
     * Represents an entry in the Eclipse classpath.
     */
    public interface ClasspathEntry {
        String getKind();
        void appendNode(Node node);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 836 bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/tf_saved_model_freeze_variables.cc

          while_op->erase();
        } else if (auto while_op = dyn_cast<TF::WhileRegionOp>(user_op)) {
          auto new_while_op = GetUpdatedWhileOp(
              while_op, while_op.getCond().getArgumentTypes(), args_to_erase);
          new_while_op.getCond().takeBody(while_op.getCond());
          new_while_op.getBody().takeBody(while_op.getBody());
          llvm::BitVector erase_indices;
          UpdateTerminatorArguments(new_while_op.getBody(), args_to_erase,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 09:56:53 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  6. operator/pkg/helmreconciler/apply.go

    }
    
    // ApplyObject creates or updates an object in the API server depending on whether it already exists.
    // It mutates obj.
    func (h *HelmReconciler) ApplyObject(obj *unstructured.Unstructured) error {
    	if obj.GetKind() == "List" {
    		var errs util.Errors
    		list, err := obj.ToList()
    		if err != nil {
    			scope.Errorf("error converting List object: %s", err)
    			return err
    		}
    		for _, item := range list.Items {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 12 17:12:54 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  7. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/Container.java

        public Container(Node node) {
            super(node);
        }
    
        public Container(String path) {
            super(path);
        }
    
        @Override
        public String getKind() {
            return "con";
        }
    
        @Override
        public String toString() {
            return "Container" + super.toString();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/eclipse/DefaultAccessRule.java

        private final int kind;
        private final String pattern;
    
        public DefaultAccessRule(int kind, String pattern) {
            this.kind = kind;
            this.pattern = pattern;
        }
    
        public int getKind() {
            return kind;
        }
    
        public String getPattern() {
            return pattern;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1K bytes
    - Viewed (0)
  9. operator/cmd/mesh/uninstall.go

    		items = append(items, usList.Items...)
    	}
    	kindNameMap := make(map[string][]string)
    	for _, o := range items {
    		nameList := kindNameMap[o.GetKind()]
    		if nameList == nil {
    			kindNameMap[o.GetKind()] = []string{}
    		}
    		kindNameMap[o.GetKind()] = append(kindNameMap[o.GetKind()], o.GetName())
    	}
    	if len(kindNameMap) == 0 {
    		return "", ""
    	}
    	output, gwlist := "", []string{}
    	for kind, name := range kindNameMap {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/passes/insert_weight_param.cc

        if (!type || !type.getElementType().isF32()) {
          return failure();
        }
        return success(
            op->hasOneUse() &&
            IsWeightQuantizableFunction(*op->getUses().begin(), type.getRank()));
      }
    
      // Checks if the operand is second operand of `tf.XlaCallModule` op for
      // `stablehlo.convolution` or `stablehlo.dot_general` with fully_quantizable
      // trait.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 05:56:10 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top