Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 92 for i$ (0.07 sec)

  1. tensorflow/c/c_api.cc

      for (int i = 0; i < ninputs; ++i) {
        input_pairs[i].first = c_input_names[i];
      }
      std::vector<string> output_names(noutputs);
      for (int i = 0; i < noutputs; ++i) {
        output_names[i] = c_output_names[i];
      }
      std::vector<string> target_oper_names(ntargets);
      for (int i = 0; i < ntargets; ++i) {
        target_oper_names[i] = c_target_oper_names[i];
      }
    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. src/reflect/all_test.go

    			}
    		}
    		for i := tocopy; i < len(b); i++ {
    			if b[i] != c[i] {
    				if i < len(a) {
    					t.Errorf("(ii) tocopy=%d a[%d]=%d, b[%d]=%d, c[%d]=%d",
    						tocopy, i, a[i], i, b[i], i, c[i])
    				} else {
    					t.Errorf("(iii) tocopy=%d b[%d]=%d, c[%d]=%d",
    						tocopy, i, b[i], i, c[i])
    				}
    			} else {
    				t.Logf("tocopy=%d elem %d is okay\n", tocopy, i)
    			}
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  3. pkg/printers/internalversion/printers.go

    	initContainers := make(map[string]*api.Container)
    	for i := range pod.Spec.InitContainers {
    		initContainers[pod.Spec.InitContainers[i].Name] = &pod.Spec.InitContainers[i]
    		if isRestartableInitContainer(&pod.Spec.InitContainers[i]) {
    			totalContainers++
    		}
    	}
    
    	initializing := false
    	for i := range pod.Status.InitContainerStatuses {
    		container := pod.Status.InitContainerStatuses[i]
    		restarts += int(container.RestartCount)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  4. pkg/controller/statefulset/stateful_set_control_test.go

    				sort.Sort(ascendingOrdinal(pods))
    				for i := range pods {
    					if i < 3 && pods[i].Spec.Containers[0].Image != originalImage {
    						return fmt.Errorf("want pod %s image %s found %s", pods[i].Name, originalImage, pods[i].Spec.Containers[0].Image)
    					}
    					if i >= 3 && pods[i].Spec.Containers[0].Image != "foo" {
    						return fmt.Errorf("want pod %s image foo found %s", pods[i].Name, pods[i].Spec.Containers[0].Image)
    					}
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  5. src/debug/elf/elf.go

    		n := names[j]
    		if n.i < i {
    			s := n.s
    			if goSyntax {
    				s = "elf." + s
    			}
    			return s + "+" + strconv.FormatUint(uint64(i-n.i), 10)
    		}
    	}
    
    	return strconv.FormatUint(uint64(i), 10)
    }
    
    func flagName(i uint32, names []intName, goSyntax bool) string {
    	s := ""
    	for _, n := range names {
    		if n.i&i == n.i {
    			if len(s) > 0 {
    				s += "+"
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  6. pkg/printers/internalversion/printers_test.go

    		},
    	}
    
    	for i, test := range tests {
    		rows, err := printEvent(&test.event, test.options)
    		if err != nil {
    			t.Fatal(err)
    		}
    		for i := range rows {
    			rows[i].Object.Object = nil
    		}
    		if !reflect.DeepEqual(test.expected, rows) {
    			t.Errorf("%d mismatch: %s", i, cmp.Diff(test.expected, rows))
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  7. cluster/gce/gci/configure-helper.sh

      sed -i -e "s@{{ *suffix *}}@$1@g" "${temp_file}"
      sed -i -e "s@{{ *port *}}@$2@g" "${temp_file}"
      sed -i -e "s@{{ *server_port *}}@$3@g" "${temp_file}"
      sed -i -e "s@{{ *cpulimit *}}@\"$4\"@g" "${temp_file}"
      sed -i -e "s@{{ *hostname *}}@$host_name@g" "${temp_file}"
      sed -i -e "s@{{ *host_ip *}}@$host_ip@g" "${temp_file}"
      sed -i -e "s@{{ *etcd_cluster *}}@$etcd_cluster@g" "${temp_file}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top