Search Options

Results per page
Sort
Preferred Languages
Advance

Results 331 - 340 of 630 for cong (0.02 sec)

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

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.exception;
    
    public class PluginException extends FessSystemException {
    
        private static final long serialVersionUID = 1L;
    
        public PluginException(final String message, final Throwable cause) {
            super(message, cause);
        }
    
        public PluginException(final String message) {
            super(message);
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 969 bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/exception/ThemeException.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.exception;
    
    public class ThemeException extends FessSystemException {
    
        private static final long serialVersionUID = 1L;
    
        public ThemeException(final String message, final Throwable cause) {
            super(message, cause);
        }
    
        public ThemeException(final String message) {
            super(message);
        }
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 966 bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/exception/ThumbnailGenerationException.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.exception;
    
    public class ThumbnailGenerationException extends FessSystemException {
    
        private static final long serialVersionUID = 1L;
    
        public ThumbnailGenerationException(final String message, final Exception cause) {
            super(message, cause);
        }
    
        public ThumbnailGenerationException(final String message) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1021 bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/exception/UnsupportedEncodingRuntimeException.java

    import java.io.UnsupportedEncodingException;
    
    /**
     * @author shinsuke
     *
     */
    public class UnsupportedEncodingRuntimeException extends ClRuntimeException {
    
        private static final long serialVersionUID = 1L;
    
        public UnsupportedEncodingRuntimeException(final UnsupportedEncodingException cause) {
            super("ECL0105", new Object[] { cause.getMessage() }, cause);
        }
    
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 1K bytes
    - Viewed (0)
  5. docs/security/README.md

    Further any secret key (apart from the KMS-generated ones) is 256 bits long. The KMS-generated keys may be 256 bits but this depends on the KMS capabilities and configuration.
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Sat Feb 12 00:51:25 UTC 2022
    - 13.8K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/ResponseBody.kt

      abstract fun contentType(): MediaType?
    
      /**
       * Returns the number of bytes in that will returned by [bytes], or [byteStream], or -1 if
       * unknown.
       */
      abstract fun contentLength(): Long
    
      fun byteStream(): InputStream = source().inputStream()
    
      abstract fun source(): BufferedSource
    
      /**
       * Returns the response as a byte array.
       *
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  7. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/BaseParser.java

            } else if (context.systemProperties.get("maven.conf") != null) {
                mavenConf = context.installationDirectory.resolve(context.systemProperties.get("maven.conf"));
            } else if (context.systemProperties.get(MAVEN_HOME) != null) {
                mavenConf = context.installationDirectory
                        .resolve(context.systemProperties.get(MAVEN_HOME))
                        .resolve("conf");
            } else {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/exception/InvalidAccessTokenException.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.exception;
    
    public class InvalidAccessTokenException extends FessSystemException {
    
        private static final long serialVersionUID = 1L;
    
        private final String type;
    
        public InvalidAccessTokenException(final String type, final String message) {
            super(message);
            this.type = type;
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1016 bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/exception/SearchQueryException.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.exception;
    
    public class SearchQueryException extends FessSystemException {
    
        private static final long serialVersionUID = 1L;
    
        public SearchQueryException(final String message, final Throwable cause) {
            super(message, cause);
        }
    
        public SearchQueryException(final String message) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/collect/Derived.java

    /** Simple derived class to verify that we handle generics correctly. */
    @GwtCompatible
    class Derived extends Base {
      public Derived(String s) {
        super(s);
      }
    
      private static final long serialVersionUID = 0;
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Oct 03 22:29:45 UTC 2023
    - 908 bytes
    - Viewed (0)
Back to top