Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 56 for index (0.1 sec)

  1. pkg/controller/job/job_controller_test.go

    				buildPod().phase(v1.PodSucceeded).index("0").Pod,
    				buildPod().phase(v1.PodFailed).index("1").Pod,
    				buildPod().phase(v1.PodSucceeded).trackingFinalizer().index("1").Pod,
    				buildPod().phase(v1.PodSucceeded).trackingFinalizer().index("3").Pod,
    				buildPod().uid("a").phase(v1.PodFailed).trackingFinalizer().index("2").Pod,
    				buildPod().uid("b").phase(v1.PodFailed).trackingFinalizer().index("5").Pod,
    			},
    			wantRmFinalizers: 4,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/arm64/asm7.go

    			c.checkindex(p, index1, 15)
    			c.checkindex(p, index2, 15)
    			imm5 |= 1
    			imm5 |= index1 << 1
    			imm4 |= index2
    		case ARNG_H:
    			c.checkindex(p, index1, 7)
    			c.checkindex(p, index2, 7)
    			imm5 |= 2
    			imm5 |= index1 << 2
    			imm4 |= index2 << 1
    		case ARNG_S:
    			c.checkindex(p, index1, 3)
    			c.checkindex(p, index2, 3)
    			imm5 |= 4
    			imm5 |= index1 << 3
    			imm4 |= index2 << 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  3. tensorflow/c/c_api.cc

      if (ic->num_outputs() <= new_src.index) {
        status->status = tensorflow::errors::OutOfRange(
            "Cannot update edge. Output index [", new_src.index,
            "] is greater than the number of total outputs [", ic->num_outputs(),
            "].");
        return;
      }
      tensorflow::shape_inference::ShapeHandle shape = ic->output(new_src.index);
    
      tensorflow::shape_inference::InferenceContext* ic_dst =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

        auto* attr = node->attrs().Find("index");
        if (!attr)
          return errors::InvalidArgument(node->type_string(), " node '",
                                         node->name(),
                                         "' is missing attribute 'index'");
    
        auto index = attr->i();
        const int num_nodes = nodes->size();
        if (num_nodes < index + 1) nodes->resize(index + 1);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      BufferOffset<tflite::Buffer> empty_buffer_;
    
      std::vector<BufferOffset<tflite::Buffer>> buffers_;
      // Maps subgraph index and tensor name in the graph to the tensor index.
      absl::flat_hash_map<int, absl::flat_hash_map<std::string, int>>
          tensor_index_map_;
    
      // Maps op name to index of the corresponding OperatorCode in opcodes_ vector.
      absl::flat_hash_map<std::string, uint32_t> opcode_index_map_;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

    }
    
    // Checks if the `index` bit of `val` is set.
    template <class T>
    constexpr bool IsSet(const T &val, unsigned index) {
      return (val & (1 << index)) != 0;
    }
    
    // Sets the `index` bit of `val`.
    template <class T>
    constexpr void Set(T &val, unsigned index) {
      val |= (1 << index);
    }
    
    // Unset the `index` bit of `val`.
    template <class T>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  7. guava/src/com/google/common/cache/LocalCache.java

            preWriteCleanup(now);
    
            int newCount = this.count - 1;
            AtomicReferenceArray<ReferenceEntry<K, V>> table = this.table;
            int index = hash & (table.length() - 1);
            ReferenceEntry<K, V> first = table.get(index);
    
            for (e = first; e != null; e = e.getNext()) {
              K entryKey = e.getKey();
              if (e.getHash() == hash
                  && entryKey != null
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/x86/asm6.go

    func avx2gatherValid(ctxt *obj.Link, p *obj.Prog) bool {
    	// If any pair of the index, mask, or destination registers
    	// are the same, illegal instruction trap (#UD) is triggered.
    	index := regIndex(p.GetFrom3().Index)
    	mask := regIndex(p.From.Reg)
    	dest := regIndex(p.To.Reg)
    	if dest == mask || dest == index || mask == index {
    		ctxt.Diag("mask, index, and destination registers should be distinct: %v", p)
    		return false
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/cache/LocalCache.java

            preWriteCleanup(now);
    
            int newCount = this.count - 1;
            AtomicReferenceArray<ReferenceEntry<K, V>> table = this.table;
            int index = hash & (table.length() - 1);
            ReferenceEntry<K, V> first = table.get(index);
    
            for (e = first; e != null; e = e.getNext()) {
              K entryKey = e.getKey();
              if (e.getHash() == hash
                  && entryKey != null
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  10. src/reflect/all_test.go

    		if found {
    			if test.index != nil {
    				// Verify field depth and index.
    				if len(f.Index) != len(test.index) {
    					t.Errorf("%s.%s depth %d; want %d: %v vs %v", s.Name(), test.name, len(f.Index), len(test.index), f.Index, test.index)
    				} else {
    					for i, x := range f.Index {
    						if x != test.index[i] {
    							t.Errorf("%s.%s.Index[%d] is %d; want %d", s.Name(), test.name, i, x, test.index[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)
Back to top