Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 427 for Primitive (0.18 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. tensorflow/cc/experimental/libtf/object.h

      return Integer(value);
    }
    /// Converts a C++ float to an Integer handle.
    template <>
    inline Handle Convert(float value) {
      return Float(value);
    }
    /// Converts a value with primitive type T to a Handle.
    template <class T>
    inline Handle Convert(T value) {
      return Handle(std::move(value));
    }
    
    /// @}
    
    // in the future it will be possible to make additional hard typed APIs
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 11 08:05:36 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  8. pkg/ctrlz/assets/static/js/prism-1.14.0.min.js

    ias:'function',inside:{keyword:Prism.languages.java.keyword,punctuation:/[<>(),.:]/}}}),Prism.languages.protobuf=Prism.languages.extend('clike',{keyword:/\b(?:package|import|message|enum)\b/,builtin:/\b(?:required|repeated|optional|reserved)\b/,primitive:{pattern:/\b(?:double|float|int32|int64|uint32|uint64|sint32|sint64|fixed32|fixed64|sfixed32|sfixed64|bool|string|bytes)\b/,alias:'symbol'}}),Prism.languages.python={comment:{pattern:/(^|[^\\])#.*/,lookbehind:!0},'triple-quoted-string':{pattern:...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  9. src/runtime/sema.go

    // license that can be found in the LICENSE file.
    
    // Semaphore implementation exposed to Go.
    // Intended use is provide a sleep and wakeup
    // primitive that can be used in the contended case
    // of other synchronization primitives.
    // Thus it targets the same goal as Linux's futex,
    // but it has much simpler semantics.
    //
    // That is, don't think of these as semaphores.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 19K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/runtime/interfaces.go

    	NewEmptyInstance() Unstructured
    	// UnstructuredContent returns a non-nil map with this object's contents. Values may be
    	// []interface{}, map[string]interface{}, or any primitive type. Contents are typically serialized to
    	// and from JSON. SetUnstructuredContent should be used to mutate the contents.
    	UnstructuredContent() map[string]interface{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 28 03:26:35 UTC 2023
    - 19K bytes
    - Viewed (0)
Back to top