Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 116 for testvalues (0.17 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/MutableClassDetails.java

        }
    
        @Override
        public List<Method> getAllMethods() {
            return methods;
        }
    
        @Override
        public Collection<Method> getInstanceMethods() {
            return instanceMethods.getValues();
        }
    
        @Override
        public List<Field> getInstanceFields() {
            return instanceFields;
        }
    
        public Set<Class<?>> getSuperTypes() {
            return superTypes;
        }
    
        /*
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/execution/commandline/CommandLineTaskConfigurer.java

                    if (parsed.hasOption(name)) {
                        ParsedCommandLineOption o = parsed.option(name);
                        try {
                            commandLineOptionDescriptor.apply(task, o.getValues());
                        } catch (TypeConversionException ex) {
                            throw new TaskConfigurationException(task.getPath(),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/ExtractData.java

            metadata.put(key, values);
        }
    
        public void putValue(final String key, final String value) {
            metadata.put(key, new String[] { value });
        }
    
        public String[] getValues(final String key) {
            return metadata.get(key);
        }
    
        public Set<String> getKeySet() {
            return metadata.keySet();
        }
    
        public String getContent() {
            return content;
        }
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

          for (uint64_t i = 0; i < block_rank; i++) {
            int64_t paddings_sum =
                paddings.getValues<APInt>()[{i, 0}].getSExtValue() +
                paddings.getValues<APInt>()[{i, 1}].getSExtValue();
            int64_t block_shape_i =
                block_shape.getValues<APInt>()[i].getSExtValue();
            padded_shape[i + 1] = (paddings_sum + input_shape[i + 1]);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/convert_tf_quant_ops_to_mhlo.cc

            flags, storage_type, expressed_type, scales.getValues<float>()[0],
            zero_points.getValues<int32_t>()[0], storage_type_min,
            storage_type_max);
      } else {
        SmallVector<double> scales_vec;
        SmallVector<int64_t> zero_points_vec;
        for (auto elem : scales.getValues<float>()) scales_vec.push_back(elem);
        for (auto elem : zero_points.getValues<int32_t>())
          zero_points_vec.push_back(elem);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/experimental/tac/transforms/device_transform_patterns.cc

    LogicalResult LowerPackIntoConcatReshape::matchAndRewrite(
        TFL::PackOp pack_op, PatternRewriter& rewriter) const {
      // Pack op should have same shape type.
      SmallVector<Value, 5> pack_inputs(pack_op.getValues());
      auto input_type = mlir::dyn_cast<RankedTensorType>(pack_inputs[0].getType());
      if (!input_type) return failure();
    
      // Figure out output shapes.
      SmallVector<int64_t, 4> concat_out_shape;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/options/OptionReaderTest.groovy

        }
    
        public static class WithInvalidSomeOptionMethod {
            @OptionValues("someOption")
            List<String> getValues(String someParam) { return Arrays.asList("something") }
        }
    
        public static class WithDuplicateSomeOptions {
            @OptionValues("someOption")
            List<String> getValues() { return Arrays.asList("something") }
    
            @OptionValues("someOption")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 10 12:45:01 UTC 2023
    - 33.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/layout_optimization.cc

      for (const auto& value : attr.getValues<APInt>())
        permutation.push_back(value.getSExtValue());
    
      // Check if we can fold transpose into the operation.
      if (fold_operands && fold_transpose_in_ops) {
        SmallVector<int64_t, 8> permutation;
    
        auto attr = mlir::cast<DenseElementsAttr>(permutation_op.getValue());
        for (const auto& value : attr.getValues<APInt>())
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  9. platforms/jvm/normalization-java/src/main/java/org/gradle/internal/normalization/java/impl/ApiMemberWriter.java

            }
        }
    
        private void writeAnnotationValues(AnnotationMember annotation, AnnotationVisitor annotationVisitor) {
            for (AnnotationValue<?> value : annotation.getValues()) {
                writeAnnotationValue(annotationVisitor, value);
            }
            annotationVisitor.visitEnd();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/utils/tf_to_xla_attribute_utils_test.cc

                                              packed_shape_type.getShape().end());
      EXPECT_THAT(packed_shape, testing::ElementsAreArray(expected_packed_shape));
      llvm::SmallVector<int8_t> packed_value_vector(
          packed_value_attr.getValues<int8_t>());
      EXPECT_THAT(packed_value_vector,
                  testing::ElementsAreArray(expected_packed_values));
    }
    
    TEST(TfToXlaAttributeUtilsTest, PackOperandPackDimSizeEven) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top