Search Options

Results per page
Sort
Preferred Languages
Advance

Results 421 - 430 of 2,066 for minval (0.1 sec)

  1. src/main/java/org/codelibs/fess/dict/kuromoji/KuromojiFile.java

    import org.dbflute.optional.OptionalEntity;
    
    public class KuromojiFile extends DictionaryFile<KuromojiItem> {
        private static final String KUROMOJI = "kuromoji";
    
        List<KuromojiItem> kuromojiItemList;
    
        public KuromojiFile(final String id, final String path, final Date timestamp) {
            super(id, path, timestamp);
        }
    
        @Override
        public String getType() {
            return KUROMOJI;
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/io/CopyUtil.java

         * @return コピーした文字数
         */
        public static int copy(final File in, final String encoding, final File out) {
            assertArgumentNotNull("in", in);
            assertArgumentNotEmpty("encoding", encoding);
            assertArgumentNotNull("out", out);
    
            final Reader is = ReaderUtil.create(in, encoding);
            try {
                final Writer os = WriterUtil.create(out);
                try {
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideFile.java

    public class StemmerOverrideFile extends DictionaryFile<StemmerOverrideItem> {
        private static final Logger logger = LogManager.getLogger(StemmerOverrideFile.class);
    
        private static final String STEMMER_OVERRIDE = "stemmeroverride";
    
        List<StemmerOverrideItem> stemmerOverrideItemList;
    
        public StemmerOverrideFile(final String id, final String path, final Date timestamp) {
            super(id, path, timestamp);
        }
    
        @Override
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java

            final SamlCredential samlCredential = new SamlCredential(auth);
            if (logger.isDebugEnabled()) {
                logger.debug("SamlCredential: {}", samlCredential);
            }
            return samlCredential;
        }
    
        @Override
        public void resolveCredential(final LoginCredentialResolver resolver) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/config/exentity/FileConfig.java

            final List<org.codelibs.fess.crawler.client.smb1.SmbAuthentication> smb1AuthList = new ArrayList<>();
            final List<FtpAuthentication> ftpAuthList = new ArrayList<>();
            for (final FileAuthentication fileAuth : fileAuthList) {
                if (Constants.SAMBA.equals(fileAuth.getProtocolScheme())) {
                    final SmbAuthentication smbAuth = new SmbAuthentication();
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/entity/PingResponse.java

    public class PingResponse {
        private static final String CLUSTER_NAME = "cluster_name";
        private static final String STATUS = "status";
        private static final String TIMED_OUT = "timed_out";
        private static final String NUMBER_OF_NODES = "number_of_nodes";
        private static final String NUMBER_OF_DATA_NODES = "number_of_data_nodes";
        private static final String NUMBER_OF_PENDING_TASKS = "number_of_pending_tasks";
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  7. compat/maven-embedder/src/main/java/org/apache/maven/cli/CLIManager.java

        @Deprecated
        public static final char SET_SYSTEM_PROPERTY = SET_USER_PROPERTY;
    
        public static final char OFFLINE = 'o';
    
        public static final char QUIET = 'q';
    
        public static final char VERBOSE = 'X';
    
        public static final char ERRORS = 'e';
    
        public static final char HELP = 'h';
    
        public static final char VERSION = 'v';
    
        public static final char SHOW_VERSION = 'V';
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  8. samples/guide/src/main/java/okhttp3/recipes/AsynchronousGet.java

    import okhttp3.Call;
    import okhttp3.Callback;
    import okhttp3.Headers;
    import okhttp3.OkHttpClient;
    import okhttp3.Request;
    import okhttp3.Response;
    import okhttp3.ResponseBody;
    
    public final class AsynchronousGet {
      private final OkHttpClient client = new OkHttpClient();
    
      public void run() throws Exception {
        Request request = new Request.Builder()
            .url("http://publicobject.com/helloworld.txt")
            .build();
    
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sun May 22 01:29:42 UTC 2016
    - 1.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/text/DecimalFormatSymbolsUtil.java

    import java.util.Map;
    
    import org.codelibs.core.misc.LocaleUtil;
    
    /**
     * {@link DecimalFormatSymbols}用のユーティリティクラスです。
     *
     * @author higa
     */
    public abstract class DecimalFormatSymbolsUtil {
    
        private static final Map<Locale, DecimalFormatSymbols> CACHE = newConcurrentHashMap();
    
        /**
         * {@link DecimalFormatSymbols}を返します。
         *
         * @return {@link DecimalFormatSymbols}
         */
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. api/maven-api-spi/src/main/java/org/apache/maven/api/spi/ModelParserException.java

    @Experimental
    public class ModelParserException extends MavenException {
    
        /**
         * The one-based index of the line containing the error.
         */
        private final int lineNumber;
    
        /**
         * The one-based index of the column containing the error.
         */
        private final int columnNumber;
    
        public ModelParserException() {
            this(null, null);
        }
    
        public ModelParserException(String message) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Sep 22 07:25:10 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top