Search Options

Results per page
Sort
Preferred Languages
Advance

Results 311 - 320 of 1,167 for mesiace (0.05 sec)

  1. src/main/java/org/codelibs/fess/exception/JobNotFoundException.java

         * Constructs a new JobNotFoundException with a message derived from the scheduled job.
         *
         * @param scheduledJob the scheduled job that was not found
         */
        public JobNotFoundException(final ScheduledJob scheduledJob) {
            super(scheduledJob.toString());
        }
    
        /**
         * Constructs a new JobNotFoundException with the specified detail message.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  2. okhttp/src/commonJvmAndroid/kotlin/okhttp3/Challenge.kt

        return Challenge(scheme, authParams)
      }
    
      @JvmName("-deprecated_scheme")
      @Deprecated(
        message = "moved to val",
        replaceWith = ReplaceWith(expression = "scheme"),
        level = DeprecationLevel.ERROR,
      )
      fun scheme(): String = scheme
    
      @JvmName("-deprecated_authParams")
      @Deprecated(
        message = "moved to val",
        replaceWith = ReplaceWith(expression = "authParams"),
        level = DeprecationLevel.ERROR,
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue May 27 15:01:35 UTC 2025
    - 3.5K bytes
    - Viewed (0)
  3. api/maven-api-spi/src/main/java/org/apache/maven/api/spi/ModelParserException.java

            this(null, null);
        }
    
        public ModelParserException(String message) {
            this(message, null);
        }
    
        public ModelParserException(String message, Throwable cause) {
            this(message, -1, -1, cause);
        }
    
        public ModelParserException(String message, int lineNumber, int columnNumber, Throwable cause) {
            super(message, cause);
            this.lineNumber = lineNumber;
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Sep 22 07:25:10 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/util/WebApiUtilTest.java

                // Test with very long message
                StringBuilder longMessage = new StringBuilder();
                for (int i = 0; i < 1000; i++) {
                    longMessage.append("This is a very long error message. ");
                }
                WebApiUtil.setError(500, longMessage.toString());
    
                // Test with special characters in message
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 17.1K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb1/ServerMessageBlock.java

         * Checks if Unicode encoding is forced for this message
         * @return the forceUnicode
         */
        public boolean isForceUnicode() {
            return this.forceUnicode;
        }
    
        /**
         * Gets the SMB message flags
         * @return the flags
         */
        public final byte getFlags() {
            return this.flags;
        }
    
        /**
         * Sets the SMB message flags
         * @param flags
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 38.9K bytes
    - Viewed (0)
  6. compat/maven-compat/src/test/java/org/apache/maven/project/AbstractMavenProjectTestCase.java

                    StringBuilder message = new StringBuilder("In: " + pom + "\n\n");
                    for (ModelProblem problem : modelBuildingException.getProblems()) {
                        message.append(problem).append("\n");
                    }
                    System.out.println(message);
                    fail(message.toString());
                }
    
                throw e;
            }
        }
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jun 06 20:01:00 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  7. src/main/java/jcifs/dcerpc/msrpc/lsarpc.java

                        }
                        this.names[_i].decode(_src);
                    }
                }
            }
        }
    
        /**
         * LSA close handle message.
         */
        public static class LsarClose extends DcerpcMessage {
    
            @Override
            public int getOpnum() {
                return 0x00;
            }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 44.5K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/SmbUnsupportedOperationException.java

        /**
         * Constructs a new SmbUnsupportedOperationException with a default message
         */
        public SmbUnsupportedOperationException() {
            super("Operation is not supported with the negotiated capabilities");
        }
    
        /**
         * Constructs a new SmbUnsupportedOperationException with the specified message
         * @param msg the detail message
         */
        public SmbUnsupportedOperationException(final String msg) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  9. android/guava-testlib/src/com/google/common/collect/testing/AbstractTester.java

       * TestCase#assertNull(String, Object)}.
       *
       * <p>The {@link TestCase} version (which is from JUnit 3) produces a failure message that does
       * not include the value of the object.
       *
       * @since 33.4.0
       */
      public static void assertNull(String message, Object object) {
        assertEquals(message, null, object);
      }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 3.3K bytes
    - Viewed (0)
  10. cmd/sts-errors.go

    	stsErrorResponse := STSErrorResponse{}
    	stsErrorResponse.Error.Code = stsErr.Code
    	stsErrorResponse.RequestID = w.Header().Get(xhttp.AmzRequestID)
    	stsErrorResponse.Error.Message = stsErr.Description
    	if err != nil {
    		stsErrorResponse.Error.Message = err.Error()
    	}
    	switch errCode {
    	case ErrSTSInternalError, ErrSTSUpstreamError:
    		stsLogIf(ctx, err, logger.ErrorKind)
    	}
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Wed Feb 05 00:29:41 UTC 2025
    - 6K bytes
    - Viewed (0)
Back to top