- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 757 for noclear (0.04 seconds)
-
cmd/admin-handlers.go
storageClass := strings.TrimSpace(r.Form.Get(peerRESTStorageClass)) customBucket := strings.TrimSpace(r.Form.Get(peerRESTBucket)) autotune := r.Form.Get("autotune") == "true" noClear := r.Form.Get("noclear") == "true" enableSha256 := r.Form.Get("enableSha256") == "true" enableMultipart := r.Form.Get("enableMultipart") == "true" size, err := strconv.Atoi(sizeStr) if err != nil {
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 99.7K bytes - Click Count (0) -
PULL_REQUESTS_ETIQUETTE.md
## Reviewing PRs Reviewers ensure MinIO’s commit history remains a clear, reliable record. Responsibilities include: 1. **Commit Quality**: - Verify each commit explains *why* the change was made (e.g., “So that…”). - Request rebasing if commits are unclear, redundant, or lack context (e.g., “Please squash typo fixes into the parent commit”). 2. **Code Quality**:
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Sun May 25 16:32:03 GMT 2025 - 4.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/llm/ChatIntentTest.java
assertEquals(ChatIntent.UNCLEAR, ChatIntent.fromValue("unclear")); assertEquals(ChatIntent.UNCLEAR, ChatIntent.fromValue("UNCLEAR")); assertEquals(ChatIntent.UNCLEAR, ChatIntent.fromValue("Unclear")); } @Test public void test_fromValue_null() { // Defaults to UNCLEAR when value is null assertEquals(ChatIntent.UNCLEAR, ChatIntent.fromValue(null)); } @Test
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 01 08:11:18 GMT 2026 - 3.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/llm/ChatIntent.java
/** User wants a summary of a specific document */ SUMMARY("summary"), /** User is asking a FAQ-type question */ FAQ("faq"), /** Intent is unclear - need to ask user for clarification */ UNCLEAR("unclear"); private final String value; ChatIntent(final String value) { this.value = value; } /** * Returns the string value of this intent. *Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 01 08:11:18 GMT 2026 - 1.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/llm/IntentDetectionResultTest.java
@Test public void test_unclear() { final IntentDetectionResult result = IntentDetectionResult.unclear("unclear intent"); assertEquals(ChatIntent.UNCLEAR, result.getIntent()); assertNull(result.getQuery()); assertNull(result.getDocumentUrl()); assertEquals("unclear intent", result.getReasoning()); } @Test public void test_unclear_withNullReasoning() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 07 13:27:59 GMT 2026 - 8.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/llm/IntentDetectionResult.java
} /** * Creates an unclear intent result when intent cannot be determined. * * @param reasoning the detection reasoning * @return the unclear intent result */ public static IntentDetectionResult unclear(final String reasoning) { return new IntentDetectionResult(ChatIntent.UNCLEAR, null, null, reasoning); } /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 07 13:27:59 GMT 2026 - 4.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/mylasta/direction/FessPropTest.java
@Override protected boolean isUseOneTimeContainer() { return true; } @Test public void test_maxUsernameLength() throws IOException { FessProp.propMap.clear(); FessConfig fessConfig = new FessConfig.SimpleImpl() { @Override public Integer getLdapMaxUsernameLengthAsInteger() { return Integer.valueOf(-1); } };Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 25.4K bytes - Click Count (0) -
android/guava-testlib/src/com/google/common/collect/testing/google/MultimapClearTester.java
public void testClear() { multimap().clear(); assertCleared(); } @MapFeature.Require(SUPPORTS_REMOVE) public void testClearThroughEntries() { multimap().entries().clear(); assertCleared(); } @MapFeature.Require(SUPPORTS_REMOVE) public void testClearThroughAsMap() { multimap().asMap().clear(); assertCleared(); } @MapFeature.Require(SUPPORTS_REMOVE)
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Feb 12 21:10:54 GMT 2025 - 4.3K bytes - Click Count (0) -
tests/associations_has_one_test.go
// Prepare Data for Clear account = Account{Number: "account-has-one-append"} if err := DB.Model(&user2).Association("Account").Append(&account); err != nil { t.Fatalf("Error happened when append Account, got %v", err) } AssertAssociationCount(t, user2, "Account", 1, "after prepare data") // Clear if err := DB.Model(&user2).Association("Account").Clear(); err != nil {Created: Sun Apr 05 09:35:12 GMT 2026 - Last Modified: Wed Jun 12 10:49:45 GMT 2024 - 7.1K bytes - Click Count (0) -
tests/associations_has_many_test.go
// Prepare Data for Clear if err := DB.Model(&user2).Association("Pets").Append(&pet); err != nil { t.Fatalf("Error happened when append Pets, got %v", err) } AssertAssociationCount(t, user2, "Pets", 1, "after prepare data") // Clear if err := DB.Model(&user2).Association("Pets").Clear(); err != nil { t.Errorf("Error happened when clear Pets, got %v", err) }
Created: Sun Apr 05 09:35:12 GMT 2026 - Last Modified: Fri Sep 12 04:33:27 GMT 2025 - 16.3K bytes - Click Count (0)