- Sort Score
- Result 10 results
- Languages All
Results 101 - 110 of 695 for flag (0.01 sec)
-
src/main/java/org/codelibs/fess/query/PrefixQueryCommand.java
if (lowercaseWildcard) { return value.toLowerCase(Locale.ROOT); } return value; } /** * Sets the lowercase wildcard flag. * * @param lowercaseWildcard the lowercase wildcard flag */ public void setLowercaseWildcard(final boolean lowercaseWildcard) { this.lowercaseWildcard = lowercaseWildcard; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 5.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/rank/fusion/SearchResult.java
protected final String allRecordCountRelation; /** The time taken to execute the search query in milliseconds. */ protected final long queryTime; /** Flag indicating whether the search results are partial due to timeout or other constraints. */ protected final boolean partialResults; /** The facet response containing aggregated facet information for the search results. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.8K bytes - Viewed (0) -
cmd/object-handlers-common_test.go
request.Header.Set(xhttp.IfUnmodifiedSince, tc.ifUnmodifiedSince) actualFlag := checkPreconditions(t.Context(), recorder, request, tc.objInfo, ObjectOptions{}) if tc.expectedFlag != actualFlag { t.Errorf("test: %s, got flag: %v, want: %v", tc.name, actualFlag, tc.expectedFlag) } if tc.expectedCode != recorder.Code { t.Errorf("test: %s, got code: %d, want: %d", tc.name, recorder.Code, tc.expectedCode) } }) }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Wed Apr 09 14:28:39 UTC 2025 - 5.3K bytes - Viewed (0) -
src/main/java/jcifs/http/NtlmServlet.java
/** The domain controller for authentication */ private String domainController; /** Flag to enable load balancing across domain controllers */ private boolean loadBalance; /** Flag to enable basic authentication */ private boolean enableBasic; /** Flag to allow insecure basic authentication */ private boolean insecureBasic; /** The authentication realm */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.1K bytes - Viewed (1) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/util/TextUtil.java
* <li>Appending alphanumeric characters (0-9, A-Z, a-z) to the buffer.</li> * <li>Appending symbol characters (!-/, :-@, [-`, {-~) to the buffer.</li> * <li>Optionally removing duplicate terms based on a flag.</li> * <li>Limiting the maximum size of alphanumeric and symbol terms.</li> * </ul> * * <p>The {@link TextNormalizeContext} class provides a fluent API to configure the text
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 12K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/maintenance/ActionForm.java
public class ActionForm { /** * Default constructor. */ public ActionForm() { // nothing } /** * The flag to replace aliases. */ @Size(max = 10) public String replaceAliases; /** * The flag to reset dictionaries. */ @Size(max = 10) public String resetDictionaries; /** * The number of shards for doc. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.5K bytes - Viewed (0) -
tensorflow/c/c_api_experimental.h
#ifdef __cplusplus extern "C" { #endif // When `enable` is true, set // tensorflow.ConfigProto.OptimizerOptions.global_jit_level to ON_1, and also // set XLA flag values to prepare for XLA compilation. Otherwise set // global_jit_level to OFF. // // This and the next API are syntax sugar over TF_SetConfig(), and is used by // clients that cannot read/write the tensorflow.ConfigProto proto.
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Thu Apr 27 21:07:00 UTC 2023 - 15.1K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbTransportImplTest.java
verify(nego, times(1)).haveCapabilitiy(SmbConstants.CAP_DFS); } @Test @DisplayName("SMB version detection via flag or response type") void isSMB2_variants() throws Exception { // 1) smb2 flag set setField(transport, "smb2", true); assertTrue(transport.isSMB2()); // 2) smb2 false but negotiated is SMB2 response
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.6K bytes - Viewed (0) -
src/cmd/asm/internal/asm/endtoend_test.go
s := fmt.Sprintf(format, args...) if !strings.HasSuffix(s, "\n") { s += "\n" } errBuf.WriteString(s) } for _, flag := range flags { switch flag { case "dynlink": ctxt.Flag_dynlink = true default: t.Errorf("unknown flag %s", flag) } } pList.Firstpc, ok = parser.Parse() obj.Flushplist(ctxt, pList, nil) if ok && !failed { t.Errorf("asm: %s had no errors", file)
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Mar 26 01:02:50 UTC 2025 - 11.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/FsctlPipeWaitRequestTest.java
assertEquals(0L, SMBUtil.readInt8(buffer, 0)); // Check name length assertEquals(nameBytes.length, SMBUtil.readInt4(buffer, 8)); // Check timeout specified flag (should be 0) assertEquals(0x0, buffer[12]); // Check padding assertEquals(0x0, buffer[13]); // Check name bytes byte[] encodedName = new byte[nameBytes.length];
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.1K bytes - Viewed (0)