Search Options

Results per page
Sort
Preferred Languages
Advance

Results 351 - 360 of 2,700 for minval (0.08 sec)

  1. src/main/java/org/codelibs/fess/helper/PluginHelper.java

        }
    
        public Artifact getArtifactFromFileName(final ArtifactType artifactType, final String filename, final String url) {
            final String baseName = StringUtils.removeEndIgnoreCase(filename, ".jar");
            final List<String> nameList = new ArrayList<>();
            final List<String> versionList = new ArrayList<>();
            boolean isName = true;
            for (final String value : baseName.split("-")) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Oct 24 01:47:10 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

            return processFieldConfigs(dataMap, fieldConfigs);
        }
    
        protected void putResultDataContent(final Map<String, Object> dataMap, final ResponseData responseData, final FessConfig fessConfig,
                final CrawlingConfig crawlingConfig, final DocumentHelper documentHelper, final String body, final String fileName) {
            final String content = documentHelper.getContent(crawlingConfig, responseData, body, dataMap);
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Oct 24 13:01:38 UTC 2024
    - 42.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java

            protected final long expiry;
    
            protected long count;
    
            protected final int maxPurgeSize;
    
            protected final List<Path> deletedFileList = new ArrayList<>();
    
            protected final Path basePath;
    
            protected final String imageExtention;
    
            protected final SearchEngineClient searchEngineClient;
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:20:39 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/netbios/NbtException.java

        public static final int ACT_ERR = 0x6;
        public static final int CFT_ERR = 0x7;
    
        // session service error codes
        public static final int CONNECTION_REFUSED = -1;
        public static final int NOT_LISTENING_CALLED = 0x80;
        public static final int NOT_LISTENING_CALLING = 0x81;
        public static final int CALLED_NOT_PRESENT = 0x82;
        public static final int NO_RESOURCES = 0x83;
        public static final int UNSPECIFIED = 0x8F;
    
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/service/FessAppService.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.service;
    
    public abstract class FessAppService {
    
        protected static String wrapQuery(final String query) {
            final StringBuilder sb = new StringBuilder();
            if (!query.startsWith("*")) {
                sb.append("*");
            }
            sb.append(query);
            if (!query.endsWith("*")) {
                sb.append("*");
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/crypto/CachedCipher.java

            return encrypted;
        }
    
        public byte[] encrypto(final byte[] data, final Key key) {
            final Cipher cipher = pollEncryptoCipher(key);
            byte[] encrypted;
            try {
                encrypted = cipher.doFinal(data);
            } catch (final IllegalBlockSizeException e) {
                throw new IllegalBlockSizeRuntimeException(e);
            } catch (final BadPaddingException e) {
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/query/TermQueryCommand.java

                final float boost, final String field, final String text) {
            context.addFieldLog(field, text);
            context.addHighlightedQuery(text);
            return QueryBuilders.termQuery(field, text).boost(boost);
        }
    
        protected QueryBuilder convertWildcardQuery(final FessConfig fessConfig, final QueryContext context, final TermQuery termQuery,
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Oct 12 01:54:15 UTC 2024
    - 10K bytes
    - Viewed (0)
  8. compat/maven-artifact/src/main/java/org/apache/maven/artifact/repository/Authentication.java

            return username;
        }
    
        /**
         * Set username used to access the repository.
         *
         * @param userName the username used to access repository
         */
        public void setUsername(final String userName) {
            this.username = userName;
        }
    
        /**
         * Get the passphrase of the private key file. The passphrase is used only when host/protocol supports
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/query/QueryFieldConfig.java

    public class QueryFieldConfig {
    
        private static final Logger logger = LogManager.getLogger(QueryFieldConfig.class);
    
        public static final String SCORE_FIELD = "score";
    
        public static final String DOC_SCORE_FIELD = "_score";
    
        public static final String SITE_FIELD = "site";
    
        public static final String INURL_FIELD = "inurl";
    
        protected static final String SCORE_SORT_VALUE = "score";
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Mon Jul 22 04:30:56 UTC 2024
    - 16K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/job/ScriptExecutorJob.java

                jobHelper.unregister(scheduledJob);
                return;
            }
    
            final JobLog jobLog = new JobLog(scheduledJob);
            final String scriptType = scheduledJob.getScriptType();
            final String script = scheduledJob.getScriptData();
    
            final JobExecutor jobExecutor = ComponentUtil.getJobExecutor(scriptType);
            if (jobExecutor == null) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top