- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 229 for Explain (0.05 sec)
-
src/main/java/org/codelibs/fess/es/config/allcommon/EsAbstractConditionBean.java
} if (terminateAfter > 0) { builder.setTerminateAfter(terminateAfter); } } public void setExplain(boolean explain) { this.explain = explain; } public void setMinScore(float minScore) { this.minScore = minScore; } public void setPreference(String preference) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 17.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/log/allcommon/EsAbstractConditionBean.java
} if (terminateAfter > 0) { builder.setTerminateAfter(terminateAfter); } } public void setExplain(boolean explain) { this.explain = explain; } public void setMinScore(float minScore) { this.minScore = minScore; } public void setPreference(String preference) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 17.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/user/allcommon/EsAbstractConditionBean.java
} if (terminateAfter > 0) { builder.setTerminateAfter(terminateAfter); } } public void setExplain(boolean explain) { this.explain = explain; } public void setMinScore(float minScore) { this.minScore = minScore; } public void setPreference(String preference) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 17.8K bytes - Viewed (0) -
tests/sql_builder_test.go
func (ageFloat) String() string { return "age" } func TestExplainSQL(t *testing.T) { user := *GetUser("explain-sql", Config{}) dryRunDB := DB.Session(&gorm.Session{DryRun: true}) stmt := dryRunDB.Model(&user).Where("id = ?", 1).Updates(map[string]interface{}{"age": ageInt(8)}).Statement sql := DB.Dialector.Explain(stmt.SQL.String(), stmt.Vars...) if !regexp.MustCompile(`.*age.*=8,`).MatchString(sql) {
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Fri Jan 12 08:42:21 UTC 2024 - 16.7K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/client/FesenClient.java
} @Override public ActionFuture<ExplainResponse> explain(final ExplainRequest request) { return client.explain(request); } @Override public void explain(final ExplainRequest request, final ActionListener<ExplainResponse> listener) { client.explain(request, listener); } @Override public ClearScrollRequestBuilder prepareClearScroll() {
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Nov 07 04:44:10 UTC 2024 - 19.9K bytes - Viewed (0) -
.github/ISSUE_TEMPLATE/20_contributor_feature_request.yml
description: Tell us how it should work validations: required: true - type: textarea id: current-behavior attributes: label: Current Behavior (optional) description: Explain the difference from current behavior validations: required: false - type: textarea id: context attributes: label: Context description: |
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Apr 06 11:10:39 UTC 2023 - 1.5K bytes - Viewed (0) -
.github/ISSUE_TEMPLATE/bug_report.md
<!--- If you're suggesting a change/improvement, tell us how it should work --> ## Current Behavior <!--- If describing a bug, tell us what happens instead of the expected behavior --> <!--- If suggesting a change/improvement, explain the difference from current behavior --> ## Possible Solution <!--- Not obligatory, but suggest a fix/reason for the bug, --> <!--- or ideas how to implement the addition or change --> ## Steps to Reproduce (for bugs)
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Jan 20 17:37:40 UTC 2022 - 1.7K bytes - Viewed (0) -
utils/tests/dummy_dialecter.go
} writer.WriteByte(v) } shiftDelimiter++ } if continuousBacktick > 0 && !selfQuoted { writer.WriteString("``") } writer.WriteByte('`') } func (DummyDialector) Explain(sql string, vars ...interface{}) string { return logger.ExplainSQL(sql, nil, `"`, vars...) } func (DummyDialector) DataTypeOf(*schema.Field) string { return "" }
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Mon Mar 06 06:03:31 UTC 2023 - 2.2K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/NaturalOrdering.java
/** An ordering that uses the natural order of the values. */ @GwtCompatible(serializable = true) @SuppressWarnings({"unchecked", "rawtypes"}) // TODO(kevinb): the right way to explain this?? @ElementTypesAreNonnullByDefault final class NaturalOrdering extends Ordering<Comparable<?>> implements Serializable { static final NaturalOrdering INSTANCE = new NaturalOrdering();
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Jun 26 21:02:13 UTC 2023 - 2.7K bytes - Viewed (0) -
guava/src/com/google/common/collect/NullsFirstOrdering.java
// ordering.reverse() might be optimized, so let it do its thing return ordering.<T>reverse().<@NonNull S>nullsLast(); } @SuppressWarnings("unchecked") // still need the right way to explain this @Override public <S extends @Nullable T> Ordering<@Nullable S> nullsFirst() { return (Ordering<@Nullable S>) this; } @Override public <S extends @Nullable T> Ordering<@Nullable S> nullsLast() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Mar 27 16:03:47 UTC 2023 - 2.7K bytes - Viewed (0)