Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for FormatMessage (0.09 sec)

  1. src/main/java/jcifs/smb/SmbOperationException.java

         */
        public SmbOperationException(ErrorCode errorCode, String message, Throwable cause, RetryPolicy retryPolicy,
                Map<String, Object> context) {
            super(formatMessage(errorCode, message), cause);
            this.errorCode = errorCode;
            this.originalMessage = message;
            this.retryPolicy = retryPolicy != null ? retryPolicy : RetryPolicy.DEFAULT;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 16.5K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/util/concurrent/ServiceManagerTest.java

        assertTrue(manager.startupTimes().isEmpty());
        Formatter logFormatter =
            new Formatter() {
              @Override
              public String format(LogRecord record) {
                return formatMessage(record);
              }
            };
        for (LogRecord record : logHandler.getStoredLogRecords()) {
          assertThat(logFormatter.format(record)).doesNotContain("NoOpService");
        }
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jul 16 20:34:52 UTC 2025
    - 25.5K bytes
    - Viewed (0)
Back to top