Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for array_$eq (0.14 sec)

  1. tensorflow/compiler/mlir/tfrt/tests/mlrt/rewrite_ifrt_load_variable.mlir

        %array_key, %tensor = "tf.IfrtLoadVariable"(%0) <{used_by_host = true}> : (tensor<!tf_type.resource<tensor<3x1xf32>>>) -> (tensor<!tf_type.string>, tensor<3x1xf32>)
        %1 = "tf.MatMul"(%arg0, %tensor) : (tensor<1x3xf32>, tensor<3x1xf32>) -> tensor<1x1xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 21:35:32 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/suggest/settings/ArraySettings.java

                logger.debug("Add analyzer settings. {} key: {} value: {}", arraySettingsIndexName, key, value);
            }
    
            final Map<String, Object> source = new HashMap<>();
            source.put(FieldNames.ARRAY_KEY, key);
            source.put(FieldNames.ARRAY_VALUE, value);
            source.put(FieldNames.TIMESTAMP, DateTimeFormatter.ISO_INSTANT.format(ZonedDateTime.now()));
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

    inline bool ArrayEq(const T& lhs, const U& rhs) { return lhs == rhs; }
    
    // This overload is used when k >= 1.
    template <typename T, typename U, size_t N>
    inline bool ArrayEq(const T(&lhs)[N], const U(&rhs)[N]) {
      return internal::ArrayEq(lhs, N, rhs);
    }
    
    // This helper reduces code bloat.  If we instead put its logic inside
    // the previous ArrayEq() function, arrays with different sizes would
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 43.1K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

    inline bool ArrayEq(const T& lhs, const U& rhs) { return lhs == rhs; }
    
    // This overload is used when k >= 1.
    template <typename T, typename U, size_t N>
    inline bool ArrayEq(const T(&lhs)[N], const U(&rhs)[N]) {
      return internal::ArrayEq(lhs, N, rhs);
    }
    
    // This helper reduces code bloat.  If we instead put its logic inside
    // the previous ArrayEq() function, arrays with different sizes would
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/suggest/constants/FieldNames.java

        public static final String ROLES = "roles";
        public static final String FIELDS = "fields";
        public static final String LANGUAGES = "languages";
    
        public static final String ARRAY_KEY = "key";
        public static final String ARRAY_VALUE = "value";
    
        public static final String ANALYZER_SETTINGS_TYPE = "settingsType";
        public static final String ANALYZER_SETTINGS_FIELD_NAME = "fieldName";
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/host_runtime/tfrt_ops.td

        The `tf.IfrtCall` kernel uses the output $array_key.
        Other ops executed by TFRT may make use of $tensor_future.
      }];
    
      let arguments = (ins
        Arg<TF_Tensor, [{The variable tensor to be loaded}], []>:$variable,
        DefaultValuedAttr<BoolAttr, "false">:$used_by_host
      );
    
      let results = (outs
        TF_StrTensor:$array_key,
        TF_Tensor: $tensor_future
      );
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 20:44:15 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/suggest/settings/ElevateWordSettings.java

            }
    
            final Map<String, Object> source = new HashMap<>();
            source.put(FieldNames.ARRAY_KEY, ELEVATE_WORD_SETTINGD_KEY);
            source.put(FieldNames.ARRAY_VALUE, elevateWord.getElevateWord());
            source.put(ELEVATE_WORD_BOOST, elevateWord.getBoost());
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfrt/ir/mlrt/tf_ops.td

      }];
    
      let arguments = (ins
        TF_Tensor:$variable,
        DefaultValuedAttr<BoolAttr, "false">:$used_by_host
      );
    
      let results = (outs
        TF_Tensor:$array_key,
        MlrtFutureType: $tensor_future
      );
    }
    
    
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 21:35:32 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tfrt/ir/mlrt/tf_mlrt_ops.td

        The `tf.IfrtCall` kernel uses the output $array_key.
        Other ops executed by TFRT may make use of $tensor_future.
      }];
    
      let arguments = (ins
        TFTensorType:$variable,
        DefaultValuedAttr<BoolAttr, "false">:$used_by_host
      );
    
      let results = (outs
        TFTensorType:$array_key,
        MlrtFutureType: $tensor_future
      );
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 20:44:15 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  10. test-site/activator-launch-1.3.2.jar

    ResizableArray.class package scala.collection.mutable; public abstract interface ResizableArray extends scala.collection.IndexedSeqOptimized, IndexedSeq { public abstract int initialSize(); public abstract Object[] array(); public abstract void array_$eq(Object[]); public abstract int size0(); public abstract void size0_$eq(int); public abstract int length(); } scala/collection/mutable/MapLike.class package scala.collection.mutable; public abstract interface MapLike extends scala.Cloneable, scal...
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 1.2M bytes
    - Viewed (1)
Back to top