Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getValueType (0.12 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/MapProviderInternal.java

    package org.gradle.api.internal.provider;
    
    import java.util.Map;
    
    public interface MapProviderInternal<K, V> extends ProviderInternal<Map<K, V>> {
    
        Class<? extends K> getKeyType();
    
        Class<? extends V> getValueType();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 844 bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/post_quantize.td

      (quantfork_DequantizeCastOp:$output
        (quantfork_StorageCastOp
          (TF_IdentityOp
            (quantfork_StorageCastOp $value)))),
      (TF_IdentityOp
        (quantfork_DequantizeCastOp
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Dec 10 05:52:02 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/common/attrs_and_constraints.td

    def IsFalseBoolAttr : AttrConstraint<
      CPred<"!$_self.cast<BoolAttr>().getValue()">>;
    
    // Checks if the value has only one user.
    def HasOneUse : Constraint<CPred<"$0.hasOneUse()">>;
    
    // Gets the type of a value.
    def GetValueType : NativeCodeCall<"$0.getType()">;
    
    // Checks if the value has the type of int8.
    def IsInt8ElementType : Constraint<
      CPred<"getElementTypeOrSelf($0).isInteger(8)">>;
    
    // Checks if the value has the type of int32.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 08 04:55:44 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/DefaultMapProperty.java

            return (Class) Map.class;
        }
    
        @Override
        public Class<K> getKeyType() {
            return keyType;
        }
    
        @Override
        public Class<V> getValueType() {
            return valueType;
        }
    
        @Override
        public Class<?> publicType() {
            return MapProperty.class;
        }
    
        @Override
        public int getFactoryId() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 32.6K bytes
    - Viewed (0)
Back to top