- Sort Score
- Result 10 results
- Languages All
Results 421 - 430 of 850 for extended (0.04 sec)
-
src/main/java/jcifs/BufferCache.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs; /** * Internal API for managing reusable buffers * * @author mbechler * * <p>This interface is intended for internal use.</p> */ public interface BufferCache { /** * Gets a buffer from the cache or creates a new one if the cache is empty. * * @return a buffer from the cache, or a new one
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.3K bytes - Viewed (0) -
src/test/java/jcifs/smb1/dcerpc/DcerpcMessageTest.java
/** * A trivial concrete subclass used for testing. It simply writes a * single small value in {@code encode_in} and reads it in * {@code decode_out}. */ private static class TestMessage extends DcerpcMessage { int decodedValue = 0; TestMessage() { /* nothing */ } @Override public int getOpnum() { return 0x1234; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/IndexingHelper.java
final long maxSearchDocSize = fessConfig.getIndexerMaxSearchDocSizeAsInteger().longValue(); final boolean exceeded = numFound > maxSearchDocSize; if (exceeded) { logger.warn("Max document size is exceeded({}>{}): {}", numFound, fessConfig.getIndexerMaxSearchDocSize(), queryBuilder); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 26.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateResponse.java
* * This response contains the server's protocol capabilities, * security mode, and negotiated dialect version. * * @author mbechler */ public class Smb2NegotiateResponse extends ServerMessageBlock2Response implements SmbNegotiationResponse { private static final Logger log = LoggerFactory.getLogger(Smb2NegotiateResponse.class); private int securityMode; private int dialectRevision;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 24K bytes - Viewed (0) -
src/main/java/jcifs/util/transport/Transport.java
* @param response the response object to populate * @param params additional parameters for the request * @return the response * @throws IOException if an I/O error occurs */ public <T extends Response> T sendrecv(final Request request, final T response, final Set<RequestParam> params) throws IOException { if (isDisconnected() && this.state != 5) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 27.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/ContentNotFoundExceptionTest.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.exception; import org.codelibs.fess.unit.UnitFessTestCase; public class ContentNotFoundExceptionTest extends UnitFessTestCase { public void test_constructor_withValidUrls() { // Test with normal URLs String parentUrl = "http://example.com/parent"; String url = "http://example.com/child";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7.8K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbTreeImplTest.java
// Test unwrapping to a non-assignable type should fail assertThrows(ClassCastException.class, () -> { // Create a mock class that extends SmbTree but is not assignable from SmbTreeImpl class CustomSmbTree extends SmbTreeImpl { CustomSmbTree() { super(session, "SHARE", "A:"); } } tree.unwrap(CustomSmbTree.class);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7.8K bytes - Viewed (0) -
src/test/java/jcifs/DecodableTest.java
import org.mockito.Mock; import jcifs.internal.SMBProtocolDecodingException; /** * Test class for Decodable interface functionality */ @DisplayName("Decodable Interface Tests") class DecodableTest extends BaseTest { @Mock private Decodable mockDecodable; @Test @DisplayName("Should define decode method") void testDecodeMethod() throws SMBProtocolDecodingException { // Given
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 1K bytes - Viewed (0) -
src/main/java/jcifs/util/SmbCircuitBreaker.java
if (currentState == State.HALF_OPEN) { int attempts = halfOpenAttempts.incrementAndGet(); if (attempts > halfOpenMaxAttempts) { log.warn("[{}] Exceeded max attempts in HALF_OPEN state, reopening circuit", name); transitionTo(State.OPEN); throw new CircuitOpenException("Circuit breaker '" + name + "' reopened after max attempts");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 33.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/cbean/DataConfigCB.java
*/ package org.codelibs.fess.opensearch.config.cbean; import org.codelibs.fess.opensearch.config.cbean.bs.BsDataConfigCB; /** * @author ESFlute (using FreeGen) */ public class DataConfigCB extends BsDataConfigCB {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 838 bytes - Viewed (0)