- Sort Score
- Result 10 results
- Languages All
Results 121 - 130 of 383 for chain (0.01 sec)
-
src/main/java/org/codelibs/fess/auth/chain/CommandChain.java
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.auth.chain; import static org.codelibs.core.stream.StreamUtil.stream; import java.io.BufferedReader; import java.io.File; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 13.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/InvalidQueryExceptionTest.java
assertEquals(message, exception.getMessage()); assertEquals(complexMessageCode, exception.getMessageCode()); } public void test_causeChainPropagation() { // Setup - create a chain of exceptions final IllegalArgumentException rootCause = new IllegalArgumentException("Invalid character in query");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 15.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComLogoffAndX.java
/** * Creates a new SMB1 logoff request to end a user session. * * @param config the CIFS configuration * @param andx the next command in the AndX chain, or null */ public SmbComLogoffAndX(final Configuration config, final ServerMessageBlock andx) { super(config, SMB_COM_LOGOFF_ANDX, andx); } @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.1K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/RequestTrace.java
* of the request. May be null if no specific context is needed. * @param parent The parent request trace that led to this request, establishing the chain of nested * operations. May be null for top-level requests. * @param data Additional data associated with this request trace, typically containing the actual request
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Jan 29 08:17:07 UTC 2025 - 2.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/dfs/DfsReferralDataInternalTest.java
DfsReferralDataImpl third = createInitializedDfsReferralDataImpl(); // Build chain first.append(second); first.append(third); // Verify chain assertEquals(third, first.next()); assertEquals(second, third.next()); assertEquals(first, second.next()); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 28.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/ServerMessageBlock2Request.java
if (n != null) { setNext(null); n.clearFlags(SMB2_FLAGS_RELATED_OPERATIONS); } return n; } /** * Sets the next request in the compound chain. * * @param next the next request */ public void setNext(final ServerMessageBlock2Request<?> next) { super.setNext(next); } /** * {@inheritDoc} *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Mon Aug 25 14:34:10 UTC 2025 - 7.2K bytes - Viewed (0) -
buildscripts/checkdeps.sh
## ## readlink() { ## return /bin/readlink -f "$1" ## } ## readlink() { TARGET_FILE=$1 cd $(dirname $TARGET_FILE) TARGET_FILE=$(basename $TARGET_FILE) # Iterate down a (possible) chain of symlinks while [ -L "$TARGET_FILE" ]; do TARGET_FILE=$(env readlink $TARGET_FILE) cd $(dirname $TARGET_FILE) TARGET_FILE=$(basename $TARGET_FILE) done
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sun Jun 08 16:12:05 UTC 2025 - 3.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/session/Smb2SessionSetupRequestTest.java
assertFalse((boolean) sessionBindingField.get(request)); } @Test @DisplayName("Should handle chain operation correctly") void testChain() { // Given ServerMessageBlock2 nextMessage = mock(ServerMessageBlock2.class); // When boolean result = request.chain(nextMessage); // Then verify(nextMessage).setSessionId(Smb2Constants.UNSPECIFIED_SESSIONID);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 21.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/QueryParseExceptionTest.java
ParseException parseException = new ParseException("Hierarchy test"); QueryParseException queryParseException = new QueryParseException(parseException); // Verify inheritance chain assertTrue(queryParseException instanceof QueryParseException); assertTrue(queryParseException instanceof FessSystemException); assertTrue(queryParseException instanceof RuntimeException);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 5.2K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/util/concurrent/CycleDetectingLockFactoryTest.java
firstException = expected; // Second time should also fail, with a cached causal chain. expected = assertThrows(PotentialDeadlockException.class, () -> lockA.lock()); checkMessage(expected, "LockB -> LockA", "LockA -> LockB"); // The causal chain should be cached. assertSame(firstException.getCause(), expected.getCause()); // lockA should work after lockB is released.
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 16.2K bytes - Viewed (0)