Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 93 for Souther (0.17 sec)

  1. src/main/java/jcifs/smb1/util/DES.java

    // 2. Redistributions in binary form must reproduce the above copyright
    //    notice, this list of conditions and the following disclaimer in the
    //    documentation and/or other materials provided with the distribution.
    //
    // THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
    // ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 21.4K bytes
    - Viewed (0)
  2. src/main/webapp/js/bootstrap.min.js.map

    complexity\n  static _dataApiKeydownHandler(event) {\n    // If not input/textarea:\n    //  - And not a key in REGEXP_KEYDOWN => not a dropdown command\n    // If input/textarea:\n    //  - If space key => not a dropdown command\n    //  - If key is other than escape\n    //    - If key is not up or down => not a dropdown command\n    //    - If trigger inside the menu => not a dropdown command\n    if (/input|textarea/i.test(event.target.tagName)\n      ? event.which === SPACE_KEYCODE || event.which...
    Plain Text
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Jan 11 06:54:28 GMT 2020
    - 189.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/util/PrunedTag.java

                return false;
            }
            final PrunedTag other = (PrunedTag) obj;
            return StringUtils.compare(tag, other.tag) == 0 //
                    && StringUtils.compare(css, other.css) == 0 //
                    && StringUtils.compare(id, other.id) == 0 //
                    && StringUtils.compare(attrName, other.attrName) == 0 //
                    && StringUtils.compare(attrValue, other.attrValue) == 0;
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/query/StoredLtrQueryBuilder.java

        }
    
        @Override
        protected boolean doEquals(final StoredLtrQueryBuilder other) {
            return Objects.equals(modelName, other.modelName) && Objects.equals(featureSetName, other.featureSetName)
                    && Objects.equals(storeName, other.storeName) && Objects.equals(params, other.params)
                    && Objects.equals(activeFeatures, other.activeFeatures);
        }
    
        @Override
        protected int doHashCode() {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.8K bytes
    - Viewed (0)
  5. LICENSE

          other commercial damages or losses), even if such Contributor
          has been advised of the possibility of such damages.
    
       9. Accepting Warranty or Additional Liability. While redistributing
          the Work or Derivative Works thereof, You may choose to offer,
          and charge a fee for, acceptance of support, warranty, indemnity,
          or other liability obligations and/or rights consistent with this
    Plain Text
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Tue May 08 21:35:34 GMT 2018
    - 11.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/UserAgentHelper.java

                    if (uaType == null) {
                        uaType = UserAgentType.OTHER;
                    }
                    request.setAttribute(USER_AGENT_TYPE, uaType);
                }
                return uaType;
            }).orElse(UserAgentType.OTHER);
        }
    
        public enum UserAgentType {
            IE, FIREFOX, CHROME, SAFARI, OPERA, OTHER;
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideItem.java

                return true;
            }
            if ((obj == null) || (getClass() != obj.getClass())) {
                return false;
            }
            final StemmerOverrideItem other = (StemmerOverrideItem) obj;
            if (!Objects.equals(input, other.input) || !Objects.equals(output, other.output)) {
                return false;
            }
            return true;
        }
    
        @Override
        public String toString() {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.7K bytes
    - Viewed (0)
  8. src/main/java/jcifs/dcerpc/DcerpcError.java

        static final int[] DCERPC_FAULT_CODES = {
            DCERPC_FAULT_OTHER, DCERPC_FAULT_ACCESS_DENIED, DCERPC_FAULT_CANT_PERFORM, DCERPC_FAULT_NDR, DCERPC_FAULT_INVALID_TAG,
            DCERPC_FAULT_CONTEXT_MISMATCH, DCERPC_FAULT_OP_RNG_ERROR, DCERPC_FAULT_UNK_IF, DCERPC_FAULT_PROTO_ERROR
        };
    
        static final String[] DCERPC_FAULT_MESSAGES = {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2.2K bytes
    - Viewed (1)
  9. src/main/java/org/codelibs/core/lang/ClassLoaderUtil.java

        }
    
        /**
         * クラスローダ<code>other</code>がクラスローダ<code>cl</code>の祖先なら<code>true</code>
         * を返します。
         *
         * @param cl
         *            クラスローダ
         * @param other
         *            クラスローダ
         * @return クラスローダ<code>other</code>がクラスローダ<code>cl</code>の祖先なら
         *         <code>true</code>
         */
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 8.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/dict/protwords/ProtwordsItem.java

            if (this == obj) {
                return true;
            }
            if ((obj == null) || (getClass() != obj.getClass())) {
                return false;
            }
            final ProtwordsItem other = (ProtwordsItem) obj;
            if (!input.equals(other.input)) {
                return false;
            }
            return true;
        }
    
        @Override
        public String toString() {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.4K bytes
    - Viewed (0)
Back to top