- Sort Score
- Num 10 results
- Language All
Results 501 - 510 of 4,423 for Signal (0.07 seconds)
-
src/main/java/jcifs/smb/SmbFile.java
} SmbFileHandleImpl openUnshared(final int flags, final int access, final int sharing, final int attrs, final int options) throws CIFSException { return openUnshared(getUncPath(), flags, access, sharing, attrs, options); } SmbFileHandleImpl openUnshared(final String uncPath, final int flags, final int access, final int sharing, final int attrs, final int options) throws CIFSException {Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 103.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/SearchLogHelperTest.java
final SearchLogHelper.SearchLogContext context = createTestContext(request); final MockSearchRequestParams params = new MockSearchRequestParams(); final LocalDateTime now = LocalDateTime.now(); final QueryResponseList queryResponseList = new QueryResponseList(Collections.emptyList(), 0L, "eq", 0L, false, null, 0, 10, 0);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 14:36:23 GMT 2026 - 16.6K bytes - Click Count (0) -
android/guava/src/com/google/common/util/concurrent/AbstractService.java
} }; private static final ListenerCallQueue.Event<Listener> STOPPING_FROM_STARTING_EVENT = stoppingEvent(STARTING); private static final ListenerCallQueue.Event<Listener> STOPPING_FROM_RUNNING_EVENT = stoppingEvent(RUNNING); private static final ListenerCallQueue.Event<Listener> TERMINATED_FROM_NEW_EVENT = terminatedEvent(NEW);Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Feb 19 21:24:11 GMT 2025 - 20.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/user/ApiAdminUserAction.java
*/ // GET /api/admin/user/settings // PUT /api/admin/user/settings @Execute public JsonResponse<ApiResult> settings(final SearchBody body) { validateApi(body, messages -> {}); final UserPager pager = copyBeanToNewBean(body, UserPager.class); final List<User> list = userService.getUserList(pager); return asJson(Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Nov 24 02:07:40 GMT 2025 - 7.8K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb2/nego/PreauthIntegrityNegotiateContext.java
* * @see jcifs.Decodable#decode(byte[], int, int) */ @Override public int decode(final byte[] buffer, int bufferIndex, final int len) throws SMBProtocolDecodingException { final int start = bufferIndex; final int nalgos = SMBUtil.readInt2(buffer, bufferIndex); final int nsalt = SMBUtil.readInt2(buffer, bufferIndex + 2); bufferIndex += 4;Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 4.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/ds/DataStoreTest.java
public void test_store_basic() { // Create a simple DataStore implementation for testing final AtomicBoolean storeCalled = new AtomicBoolean(false); final AtomicReference<DataConfig> capturedConfig = new AtomicReference<>(); final AtomicReference<IndexUpdateCallback> capturedCallback = new AtomicReference<>(); final AtomicReference<DataStoreParams> capturedParams = new AtomicReference<>();
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 13.2K bytes - Click Count (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/entity/OpenSearchAccessResult.java
* Field name for ID. */ public static final String ID = "id"; /** * Field name for session ID. */ public static final String SESSION_ID = "sessionId"; /** * Field name for rule ID. */ public static final String RULE_ID = "ruleId"; /** * Field name for URL. */ public static final String URL = "url"; /**Created: Sun Apr 12 03:50:13 GMT 2026 - Last Modified: Sun Jul 06 02:13:03 GMT 2025 - 6.5K bytes - Click Count (0) -
src/main/java/jcifs/smb/SmbFileOutputStream.java
SmbFileOutputStream(final SmbFile file, final SmbTreeHandleImpl th, final SmbFileHandleImpl handle, final int openFlags, final int access, final int sharing) throws CIFSException { this.file = file; this.handle = handle; this.openFlags = openFlags; this.access = access; this.sharing = sharing; this.append = false; this.smb2 = th.isSMB2(); init(th); }
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 12.8K bytes - Click Count (0) -
src/main/java/org/codelibs/core/misc/AssertionUtil.java
* @throws ClIllegalArgumentException * If the argument is invalid as an array index. */ public static void assertArgumentArrayIndex(final String argName, final int argValue, final int arraySize) { if (argValue < 0) { throw new ClIllegalArgumentException(argName, "ECL0014", asArray(argName)); } if (argValue >= arraySize) {Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Thu Jul 31 08:16:49 GMT 2025 - 12.5K bytes - Click Count (0) -
src/main/java/jcifs/dcerpc/ndr/NdrBuffer.java
private Map<Object, Entry> referents; private static class Entry { public Entry(final int referent, final Object obj) { this.referent = referent; this.obj = obj; } final int referent; @SuppressWarnings("unused") private final Object obj; } /** * The underlying byte buffer containing the NDR data. */
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 10.7K bytes - Click Count (0)