Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 244 for Primitive (0.13 sec)

  1. android/guava/src/com/google/common/primitives/ImmutableLongArray.java

       * {@code asList().contains(target)}.
       */
      public boolean contains(long target) {
        return indexOf(target) >= 0;
      }
    
      /** Returns a new, mutable copy of this array's values, as a primitive {@code long[]}. */
      public long[] toArray() {
        return Arrays.copyOfRange(array, start, end);
      }
    
      /**
       * Returns a new immutable array containing the values in the specified range.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 16:34:24 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/variant_attributes.adoc

    include::sample[dir="snippets/dependencyManagement/attributeMatching/groovy",files="build.gradle[tags=define_attribute]"]
    ====
    
    Attribute types support most Java primitive classes; such as `String` and `Integer`; Or anything extending `org.gradle.api.Named`.
    Attributes should always be declared in the _attribute schema_ found on the `dependencies` handler:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 18:51:23 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/primitives/ImmutableDoubleArray.java

       */
      public boolean contains(double target) {
        return indexOf(target) >= 0;
      }
    
      /** Returns a new, mutable copy of this array's values, as a primitive {@code double[]}. */
      public double[] toArray() {
        return Arrays.copyOfRange(array, start, end);
      }
    
      /**
       * Returns a new immutable array containing the values in the specified range.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 16:34:24 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/primitives/ImmutableIntArray.java

       * {@code asList().contains(target)}.
       */
      public boolean contains(int target) {
        return indexOf(target) >= 0;
      }
    
      /** Returns a new, mutable copy of this array's values, as a primitive {@code int[]}. */
      public int[] toArray() {
        return Arrays.copyOfRange(array, start, end);
      }
    
      /**
       * Returns a new immutable array containing the values in the specified range.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 16:34:24 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  5. tensorflow/cc/experimental/libtf/value.h

      size_t operator()(const Tuple& t) const;
    };
    
    /// @brief The basic `TaggedValue` tagged union type.
    ///
    /// A `TaggedValue` contains a `Type` (or "tag") as an enum and a `Value` union.
    /// Values include tensors, primitive values, lists, tuples, and dictionaries.
    /// In the future we might also want to have representation of python objects in
    /// the form of PyObject*.
    class TaggedValue final {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:23:45 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  6. guava/src/com/google/common/primitives/ImmutableDoubleArray.java

      /** Returns a stream over the values in this array, in order. */
      public DoubleStream stream() {
        return Arrays.stream(array, start, end);
      }
    
      /** Returns a new, mutable copy of this array's values, as a primitive {@code double[]}. */
      public double[] toArray() {
        return Arrays.copyOfRange(array, start, end);
      }
    
      /**
       * Returns a new immutable array containing the values in the specified range.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 16:34:24 UTC 2023
    - 21.7K bytes
    - Viewed (0)
  7. guava/src/com/google/common/primitives/ImmutableLongArray.java

      /** Returns a stream over the values in this array, in order. */
      public LongStream stream() {
        return Arrays.stream(array, start, end);
      }
    
      /** Returns a new, mutable copy of this array's values, as a primitive {@code long[]}. */
      public long[] toArray() {
        return Arrays.copyOfRange(array, start, end);
      }
    
      /**
       * Returns a new immutable array containing the values in the specified range.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 16:34:24 UTC 2023
    - 21K bytes
    - Viewed (0)
  8. guava/src/com/google/common/primitives/ImmutableIntArray.java

      /** Returns a stream over the values in this array, in order. */
      public IntStream stream() {
        return Arrays.stream(array, start, end);
      }
    
      /** Returns a new, mutable copy of this array's values, as a primitive {@code int[]}. */
      public int[] toArray() {
        return Arrays.copyOfRange(array, start, end);
      }
    
      /**
       * Returns a new immutable array containing the values in the specified range.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 16:34:24 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/DefaultModelSchemaExtractorTest.groovy

            when:
            def schema = extract(SetterOnlyUnmanaged)
    
            then:
            assert schema instanceof UnmanagedImplStructSchema
            schema.getProperty("name") == null
        }
    
        def "primitive types are supported - #primitiveType"() {
            when:
            def interfaceWithPrimitiveProperty = new GroovyClassLoader(getClass().classLoader).parseClass """
                import org.gradle.model.Managed
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 29.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/convert_tf_quant_ops_to_mhlo.cc

     public:
      ConvertTFQuantOpsToMHLO() = default;
      ConvertTFQuantOpsToMHLO(const ConvertTFQuantOpsToMHLO &) = default;
    
      // Performs conversion of MHLO quant ops to primitive ops.
      void runOnOperation() override;
    };
    
    void ConvertTFQuantOpsToMHLO::runOnOperation() {
      MLIRContext *ctx = &getContext();
      func::FuncOp func = getOperation();
      ConversionTarget target(*ctx);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 30.9K bytes
    - Viewed (0)
Back to top