HomeSort by relevance Sort by last modified time
    Searched refs:features (Results 401 - 425 of 1920) sorted by null

<<11121314151617181920>>

  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ims/
ImsResolverTest.java 122 HashSet<String> features = new HashSet<>(); local
123 features.add(ImsResolver.METADATA_EMERGENCY_MMTEL_FEATURE);
124 features.add(ImsResolver.METADATA_MMTEL_FEATURE);
125 features.add(ImsResolver.METADATA_RCS_FEATURE);
126 setupPackageQuery(TEST_DEVICE_DEFAULT_NAME, features, true);
136 assertTrue(isImsServiceInfoEqual(TEST_DEVICE_DEFAULT_NAME, features, testCachedService));
140 * Add a carrier ImsService to the package manager and make sure the features declared here are
147 HashSet<String> features = new HashSet<>(); local
148 features.add(ImsResolver.METADATA_EMERGENCY_MMTEL_FEATURE);
149 features.add(ImsResolver.METADATA_MMTEL_FEATURE)
177 HashSet<ImsFeatureConfiguration.FeatureSlotPair> features = new HashSet<>(); local
205 HashSet<ImsFeatureConfiguration.FeatureSlotPair> features = new HashSet<>(); local
229 HashSet<ImsFeatureConfiguration.FeatureSlotPair> features = new HashSet<>(); local
284 Set<String> features = new HashSet<>(); local
388 Set<String> features = new HashSet<>(); local
    [all...]
  /external/tensorflow/tensorflow/contrib/estimator/python/estimator/
