Searched refs:strategy (Results 76 - 100 of 182) sorted by relevance

12345678

/external/tensorflow/tensorflow/contrib/boosted_trees/lib/learner/common/stats/
H A Dnode-stats.h58 const LearnerConfig_MultiClassStrategy& strategy,
61 switch (strategy) {
213 LOG(FATAL) << "Unknown multi-class strategy " << strategy;
57 NodeStats(float l1_reg, float l2_reg, float min_node_weight, const LearnerConfig_MultiClassStrategy& strategy, const GradientStats& grad_stats) argument
/external/objenesis/tck/src/test/java/org/objenesis/tck/
H A DTextReporterTest.java25 import org.objenesis.strategy.SingleInstantiatorStrategy;
/external/perfetto/src/ftrace_reader/
H A Devent_info_constants.h189 TranslationStrategy strategy; member in struct:perfetto::Field
H A Dproto_translation_table_unittest.cc94 EXPECT_EQ(event->fields.at(1).strategy, kCStringToString);
241 EXPECT_EQ(field_a.strategy, kFixedCStringToString);
245 EXPECT_EQ(field_e.strategy, kUint32ToUint64);
H A Dproto_translation_table.cc51 // translation strategy.
78 &field->strategy)) {
/external/python/cpython2/Modules/zlib/
H A Dgzguts.h183 int strategy; /* compression strategy */ member in struct:__anon19559
/external/python/cpython3/Modules/zlib/
H A Dgzguts.h192 int strategy; /* compression strategy */ member in struct:__anon20188
H A Ddeflate.c240 int ZEXPORT deflateInit2_(strm, level, method, windowBits, memLevel, strategy,
247 int strategy;
300 strategy < 0 || strategy > Z_FIXED || (windowBits == 8 && wrap != 1)) {
344 s->strategy = strategy;
568 int ZEXPORT deflateParams(strm, level, strategy)
571 int strategy;
584 if (level < 0 || level > 9 || strategy < 0 || strategy > Z_FIXE
[all...]
/external/zlib/src/
H A Dgzguts.h192 int strategy; /* compression strategy */ member in struct:__anon32089
H A Ddeflate.c240 int ZEXPORT deflateInit2_(strm, level, method, windowBits, memLevel, strategy,
247 int strategy;
300 strategy < 0 || strategy > Z_FIXED || (windowBits == 8 && wrap != 1)) {
344 s->strategy = strategy;
568 int ZEXPORT deflateParams(strm, level, strategy)
571 int strategy;
584 if (level < 0 || level > 9 || strategy < 0 || strategy > Z_FIXE
[all...]
/external/deqp/modules/egl/
H A DteglCreateContextExtTests.cpp164 const char* eglResetNotificationStrategyToString (EGLint strategy) argument
166 switch (strategy)
809 deInt32 strategy = 0; local
811 gl.getIntegerv(GL_RESET_NOTIFICATION_STRATEGY, &strategy);
814 if (expected == EGL_NO_RESET_NOTIFICATION && strategy != GL_NO_RESET_NOTIFICATION)
816 log << TestLog::Message << "glGetIntegerv(GL_RESET_NOTIFICATION_STRATEGY) returned '" << strategy << "', expected 'GL_NO_RESET_NOTIFICATION'" << TestLog::EndMessage;
819 else if (expected == EGL_LOSE_CONTEXT_ON_RESET && strategy != GL_LOSE_CONTEXT_ON_RESET)
821 log << TestLog::Message << "glGetIntegerv(GL_RESET_NOTIFICATION_STRATEGY) returned '" << strategy << "', expected 'GL_LOSE_CONTEXT_ON_RESET'" << TestLog::EndMessage;
/external/glide/library/src/main/java/com/bumptech/glide/
H A DDrawableRequestBuilder.java364 public DrawableRequestBuilder<ModelType> diskCacheStrategy(DiskCacheStrategy strategy) { argument
365 super.diskCacheStrategy(strategy);
H A DGifRequestBuilder.java363 public GifRequestBuilder<ModelType> diskCacheStrategy(DiskCacheStrategy strategy) { argument
364 super.diskCacheStrategy(strategy);
H A DBitmapRequestBuilder.java413 public BitmapRequestBuilder<ModelType, TranscodeType> diskCacheStrategy(DiskCacheStrategy strategy) { argument
414 super.diskCacheStrategy(strategy);
/external/jacoco/org.jacoco.core/src/org/jacoco/core/instr/
H A DInstrumenter.java86 final IProbeArrayStrategy strategy = ProbeArrayStrategyFactory
89 new ClassInstrumenter(strategy, writer), true);
/external/junit/src/main/java/org/junit/internal/runners/rules/
H A DRuleMemberValidator.java98 for (RuleValidator strategy : validatorStrategies) {
99 strategy.validate(member, annotation, errors);
155 * Examine the given member and add any violations of the strategy's validation logic to the given list of errors
/external/testng/src/main/java/org/testng/remote/
H A DSuiteDispatcher.java24 * Dispatches test suits according to the strategy defined.
35 public static final String MASTER_STRATEGY = "testng.master.strategy";
63 String strategy = properties.getProperty(MASTER_STRATEGY, STRATEGY_SUITE);
64 m_isStrategyTest = STRATEGY_TEST.equalsIgnoreCase(strategy);
/external/archive-patcher/applier/src/main/java/com/google/archivepatcher/applier/
H A DPartiallyCompressingOutputStream.java147 deflater.setStrategy(parameters.strategy);
/external/deqp/external/openglcts/modules/common/
H A DglcRobustnessTests.cpp101 glu::ResetNotificationStrategy strategy = glu::RESET_NOTIFICATION_STRATEGY_NO_RESET_NOTIFICATION; local
102 de::SharedPtr<glu::RenderContext> robustContext(createRobustContext(strategy));
157 glu::ResetNotificationStrategy strategy = glu::RESET_NOTIFICATION_STRATEGY_LOSE_CONTEXT_ON_RESET; local
158 de::SharedPtr<glu::RenderContext> robustContext(createRobustContext(strategy));
704 m_testCtx, "no_reset_notification", "Verifies if NO_RESET_NOTIFICATION strategy works as expected.",
707 m_testCtx, "lose_context_on_reset", "Verifies if LOSE_CONTEXT_ON_RESET strategy works as expected.",
/external/tensorflow/tensorflow/contrib/boosted_trees/kernels/
H A Dsplit_handler_ops.cc61 int strategy; local
62 OP_REQUIRES_OK(context, context->GetAttr("multiclass_strategy", &strategy));
66 strategy),
67 errors::InvalidArgument("Wrong multiclass strategy passed."));
68 multiclass_strategy_ = LearnerConfig_MultiClassStrategy(strategy);
/external/tensorflow/tensorflow/contrib/boosted_trees/python/training/functions/
H A Dgbdt_batch.py98 This strategy works slightly better for the GBDT graph because of using
499 strategy = self._learner_config.multi_class_strategy
503 if strategy == learner_pb2.LearnerConfig.TREE_PER_CLASS:
539 if strategy == learner_pb2.LearnerConfig.FULL_HESSIAN:
544 # Diagonal hessian strategy.
579 multiclass_strategy=strategy,
603 multiclass_strategy=strategy,
625 multiclass_strategy=strategy,
791 """Derives weights to be used based on hessians and multiclass strategy."""
804 """Prepares hessians for full-hessian multiclass strategy
[all...]
/external/tensorflow/tensorflow/contrib/learn/python/learn/
H A Dexperiment.py786 for strategy in self._export_strategies:
788 strategy.export(
792 compat.as_bytes(strategy.name)),
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
H A DDefaultRequestDirectorTest.java266 ConnectionKeepAliveStrategy strategy = shadowOf((DefaultRequestDirector) Robolectric.getSentHttpRequestInfo(0).getRequestDirector()).getConnectionKeepAliveStrategy();
267 assertSame(strategy, connectionKeepAliveStrategy);
/external/archive-patcher/applier/src/test/java/com/google/archivepatcher/applier/
H A DFileByFileV1DeltaApplierTest.java190 dataOut.write(PARAMS1.strategy);
/external/libnl/lib/route/qdisc/
H A Dcbq.c39 * Convert a CBQ OVL strategy to a character string
40 * @arg type CBQ OVL strategy
44 * Converts a CBQ OVL strategy to a character string and stores in the
55 * Convert a string to a CBQ OVL strategy
58 * Converts a CBQ OVL stragegy name to it's corresponding CBQ OVL strategy
142 nl_dump_line(p, " penalty %uus strategy %s ",
144 nl_ovl_strategy2str(cbq->cbq_ovl.strategy, buf, sizeof(buf)));

Completed in 1531 milliseconds

12345678