Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,473 for Hong (0.33 sec)

  1. src/main/java/org/codelibs/fess/app/web/api/admin/dict/kuromoji/ApiAdminDictKuromojiAction.java

                    .status(ApiResult.Status.OK).result());
        }
    
        // GET /api/admin/dict/kuromoji/setting/{dictId}/{id}
        @Execute
        public JsonResponse<ApiResult> get$setting(final String dictId, final long id) {
            return asJson(new ApiResult.ApiConfigResponse()
                    .setting(kuromojiService.getKuromojiItem(dictId, id).map(entity -> createEditBody(entity, dictId)).orElseGet(() -> {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/api/admin/dict/mapping/ApiAdminDictMappingAction.java

                    .status(ApiResult.Status.OK).result());
        }
    
        // GET /api/admin/dict/mapping/setting/{dictId}/{id}
        @Execute
        public JsonResponse<ApiResult> get$setting(final String dictId, final long id) {
            return asJson(new ApiResult.ApiConfigResponse()
                    .setting(charMappingService.getCharMappingItem(dictId, id).map(entity -> createEditBody(entity, dictId)).orElseGet(() -> {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.2K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/primitives/BytesTest.java

        List<Short> shorts = Arrays.asList((short) 0, (short) 1, (short) 2);
        List<Integer> ints = Arrays.asList(0, 1, 2);
        List<Float> floats = Arrays.asList((float) 0, (float) 1, (float) 2);
        List<Long> longs = Arrays.asList((long) 0, (long) 1, (long) 2);
        List<Double> doubles = Arrays.asList((double) 0, (double) 1, (double) 2);
    
        assertThat(Bytes.toArray(bytes)).isEqualTo(array);
        assertThat(Bytes.toArray(shorts)).isEqualTo(array);
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Tue Feb 06 16:10:08 GMT 2024
    - 16.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/http/NtlmHttpFilter.java

        private boolean insecureBasic;
        private String realm;
    
        private CIFSContext transportContext;
        private Address[] dcList = null;
        private long dcListExpiration;
    
        private int netbiosLookupRespLimit = 3;
        private long netbiosCacheTimeout = 60 * 60 * 10;
        private static int dcListCounter;
    
    
        @Override
        public void init ( FilterConfig filterConfig ) throws ServletException {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 14.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/exception/LdapConfigurationException.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.exception;
    
    public class LdapConfigurationException extends FessSystemException {
    
        private static final long serialVersionUID = 1L;
    
        public LdapConfigurationException(final String message) {
            super(message);
        }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 878 bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/exception/InterruptedRuntimeException.java

     */
    package org.codelibs.core.exception;
    
    /**
     * Wrapped InterruptedException.
     *
     * @author shinsuke
     *
     */
    public class InterruptedRuntimeException extends RuntimeException {
    
        private static final long serialVersionUID = 1L;
    
        public InterruptedRuntimeException(final InterruptedException e) {
            super(e);
        }
    
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 947 bytes
    - Viewed (0)
  7. 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);
        }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 966 bytes
    - Viewed (0)
  8. android/guava-testlib/src/com/google/common/collect/testing/DerivedComparable.java

     *
     * @author Kevin Bourrillion
     */
    @GwtCompatible
    public class DerivedComparable extends BaseComparable {
      public DerivedComparable(String s) {
        super(s);
      }
    
      private static final long serialVersionUID = 0;
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Fri Apr 21 02:27:51 GMT 2017
    - 989 bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/exception/JobProcessingException.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.exception;
    
    public class JobProcessingException extends FessSystemException {
    
        private static final long serialVersionUID = 1L;
    
        public JobProcessingException(final Throwable e) {
            super(e);
        }
    
        public JobProcessingException(final String message, final Throwable e) {
            super(message, e);
        }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/dict/kuromoji/EditForm.java

    import org.lastaflute.web.validation.Required;
    import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
    
    public class EditForm extends CreateForm {
    
        @Required
        @ValidateTypeFailure
        public Long id;
    
        public String getDisplayId() {
            return dictId + ":" + id;
        }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 981 bytes
    - Viewed (1)
Back to top