- Sort Score
- Result 10 results
- Languages All
Results 171 - 180 of 461 for jack (0.02 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/searchlog/AdminSearchlogAction.java
* * @param form the search form containing current state * @return HTML response for the search log list page */ @Execute @Secured({ ROLE, ROLE + VIEW }) public HtmlResponse back(final SearchForm form) { saveToken(); return asHtml(path_AdminSearchlog_AdminSearchlogJsp).renderWith(data -> { searchPaging(data, form); }); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 10.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/create/Smb2CreateRequest.java
addCreateContext(leaseContext); setRequestedOplockLevel(SMB2_OPLOCK_LEVEL_LEASE); } /** * Remove lease contexts and fall back to oplock * @param oplockLevel the oplock level to fall back to */ public void fallbackToOplock(byte oplockLevel) { // Remove any lease contexts if (this.createContexts != null) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 02:21:31 UTC 2025 - 22.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/WildcardQueryCommandTest.java
assertTrue(queryCommand.lowercaseWildcard); // Test setting to false queryCommand.setLowercaseWildcard(false); assertFalse(queryCommand.lowercaseWildcard); // Test setting back to true queryCommand.setLowercaseWildcard(true); assertTrue(queryCommand.lowercaseWildcard); } public void test_convertWildcardQuery_withBoost() throws Exception {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/stopwords/StopwordsItemTest.java
assertEquals("updated", item.toLineString()); // When marked for deletion item.setNewInput(""); assertEquals("", item.toLineString()); // When newInput is set back to null item.setNewInput(null); assertEquals("original", item.toLineString()); } public void test_toLineString_withEmptyInput() { // Test toLineString with empty original input
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.9K bytes - Viewed (0) -
src/test/java/jcifs/smb1/dcerpc/ndr/NdrShortTest.java
int bytesUsed = buf.getIndex(); // Should be 2 bytes for the short value (alignment may add padding) assertTrue(bytesUsed >= 2, "Should use at least 2 bytes for short"); // Reset index to read back buf.reset(); NdrShort decoded = new NdrShort(0); // placeholder value decoded.decode(buf); assertEquals(expected, decoded.value, "decoded value should match original after masking"); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.1K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/Source.java
* <li>Other sources may not support resolution and return null</li> * </ul> * <p> * The implementation must handle: * <ul> * <li>Both forward and back slashes as path separators</li> * <li>Parent directory references (..)</li> * <li>Both file and directory targets</li> * </ul> * * @param relative path to resolve relative to this source
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Jan 29 09:46:53 UTC 2025 - 4K bytes - Viewed (0) -
android/guava/src/com/google/common/base/internal/Finalizer.java
try { return Thread.class.getConstructor( ThreadGroup.class, Runnable.class, String.class, long.class, boolean.class); } catch (Throwable t) { // Probably pre Java 9. We'll fall back to Thread.inheritableThreadLocals. return null; } }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 9.3K bytes - Viewed (0) -
src/test/java/jcifs/smb/Kerb5AuthenticatorTest.java
auth.setRealm("REALM.TEST"); assertEquals("REALM.TEST", auth.getUserDomain()); } @Test @DisplayName("getUserDomain: falls back to super domain when no realm/subject") void getUserDomain_fallbackToSuper() { Kerb5Authenticator auth = new Kerb5Authenticator(null, "DOM", "u", "p");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10.9K bytes - Viewed (0) -
docs/ja/docs/tutorial/cookie-param-models.md
例えば、クライアントがクッキー `santa_tracker` を `good-list-please` という値で送ろうとすると、`santa_tracker` という <abbr title="サンタはクッキー不足を良しとはしないでしょう。🎅 はい、クッキージョークはもう止めておきます。(原文: Santa disapproves the lack of cookies. 🎅 Okay, no more cookie jokes.)">クッキーが許可されていない</abbr> ことを通知する**エラー**レスポンスが返されます: ```json { "detail": [ { "type": "extra_forbidden", "loc": ["cookie", "santa_tracker"],
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Fri Feb 28 14:21:27 UTC 2025 - 4.5K bytes - Viewed (0) -
docs/smb3-features/06-witness-protocol-design.md
private void scheduleServiceRetry() { scheduler.schedule(() -> { try { // Test if service is back online if (testWitnessService()) { serviceAvailable = true; log.info("Witness service is back online"); // Re-register for notifications reregisterNotifications();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 42K bytes - Viewed (0)