Search Options

Results per page
Sort
Preferred Languages
Advance

Results 541 - 550 of 2,066 for minval (0.09 sec)

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

        private static final long serialVersionUID = 1L;
    
        private final int statusCode;
    
        public int getStatusCode() {
            return statusCode;
        }
    
        public WebApiException(final int statusCode, final String message, final Throwable cause) {
            super(message, cause);
            this.statusCode = statusCode;
        }
    
        public WebApiException(final int statusCode, final String message) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/exception/FileAccessException.java

        private static final long serialVersionUID = 1L;
    
        public FileAccessException(final String messageCode, final Object[] args, final Throwable cause) {
            super(messageCode, args, cause);
        }
    
        public FileAccessException(final String messageCode, final Object[] args) {
            super(messageCode, args);
        }
    
        public FileAccessException(final String messageCode, final Throwable cause) {
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/lang/FieldUtil.java

         */
        public static void set(final Field field, final Object target, final Object value) throws IllegalAccessRuntimeException {
            assertArgumentNotNull("field", field);
    
            try {
                field.set(target, value);
            } catch (final IllegalAccessException e) {
                throw new IllegalAccessRuntimeException(field.getDeclaringClass(), e);
            } catch (final IllegalArgumentException e) {
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/log/exentity/UserInfo.java

            final Map<String, Object> sourceMap = super.toSource();
            if (fields != null) {
                sourceMap.putAll(fields);
            }
            return sourceMap;
        }
    
        @Override
        protected void addFieldToSource(final Map<String, Object> sourceMap, final String field, final Object value) {
            if (value instanceof final LocalDateTime ldt) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/curl/CurlResponse.java

        public void setEncoding(final String encoding) {
            this.encoding = encoding;
        }
    
        public void setContentException(final Exception e) {
            contentException = e;
        }
    
        public Exception getContentException() {
            return contentException;
        }
    
        public void setHeaders(final Map<String, List<String>> headers) {
            if (headers != null) {
    Registered: Thu Oct 31 02:32:13 UTC 2024
    - Last Modified: Mon Nov 14 21:05:19 UTC 2022
    - 4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/api/admin/relatedcontent/ApiAdminRelatedcontentAction.java

        // POST /api/admin/relatedcontent/settings
        @Execute
        public JsonResponse<ApiResult> settings(final SearchBody body) {
            validateApi(body, messages -> {});
            final RelatedContentPager pager = copyBeanToNewBean(body, RelatedContentPager.class);
            final List<RelatedContent> list = relatedContentService.getRelatedContentList(pager);
            return asJson(
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/beans/impl/ConstructorDescImpl.java

        /** このメソッドを所有するクラスの{@link BeanDesc} */
        protected final BeanDesc beanDesc;
    
        /** コンストラクタ */
        protected final Constructor<?> constructor;
    
        /** コンストラクタの引数型の配列 */
        protected final Class<?>[] parameterTypes;
    
        /** パラメータ化された引数型の情報 */
        protected final ParameterizedClassDesc[] parameterizedClassDescs;
    
        /**
         * インスタンスを構築します。
         *
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/sso/SsoManager.java

    import org.lastaflute.web.response.ActionResponse;
    
    public class SsoManager {
        private static final Logger logger = LogManager.getLogger(SsoManager.class);
    
        protected final List<SsoAuthenticator> authenticatorList = new ArrayList<>();
    
        public boolean available() {
            final String ssoType = getSsoType();
            if (logger.isDebugEnabled()) {
                logger.debug("sso.type: {}", ssoType);
            }
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. samples/guide/src/main/java/okhttp3/recipes/CacheResponse.java

    package okhttp3.recipes;
    
    import java.io.File;
    import java.io.IOException;
    import okhttp3.Cache;
    import okhttp3.OkHttpClient;
    import okhttp3.Request;
    import okhttp3.Response;
    
    public final class CacheResponse {
      private final OkHttpClient client;
    
      public CacheResponse(File cacheDirectory) throws Exception {
        int cacheSize = 10 * 1024 * 1024; // 10 MiB
        Cache cache = new Cache(cacheDirectory, cacheSize);
    
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sun May 22 01:29:42 UTC 2016
    - 2.4K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/services/PathSource.java

    import java.io.IOException;
    import java.io.InputStream;
    import java.nio.file.Files;
    import java.nio.file.Path;
    import java.util.Objects;
    
    class PathSource implements ModelSource {
    
        private final Path path;
        private final String location;
    
        PathSource(Path path) {
            this(path, null);
        }
    
        PathSource(Path path, String location) {
            this.path = path.normalize();
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Wed Sep 18 11:42:07 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top