- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 453 for yyerror (0.04 sec)
-
src/main/java/jcifs/pac/PacDataInputStream.java
* @throws IOException if an I/O error occurs */ public PacDataInputStream(final InputStream in) throws IOException { this.dis = new DataInputStream(in); this.size = in.available(); } /** * Aligns the stream position to the specified boundary. * @param mask the alignment mask (typically 2, 4, or 8) * @throws IOException if an I/O error occurs */Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.9K bytes - Viewed (0) -
src/test/java/jcifs/RuntimeCIFSExceptionTest.java
assertEquals(runtimeException, exception.getCause()); }); // Test with error Error error = new OutOfMemoryError("Out of memory"); assertDoesNotThrow(() -> { RuntimeCIFSException exception = new RuntimeCIFSException(error); assertEquals(error, exception.getCause()); }); } @Test
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10.2K bytes - Viewed (0) -
src/main/java/jcifs/SmbTransportPool.java
* @param forceSigning whether to enforce SMB signing * @return a connected transport * @throws UnknownHostException if the host cannot be resolved * @throws IOException if an I/O error occurs */ SmbTransport getSmbTransport(CIFSContext tf, String name, int port, boolean exclusive, boolean forceSigning) throws UnknownHostException, IOException; /** * Get transport connectionRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/DosError.java
/** * Human-readable error messages corresponding to DOS error codes. * Provides descriptive text for each error condition. */ /* * These aren't really used by jCIFS-- * the map above is used to immediately * map to NTSTATUS codes. */ /** * Human-readable error messages corresponding to DOS error codes.Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/PurgeLogJob.java
} } catch (final Exception e) { logger.error("Failed to purge user info.", e); resultBuf.append(e.getMessage()).append("\n"); } // update job logs try { jobLogService.updateStatus(); } catch (final Exception e) { logger.error("Failed to purge job logs.", e); resultBuf.append(e.getMessage()).append("\n");Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.6K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/DcerpcBindTest.java
assertEquals("DCERPC_BIND_ERR_PROPOSED_TRANSFER_SYNTAXES_NOT_SUPPORTED", result.getMessage(), "Should return correct error message for code 2"); } @Test @DisplayName("getResult should return exception for error code 3") void testGetResultError3() throws Exception { // Given setResultField(bind, 3);
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 22.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/DcerpcError.java
/** * NDR encoding error fault code */ int DCERPC_FAULT_NDR = 0x000006F7; /** * Invalid tag fault code */ int DCERPC_FAULT_INVALID_TAG = 0x1C000006; /** * Context mismatch fault code */ int DCERPC_FAULT_CONTEXT_MISMATCH = 0x1C00001A; /** * Operation range error fault code */ int DCERPC_FAULT_OP_RNG_ERROR = 0x1C010002;Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.6K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/exception/CrawlingAccessException.java
/** * Log level constant for warning messages. */ public static final String WARN = "WARN"; /** * Log level constant for error messages. */ public static final String ERROR = "ERROR"; /** The log level for this exception, defaults to INFO */ private String logLevel = INFO; /**Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 3.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/index/SuggestIndexResponseTest.java
errors.add(new Exception("Test error")); SuggestIndexResponse response2 = new SuggestIndexResponse(10, 5, errors, 100); assertTrue(response2.hasError()); } @Test public void test_getErrors() throws Exception { List<Throwable> errors = new ArrayList<>(); errors.add(new Exception("Error 1")); errors.add(new RuntimeException("Error 2"));
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Thu Nov 13 00:40:54 UTC 2025 - 4.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/tomcat/valve/SuppressErrorReportValve.java
import org.apache.catalina.valves.ErrorReportValve; /** * This class is a valve to suppress error reports. * It extends {@link ErrorReportValve} and disables the display of * error reports and server information. */ public class SuppressErrorReportValve extends ErrorReportValve { /** * Constructs a new valve to suppress error reports. */ public SuppressErrorReportValve() { setShowReport(false);Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.1K bytes - Viewed (0)