- Sort Score
- Result 10 results
- Languages All
Results 131 - 140 of 293 for indication (0.06 sec)
-
src/main/java/jcifs/internal/smb2/multichannel/Smb2ChannelCapabilities.java
/** * FSCTL code for querying network interface information */ public static final int FSCTL_QUERY_NETWORK_INTERFACE_INFO = 0x001401FC; /** * SMB2 session flag indicating channel binding */ public static final int SMB2_SESSION_FLAG_BINDING = 0x01; /** * Size of network interface info structure in bytes */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 11:13:46 UTC 2025 - 2.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/WildcardQueryCommand.java
* Default constructor. */ public WildcardQueryCommand() { super(); } private static final Logger logger = LogManager.getLogger(WildcardQueryCommand.class); /** * Flag indicating whether wildcard terms should be converted to lowercase. */ protected boolean lowercaseWildcard = true; @Override protected String getQueryClassName() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/ntlmssp/NtlmMessage.java
this.flags = flags; } /** * Returns the status of the specified flag. * * @param flag The flag to test (i.e., <code>NTLMSSP_NEGOTIATE_OEM</code>). * @return A <code>boolean</code> indicating whether the flag is set. */ public boolean getFlag(final int flag) { return (getFlags() & flag) != 0; } /** * Sets or clears the specified flag. *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.6K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactResolverResult.java
*/ Path getPath(); /** * Indicates whether the requested artifact was resolved. Note that the artifact might have been successfully * resolved despite {@link #getExceptions()} indicating transfer errors while trying to fetch the artifact from some * of the specified remote repositories. * * @return {@code true} if the artifact was resolved, {@code false} otherwise. */
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Feb 07 00:45:02 UTC 2025 - 4.7K bytes - Viewed (0) -
src/main/java/jcifs/config/BaseConfiguration.java
*/ protected int rdmaCredits; /** * Flag indicating whether RDMA is currently enabled and available */ protected boolean rdmaEnabled = false; /** * Port number for RDMA connections (default: 5445) */ protected int rdmaPort = 5445; // Witness protocol configuration fields /** * Flag indicating whether SMB Witness protocol should be used for failover */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 36.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/RdmaMemoryRegion.java
protected final int localKey; /** Remote key for remote RDMA access */ protected final int remoteKey; /** Virtual address of the memory region */ protected final long address; /** Flag indicating if the memory region is still valid */ protected volatile boolean valid; /** * Create new RDMA memory region * * @param buffer memory buffer to register
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 4.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/kuromoji/ApiAdminDictKuromojiAction.java
} /** * Deletes a Kuromoji dictionary item by ID. * * @param dictId the dictionary ID * @param id the ID of the Kuromoji item to delete * @return JSON response indicating the deletion status */ // DELETE /api/admin/dict/kuromoji/setting/{dictId}/{id} @Execute public JsonResponse<ApiResult> delete$setting(final String dictId, final long id) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/protwords/ApiAdminDictProtwordsAction.java
* Upload protected words file for the specified dictionary. * * @param dictId identifier of the dictionary * @param form upload form containing the file and metadata * @return JSON response indicating the API result status */ // PUT /api/admin/dict/protwords/upload/{dictId} @Execute public JsonResponse<ApiResult> put$upload(final String dictId, final UploadForm form) { form.dictId = dictId;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.4K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/hash/AbstractStreamingHasherTest.java
super.processRemaining(bb); int after = processCalled; assertEquals(before + 1, after); // default implementation pads and calls process() processCalled--; // don't count the tail invocation (makes tests a bit more understandable) } // ensures that the number of invocations looks sane void assertInvariants(int expectedBytes) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 8.5K bytes - Viewed (0) -
cmd/erasure-metadata-utils.go
for i := 1; i <= cardinality; i++ { nums[i-1] = 1 + ((start + i) % cardinality) } return nums } // Reads all `xl.meta` metadata as a FileInfo slice. // Returns error slice indicating the failed metadata reads. func readAllFileInfo(ctx context.Context, disks []StorageAPI, origbucket string, bucket, object, versionID string, readData, healing bool) ([]FileInfo, []error) {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 11.7K bytes - Viewed (0)