Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 85 for Else (0.05 sec)

  1. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	Index int
    }
    
    func (fp *FunctionParam) print(ps *printState) {
    	if fp.Index == 0 {
    		ps.writeString("this")
    	} else if ps.llvmStyle {
    		if fp.Index == 1 {
    			ps.writeString("fp")
    		} else {
    			fmt.Fprintf(&ps.buf, "fp%d", fp.Index-2)
    		}
    	} else {
    		fmt.Fprintf(&ps.buf, "{parm#%d}", fp.Index)
    	}
    }
    
    func (fp *FunctionParam) Traverse(fn func(AST) bool) {
    	fn(fp)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

        return tflite::TensorType_BFLOAT16;
      } else if (type.isF64()) {
        return tflite::TensorType_FLOAT64;
      } else if (mlir::isa<mlir::TF::StringType>(type)) {
        return tflite::TensorType_STRING;
      } else if (mlir::isa<mlir::TF::Quint8Type>(type)) {
        return tflite::TensorType_UINT8;
      } else if (auto complex_type = mlir::dyn_cast<mlir::ComplexType>(type)) {
        auto ftype = complex_type.getElementType();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

          padding = "VALID";
        } else {
          SmallVector<int64_t, num_spatial_dims * 2> padding_array;
          for (const auto v : conv_op.getPadding().value().getValues<int64_t>()) {
            padding_array.emplace_back(v);
          }
    
          if (IsSamePadding(conv_op, strides, dilation, padding_array)) {
            // Check if padding is "SAME".
            padding = "SAME";
          } else {
            padding = "EXPLICIT";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  4. pkg/config/validation/validation.go

    						catchAllEgressListenerFound = true
    					} else {
    						errs = AppendValidation(errs, fmt.Errorf("sidecar: the egress listener with empty port should be the last listener in the list"))
    					}
    				} else {
    					errs = AppendValidation(errs, fmt.Errorf("sidecar: egress can have only one listener with empty port"))
    					continue
    				}
    			} else {
    				// nolint: staticcheck
    				if egress.Port.TargetPort > 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

                    if (Task.class.isAssignableFrom(type)) {
                        // return this
                        _ALOAD(0);
                    } else {
                        // if (owner != null) { return owner.getTaskThatOwnsThisObject() } else { return null }
                        _ALOAD(0);
                        _GETFIELD(generatedType, OWNER_FIELD, MODEL_OBJECT_TYPE);
                        _DUP();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

              "result isn't");
        } else if (lhs_element_type_with_subtype.GetSubtypes().size() > 1) {
          DCOMMENT(
              "Unexpected `TensorFlowTypeWithSubtype` original type with size>1");
        } else if (lhs_element_type_with_subtype.GetSubtypes().empty()) {
          subtype = rhs_element_type_with_subtype.GetSubtypes().front();
        } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

          if (s1_shape[s1_idx] == 1) r1.push_back(idx);
        } else if (s1_idx == -1) {
          r1.push_back(idx);
          if (s0_shape[s0_idx] == 1) r0.push_back(idx);
        } else if (s0_shape[s0_idx] != s1_shape[s1_idx]) {
          if (s0_shape[s0_idx] != bcasted_shape[idx])
            r0.push_back(idx);
          else
            r1.push_back(idx);
        } else if (s0_shape[s0_idx] == 1) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  8. pkg/printers/internalversion/printers.go

    		status = "Complete"
    	} else if hasJobCondition(obj.Status.Conditions, batch.JobFailed) {
    		status = "Failed"
    	} else if obj.ObjectMeta.DeletionTimestamp != nil {
    		status = "Terminating"
    	} else if hasJobCondition(obj.Status.Conditions, batch.JobSuspended) {
    		status = "Suspended"
    	} else if hasJobCondition(obj.Status.Conditions, batch.JobFailureTarget) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  9. cluster/gce/gci/configure-helper.sh

          if [[ "${i}" -lt "${scsiblocknum}" ]]; then
            mount-ext "${ssd}" "${devicenum}" "scsi" "block"
          else
            # GKE does not set NODE_LOCAL_SSDS so all non-block devices
            # are assumed to be filesystem devices
            mount-ext "${ssd}" "${devicenum}" "scsi" "fs"
          fi
          i=$((i+1))
        else
          echo "No local SCSI SSD disks found."
        fi
      done
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

          if (PruneForReverseReachability(graph_.get(), prune_start)) {
            VLOG(1) << "Pruned unused nodes in graphdef";
          } else {
            VLOG(1) << "No unused nodes in graphdef to prune";
          }
        } else {
          VLOG(1) << "No output nodes specified, skipping pruning";
        }
      } else {
        VLOG(1) << "Pruning unused nodes in graphdef is disabled";
      }
    
    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