replicate_model_fn_test.py 181 def model_fn(self, mode, features, labels, params):
187 predictions = math_ops.multiply(features, c)
215 features = np.array([[1.0], [2.0]])
224 features, labels, model_fn_lib.ModeKeys.TRAIN, self.params)
239 features = np.array([[1.0], [2.0]])
253 features, labels, model_fn_lib.ModeKeys.TRAIN, self.params)
271 features = array_ops.placeholder(dtypes.float64)
291 features, labels, model_fn_lib.ModeKeys.TRAIN, self.params)
296 feeds = {features: feature_input, labels: label_input}
305 features = np.array([[0.01], [0.002]]
    [all...]
extenders_test.py 42 features = iterator.get_next()
43 labels = features.pop('y')
44 return features, labels
56 def metric_fn(features):
57 return {'mean_x': metrics_lib.mean(features['x'])}
71 def metric_fn(features, not_recognized):
72 _, _ = features, not_recognized
82 def metric_fn(features, predictions, labels, config):
83 self.assertIn('x', features)
98 def metric_fn(labels, config, features, predictions)
    [all...]
  /external/tensorflow/tensorflow/contrib/timeseries/python/timeseries/
input_pipeline_test.py 64 times = example.features.feature[TrainEvalFeatures.TIMES]
66 values = example.features.feature[TrainEvalFeatures.VALUES]
95 features = session.run(result)
99 features[TrainEvalFeatures.TIMES].shape)
104 features[TrainEvalFeatures.TIMES][batch_position,
106 features[TrainEvalFeatures.TIMES][batch_position,
109 features[TrainEvalFeatures.VALUES].shape)
110 self.assertEqual("int64", features[TrainEvalFeatures.TIMES].dtype)
113 features[TrainEvalFeatures.TIMES] * 2. + feature_number,
114 features[TrainEvalFeatures.VALUES][:, :, feature_number]
    [all...]
  /external/tensorflow/tensorflow/python/ops/
parsing_ops.py 93 features {
110 index_key: A single string name or a list of string names of index features.
117 features.
187 def _features_to_raw_params(features, types):
191 features: A `dict` mapping feature keys to objects of a type in `types`.
192 types: Type of features to allow, among `FixedLenFeature`, `VarLenFeature`,
200 ValueError: if `features` contains an item not in `types`, or an invalid
213 if features:
215 for key in sorted(features.keys()):
216 feature = features[key
    [all...]
  /external/tensorflow/tensorflow/contrib/linear_optimizer/python/
sdca_estimator.py 68 raise ValueError("Could not infer batch size from input features.")
76 def sdca_model_fn(features, labels, mode, params, config=None):
80 features: A dict of `Tensor` keyed by column name.
143 with variable_scope.variable_op_scope(features.values(),
145 features = features.copy()
146 features.update(layers.transform_features(features, feature_columns))
149 columns_to_tensors=features,
154 _add_bias_column(feature_columns, features, bias, columns_to_variables
    [all...]
  /external/tensorflow/tensorflow/contrib/learn/python/learn/estimators/
linear.py 96 raise ValueError("Could not infer batch size from input features.")
104 def _linear_model_fn(features, labels, mode, params, config=None):
108 features: `Tensor` or dict of `Tensor` (depends on data passed to `fit`).
141 if not isinstance(features, dict):
142 features = {"": features}
151 values=tuple(six.itervalues(features)),
160 columns_to_tensors=features,
167 features=features,
    [all...]
  /art/dex2oat/linker/
multi_oat_relative_patcher.cc 28 const InstructionSetFeatures* features)
30 relative_patcher_(RelativePatcher::Create(instruction_set, features, &method_offset_map_)),
  /art/runtime/arch/x86_64/
instruction_set_features_x86_64.h 27 // Instruction set features relevant to the X86_64 architecture.
40 // Turn C pre-processor #defines into the equivalent instruction set features.
71 AddFeaturesFromSplitString(const std::vector<std::string>& features,
73 return X86InstructionSetFeatures::AddFeaturesFromSplitString(features, true, error_msg);
  /build/make/core/combo/arch/x86/
atom.mk 3 # that adds Atom-specific features.
  /compatibility/cdd/9_security-model/
9_14_automotive-system-isolation.md 7 The data exchange can be secured by implementing security features below the
  /cts/tests/libcore/javautilcollections/src/libcore/java/util/tests/
AndroidTestsForQueuesInJavaUtil.java 25 import com.google.common.collect.testing.features.CollectionFeature;
26 import com.google.common.collect.testing.features.CollectionSize;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/
future.py 18 features = ("nested_scopes", "generators", "division", variable in class:FutureParser
34 if name in self.features:
44 """Return list of features enabled by future statements"""
  /external/curl/src/
tool_help.c 542 if(curlinfo->features) {
544 printf("Features: ");
546 if(curlinfo->features & feats[i].bitmask)
  /external/guava/guava-gwt/test-super/com/google/common/collect/testing/google/super/com/google/common/collect/testing/google/
BiMapInverseTester.java 19 import static com.google.common.collect.testing.features.CollectionFeature.SERIALIZABLE;
23 import com.google.common.collect.testing.features.CollectionFeature;
  /external/guava/guava-testlib/src/com/google/common/collect/testing/features/
FeatureUtil.java 17 package com.google.common.collect.testing.features;
49 * Given a set of features, add to it all the features directly or indirectly
51 * @param features the set of features to expand
52 * @return the same set of features, expanded with all implied features
54 public static Set<Feature<?>> addImpliedFeatures(Set<Feature<?>> features) {
55 // The base case of the recursion is an empty set of features, which will
56 // occur when the previous set contained only simple features
    [all...]
  /external/guava/guava-testlib/src/com/google/common/collect/testing/google/
ListMultimapEqualsTester.java 17 import static com.google.common.collect.testing.features.CollectionSize.SEVERAL;
22 import com.google.common.collect.testing.features.CollectionSize;
ListMultimapPutAllTester.java 18 import static com.google.common.collect.testing.features.MapFeature.SUPPORTS_PUT;
22 import com.google.common.collect.testing.features.MapFeature;
MultimapAsMapGetTester.java 19 import static com.google.common.collect.testing.features.CollectionSize.SEVERAL;
20 import static com.google.common.collect.testing.features.CollectionSize.ZERO;
21 import static com.google.common.collect.testing.features.MapFeature.ALLOWS_NULL_VALUES;
22 import static com.google.common.collect.testing.features.MapFeature.ALLOWS_NULL_VALUE_QUERIES;
23 import static com.google.common.collect.testing.features.MapFeature.SUPPORTS_PUT;
24 import static com.google.common.collect.testing.features.MapFeature.SUPPORTS_REMOVE;
30 import com.google.common.collect.testing.features.CollectionSize;
31 import com.google.common.collect.testing.features.MapFeature;
MultimapFeature.java 22 import com.google.common.collect.testing.features.Feature;
23 import com.google.common.collect.testing.features.TesterAnnotation;
31 * Optional features of classes derived from {@code Multimap}.
MultimapRemoveEntryTester.java 19 import static com.google.common.collect.testing.features.CollectionSize.ZERO;
20 import static com.google.common.collect.testing.features.MapFeature.ALLOWS_NULL_KEYS;
21 import static com.google.common.collect.testing.features.MapFeature.ALLOWS_NULL_KEY_QUERIES;
22 import static com.google.common.collect.testing.features.MapFeature.ALLOWS_NULL_VALUES;
23 import static com.google.common.collect.testing.features.MapFeature.ALLOWS_NULL_VALUE_QUERIES;
24 import static com.google.common.collect.testing.features.MapFeature.SUPPORTS_REMOVE;
31 import com.google.common.collect.testing.features.CollectionSize;
32 import com.google.common.collect.testing.features.MapFeature;
SetMultimapEqualsTester.java 17 import static com.google.common.collect.testing.features.CollectionSize.SEVERAL;
22 import com.google.common.collect.testing.features.CollectionSize;
SetMultimapPutAllTester.java 18 import static com.google.common.collect.testing.features.MapFeature.SUPPORTS_PUT;
22 import com.google.common.collect.testing.features.MapFeature;
SortedSetMultimapAsMapTester.java 17 import static com.google.common.collect.testing.features.MapFeature.SUPPORTS_REMOVE;
21 import com.google.common.collect.testing.features.MapFeature;
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
CollectionRemoveAllTester.java 19 import static com.google.common.collect.testing.features.CollectionFeature.ALLOWS_NULL_QUERIES;
20 import static com.google.common.collect.testing.features.CollectionFeature.ALLOWS_NULL_VALUES;
21 import static com.google.common.collect.testing.features.CollectionFeature.FAILS_FAST_ON_CONCURRENT_MODIFICATION;
22 import static com.google.common.collect.testing.features.CollectionFeature.SUPPORTS_REMOVE;
23 import static com.google.common.collect.testing.features.CollectionSize.SEVERAL;
24 import static com.google.common.collect.testing.features.CollectionSize.ZERO;
30 import com.google.common.collect.testing.features.CollectionFeature;
31 import com.google.common.collect.testing.features.CollectionSize;

Completed in 1437 milliseconds

<<11121314151617181920>>