Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 119 for index (0.09 sec)

  1. staging/src/k8s.io/api/autoscaling/v2beta1/generated.pb.go

    			iNdEx = postIndex
    		default:
    			iNdEx = preIndex
    			skippy, err := skipGenerated(dAtA[iNdEx:])
    			if err != nil {
    				return err
    			}
    			if (skippy < 0) || (iNdEx+skippy) < 0 {
    				return ErrInvalidLengthGenerated
    			}
    			if (iNdEx + skippy) > l {
    				return io.ErrUnexpectedEOF
    			}
    			iNdEx += skippy
    		}
    	}
    
    	if iNdEx > l {
    		return io.ErrUnexpectedEOF
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 142.9K bytes
    - Viewed (0)
  2. operator/cmd/mesh/testdata/manifest-generate/output/pilot_default.golden.yaml

                {{- end }}
                service.istio.io/canonical-name: {{ index .ObjectMeta.Labels `service.istio.io/canonical-name` | default (index .ObjectMeta.Labels `app.kubernetes.io/name`) | default (index .ObjectMeta.Labels `app`) | default .DeploymentMeta.Name  | quote }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 102.6K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

      for (auto* n : ret_nodes) {
        int index;
        TF_RETURN_IF_ERROR(GetNodeAttr(n->attrs(), "index", &index));
        const int num_dtypes = send_from_host_dtypes.size();
        if (index < 0 || index >= num_dtypes) {
          return errors::Internal("Invalid _Retval index: ", index);
        }
        for (auto edge : n->in_edges()) {
          inputs[index] =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top