Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 169 for i$ (0.04 sec)

  1. doc/go1.17_spec.html

    literal.
    </p>
    
    
    <h2 id="Constants">Constants</h2>
    
    <p>There are <i>boolean constants</i>,
    <i>rune constants</i>,
    <i>integer constants</i>,
    <i>floating-point constants</i>, <i>complex constants</i>,
    and <i>string constants</i>. Rune, integer, floating-point,
    and complex constants are
    collectively called <i>numeric constants</i>.
    </p>
    
    <p>
    A constant value is represented by a
    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/internal/obj/s390x/asmz.go

    	{i: 26, as: AMOVW, a1: C_LACON, a6: C_REG},
    	{i: 26, as: AMOVWZ, a1: C_LACON, a6: C_REG},
    	{i: 3, as: AMOVD, a1: C_DCON, a6: C_REG},
    	{i: 3, as: AMOVW, a1: C_DCON, a6: C_REG},
    	{i: 3, as: AMOVWZ, a1: C_DCON, a6: C_REG},
    	{i: 3, as: AMOVB, a1: C_DCON, a6: C_REG},
    	{i: 3, as: AMOVBZ, a1: C_DCON, a6: C_REG},
    
    	// store constant
    	{i: 72, as: AMOVD, a1: C_SCON, a6: C_LAUTO},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

      if (!operand_type || !output_type) return false;
    
      for (uint64_t i = 1; i < rank - 1; ++i) {
        int64_t padding_size =
            (output_type.getShape()[i] - 1) * (*window_strides)[i] +
            rw.getWindowDimensions().getValues<int64_t>()[i] -
            operand_type.getShape()[i];
        if (padding[2 * i] != tensorflow::MathUtil::FloorOfRatio(
    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. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

    // Creates the `tfl.qconst` for filter. If `rhs_op` is a `stablehlo.constant`,
    // this transposes the filter value from [i, o] -> [o, i]. This is because we
    // assume `[i, o]` format for `stablehlo.dot_general` (i.e. contracting
    // dimension == 1) whereas `tfl.fully_connected` accepts an `[o, i]` format.
    // If there is already a [i, o] -> [o, i] `stablehlo.transpose` in between the
    // constant and `rhs_op`, simply create an equivalent `tfl.qconst` from the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

              base_dilations.getValues<IntegerAttr>()[i].getInt());
        }
    
        for (auto i = 0; i < window_dilations.size(); ++i) {
          window_dilations_vec.push_back(
              window_dilations.getValues<IntegerAttr>()[i].getInt());
        }
    
        for (auto i = 0; i < padding_pairs.size(); ++i) {
          padding_pairs[i] = {padding.getValues<IntegerAttr>()[i * 2].getInt(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  6. src/reflect/value.go

    				break
    			}
    			return true
    		}
    		for i := 0; i < vl; i++ {
    			if !v.Index(i).Equal(u.Index(i)) {
    				return false
    			}
    		}
    		return true
    	case Struct:
    		// u and v have the same type so they have the same fields
    		nf := v.NumField()
    		for i := 0; i < nf; i++ {
    			if !v.Field(i).Equal(u.Field(i)) {
    				return false
    			}
    		}
    		return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

      for (int i = 1; i < kNumRegionTypeLists; ++i)
        if (failed(VerifyTypeRangesAreCompatible(op, input_type, region_types[i])))
          return failure();
    
      for (int i = 0; i < kNumRegionTypeLists; ++i)
        if (failed(VerifyTypeRangesAreCompatible(op, result_type, region_types[i])))
          return failure();
    
      for (int i = 0; i < kNumRegionTypeLists; ++i)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  8. pkg/apis/core/zz_generated.deepcopy.go

    	if in.EnvFrom != nil {
    		in, out := &in.EnvFrom, &out.EnvFrom
    		*out = make([]EnvFromSource, len(*in))
    		for i := range *in {
    			(*in)[i].DeepCopyInto(&(*out)[i])
    		}
    	}
    	if in.Env != nil {
    		in, out := &in.Env, &out.Env
    		*out = make([]EnvVar, len(*in))
    		for i := range *in {
    			(*in)[i].DeepCopyInto(&(*out)[i])
    		}
    	}
    	in.Resources.DeepCopyInto(&out.Resources)
    	if in.ResizePolicy != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    	if in.EnvFrom != nil {
    		in, out := &in.EnvFrom, &out.EnvFrom
    		*out = make([]EnvFromSource, len(*in))
    		for i := range *in {
    			(*in)[i].DeepCopyInto(&(*out)[i])
    		}
    	}
    	if in.Env != nil {
    		in, out := &in.Env, &out.Env
    		*out = make([]EnvVar, len(*in))
    		for i := range *in {
    			(*in)[i].DeepCopyInto(&(*out)[i])
    		}
    	}
    	in.Resources.DeepCopyInto(&out.Resources)
    	if in.ResizePolicy != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  10. pkg/kubelet/eviction/helpers_test.go

    	expected := []*v1.Pod{pod1, pod3, pod2, pod4, pod5, pod6}
    	for i := range expected {
    		if pods[i] != expected[i] {
    			t.Errorf("Expected pod[%d]: %s, but got: %s", i, expected[i].Name, pods[i].Name)
    		}
    	}
    }
    
    func TestOrderedbyInodes(t *testing.T) {
    	low := newPod("low", defaultPriority, []v1.Container{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
Back to top