Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 518 for Lesage (0.19 sec)

  1. src/main/java/jcifs/ntlmssp/NtlmFlags.java

        /**
         * Requests the usage of the LMOWF
         */
        public static final int NTLMSSP_REQUEST_NON_NT_SESSION_KEY = 0x00400000;
    
        /**
         * Sent by the server in the Type 2 message to indicate that it is
         * including a Target Information block in the message. The Target
         * Information block is used in the calculation of the NTLMv2 response.
         */
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/base/PreconditionsTest.java

         * even entire message) that simultaneously:
         *
         * - _shouldn't_ be null, so we don't annotate it with @Nullable
         *
         * - _can_ be null without causing a runtime failure (because we don't want the interesting
         *   details of precondition failure to be hidden by an exception we throw about an unexpectedly
         *   null _failure message_)
         *
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Fri Feb 09 15:49:48 GMT 2024
    - 19.8K bytes
    - Viewed (0)
  3. guava/src/com/google/common/cache/CacheLoader.java

       *
       * @since 11.0
       */
      public static final class InvalidCacheLoadException extends RuntimeException {
        public InvalidCacheLoadException(String message) {
          super(message);
        }
      }
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Mon Dec 19 20:20:14 GMT 2022
    - 9.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        /** The key of the message: {item} may not be null. */
        public static final String CONSTRAINTS_NotNull_MESSAGE = "{constraints.NotNull.message}";
    
        /** The key of the message: {item} must be null. */
        public static final String CONSTRAINTS_Null_MESSAGE = "{constraints.Null.message}";
    
        /** The key of the message: {item} must be in the past. */
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 119.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/log/Logger.java

         * メッセージオブジェクトの文字列表現を返します。
         *
         * @param message
         *            メッセージオブジェクト
         * @return メッセージオブジェクトの文字列表現
         */
        protected static String toString(final Object message) {
            if (message == null) {
                return "null";
            }
            if (message instanceof String) {
                return (String) message;
            }
            return message.toString();
        }
    
        /**
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 13.2K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/log/JclLoggerAdapter.java

            logger.error(message, t);
        }
    
        @Override
        public boolean isWarnEnabled() {
            return logger.isWarnEnabled();
        }
    
        @Override
        public void warn(final String message) {
            logger.warn(message);
        }
    
        @Override
        public void warn(final String message, final Throwable t) {
            logger.warn(message, t);
        }
    
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 2.6K bytes
    - Viewed (0)
  7. maven-compat/src/main/java/org/apache/maven/artifact/metadata/ArtifactMetadataRetrievalException.java

        }
    
        /**
         * @param message a message
         * @param cause a cause
         * @deprecated use {@link #ArtifactMetadataRetrievalException(String, Throwable, Artifact)}
         */
        @Deprecated
        public ArtifactMetadataRetrievalException(String message, Throwable cause) {
            super(message, cause, null);
        }
    
        public ArtifactMetadataRetrievalException(String message, Throwable cause, Artifact artifact) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Jun 15 14:24:56 GMT 2023
    - 2.1K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/plugin/PluginContainerException.java

                MojoDescriptor mojoDescriptor, ClassRealm pluginRealm, String message, Throwable e) {
            super(mojoDescriptor, message, e);
    
            this.pluginRealm = pluginRealm;
        }
    
        public PluginContainerException(
                MojoDescriptor mojoDescriptor, ClassRealm pluginRealm, String message, ComponentLookupException e) {
            super(mojoDescriptor, message, e);
    
            this.pluginRealm = pluginRealm;
        }
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Jan 10 12:55:54 GMT 2024
    - 3.2K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/ntlmssp/Type1Message.java

        }
    
        /**
         * Creates a Type-1 message using default values from the current
         * environment.
         */
        public Type1Message() {
            this(getDefaultFlags(), getDefaultDomain(), getDefaultWorkstation());
        }
    
        /**
         * Creates a Type-1 message with the specified parameters.
         *
         * @param flags The flags to apply to this message.
         * @param suppliedDomain The supplied authentication domain.
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 8K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/ntlmssp/Type3Message.java

        }
    
        /**
         * Creates a Type-3 message using default values from the current
         * environment.
         */
        public Type3Message() {
            setFlags(getDefaultFlags());
            setDomain(getDefaultDomain());
            setUser(getDefaultUser());
            setWorkstation(getDefaultWorkstation());
        }
    
        /**
         * Creates a Type-3 message in response to the given Type-2 message
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 22.9K bytes
    - Viewed (0)
Back to top