Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 60 for qmsg (0.63 sec)

  1. src/main/java/jcifs/util/transport/ConnectionTimeoutException.java

        public ConnectionTimeoutException () {}
    
    
        /**
         * @param msg
         */
        public ConnectionTimeoutException ( String msg ) {
            super(msg);
        }
    
    
        /**
         * @param rootCause
         */
        public ConnectionTimeoutException ( Throwable rootCause ) {
            super(rootCause);
        }
    
    
        /**
         * @param msg
         * @param rootCause
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.4K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/internal/aether/LoggingRepositoryListener.java

            }
    
            String msg = "";
            if (exception != null) {
                msg = ": " + exception.getMessage();
            }
    
            if (logger.isDebugEnabled()) {
                logger.warn("The metadata {} {}{}", metadata, errorType, msg, exception);
            } else {
                logger.warn("The metadata {} {}{}", metadata, errorType, msg);
            }
        }
    
        @Override
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Sep 22 09:07:17 GMT 2023
    - 3.7K bytes
    - Viewed (0)
  3. src/main/java/jcifs/http/NtlmSsp.java

                throws IOException {
            String msg = req.getHeader("Authorization");
            if ( msg != null && msg.startsWith("NTLM ") ) {
                byte[] src = Base64.decode(msg.substring(5));
                if ( src[ 8 ] == 1 ) {
                    Type1Message type1 = new Type1Message(src);
                    Type2Message type2 = new Type2Message(tc, type1, challenge, null);
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 4.7K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/net/PercentEscaperTest.java

       */
      public void testBadArguments_badchars() {
        String msg =
            "Alphanumeric characters are always 'safe' " + "and should not be explicitly specified";
        try {
          new PercentEscaper("-+#abc.!", false);
          fail(msg);
        } catch (IllegalArgumentException expected) {
          assertThat(expected).hasMessageThat().isEqualTo(msg);
        }
      }
    
      public void testBadArguments_plusforspace() {
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Mon Oct 10 19:45:10 GMT 2022
    - 5.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/config/allcommon/EsSqlClause.java

        }
    
        @Override
        public void fetchFirst(int fetchSize) {
            _fetchScopeEffective = true;
            if (fetchSize < 0) {
                String msg = "Argument[fetchSize] should be plus: " + fetchSize;
                throw new IllegalArgumentException(msg);
            }
            _fetchStartIndex = 0;
            _fetchSize = fetchSize;
            _fetchPageNumber = 1;
            doClearFetchPageClause();
            doFetchFirst();
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/user/bsbhv/BsRoleBhv.java

                return updateEntity(source, result);
            } catch (InstantiationException | IllegalAccessException e) {
                final String msg = "Cannot create a new instance: " + entityType.getName();
                throw new IllegalBehaviorStateException(msg, e);
            }
        }
    
        protected <RESULT extends Role> RESULT updateEntity(Map<String, Object> source, RESULT result) {
            return result;
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 8.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/config/bsbhv/BsCrawlingInfoBhv.java

                return updateEntity(source, result);
            } catch (InstantiationException | IllegalAccessException e) {
                final String msg = "Cannot create a new instance: " + entityType.getName();
                throw new IllegalBehaviorStateException(msg, e);
            }
        }
    
        protected <RESULT extends CrawlingInfo> RESULT updateEntity(Map<String, Object> source, RESULT result) {
            return result;
        }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/config/bsbhv/BsJobLogBhv.java

                return updateEntity(source, result);
            } catch (InstantiationException | IllegalAccessException e) {
                final String msg = "Cannot create a new instance: " + entityType.getName();
                throw new IllegalBehaviorStateException(msg, e);
            }
        }
    
        protected <RESULT extends JobLog> RESULT updateEntity(Map<String, Object> source, RESULT result) {
            return result;
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.5K bytes
    - Viewed (0)
  9. maven-compat/src/main/java/org/apache/maven/artifact/resolver/DebugResolutionListener.java

            String msg = indent + artifact;
            msg += " (";
            if (replacement.getVersion() != null) {
                msg += "applying version: " + replacement.getVersion() + ";";
            }
            if (replacement.getScope() != null) {
                msg += "applying artifactScope: " + replacement.getScope();
            }
            msg += ")";
            logger.debug(msg);
        }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 5.6K bytes
    - Viewed (0)
  10. src/main/java/jcifs/util/transport/RequestTimeoutException.java

            super();
        }
    
    
        /**
         * @param msg
         * @param rootCause
         */
        public RequestTimeoutException ( String msg, Throwable rootCause ) {
            super(msg, rootCause);
        }
    
    
        /**
         * @param msg
         */
        public RequestTimeoutException ( String msg ) {
            super(msg);
        }
    
    
        /**
         * @param rootCause
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.5K bytes
    - Viewed (0)
Back to top