Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 44 for Mathys (0.14 sec)

  1. src/main/java/org/codelibs/fess/app/service/FileConfigService.java

                cb.query().setName_Wildcard(wrapQuery(fileConfigPager.name));
            }
            if (StringUtil.isNotBlank(fileConfigPager.paths)) {
                cb.query().setPaths_Wildcard(wrapQuery(fileConfigPager.paths));
            }
            if (StringUtil.isNotBlank(fileConfigPager.description)) {
                if (fileConfigPager.description.startsWith("*")) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/WebFsIndexHelper.java

                    } catch (final Exception e) {
                        logger.warn("Failed to delete url filters for {}", sid);
                    }
                }
    
                // set paths
                split(pathsStr, "[\r\n]").of(stream -> stream.filter(StringUtil::isNotBlank).map(String::trim).distinct().forEach(urlValue -> {
                    if (!urlValue.startsWith("#")) {
                        final String u;
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 22.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/taglib/FessFunctions.java

    package org.codelibs.fess.taglib;
    
    import static org.codelibs.core.stream.StreamUtil.stream;
    
    import java.io.File;
    import java.math.RoundingMode;
    import java.nio.file.Files;
    import java.nio.file.Path;
    import java.nio.file.Paths;
    import java.text.DecimalFormat;
    import java.text.NumberFormat;
    import java.text.SimpleDateFormat;
    import java.time.LocalDateTime;
    import java.time.ZonedDateTime;
    import java.time.format.DateTimeFormatter;
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/config/exentity/FileConfig.java

                if (StringUtil.isNotBlank(getIncludedDocPaths())) {
                    final List<Pattern> pathPatterList = new ArrayList<>();
                    final String[] paths = getIncludedDocPaths().split("[\r\n]");
                    for (final String u : paths) {
                        final String v = systemHelper.normalizeConfigPath(u);
                        if (StringUtil.isNotBlank(v)) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.8K bytes
    - Viewed (0)
  5. src/main/resources/fess_label.properties

    labels.file_crawling_configuration=File Crawling
    labels.file_crawling_title_details=File Crawling Configuration
    labels.included_paths=Included Paths For Crawling
    labels.excluded_paths=Excluded Paths For Crawling
    labels.included_doc_paths=Included Paths For Indexing
    labels.excluded_doc_paths=Excluded Paths For Indexing
    labels.config_parameter=Config Parameters
    labels.max_access_count=Max Access Count
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 40.7K bytes
    - Viewed (1)
  6. src/main/resources/fess_label_en.properties

    labels.file_crawling_configuration=File Crawling
    labels.file_crawling_title_details=File Crawling Configuration
    labels.included_paths=Included Paths For Crawling
    labels.excluded_paths=Excluded Paths For Crawling
    labels.included_doc_paths=Included Paths For Indexing
    labels.excluded_doc_paths=Excluded Paths For Indexing
    labels.config_parameter=Config Parameters
    labels.max_access_count=Max Access Count
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 40.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/api/admin/fileconfig/SearchBody.java

    package org.codelibs.fess.app.web.api.admin.fileconfig;
    
    import org.codelibs.fess.app.web.api.admin.BaseSearchBody;
    
    public class SearchBody extends BaseSearchBody {
    
        public String name;
    
        public String paths;
    
        public String description;
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 873 bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/view/admin/labeltype/admin_labeltype_details.jsp

                                            <td>${f:br(f:h(includedPaths))}<la:hidden
                                                    property="includedPaths"/></td>
                                        </tr>
                                        <tr>
                                            <th><la:message key="labels.labeltype_excluded_paths"/></th>
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 13 07:47:04 GMT 2020
    - 5.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/config/cbean/ca/bs/BsFileConfigCA.java

        }
    
        public void setPaths_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda) {
            setPaths_Terms("paths", opLambda, null);
        }
    
        public void setPaths_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda, OperatorCall<BsFileConfigCA> aggsLambda) {
            setPaths_Terms("paths", opLambda, aggsLambda);
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 144.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/maintenance/AdminMaintenanceAction.java

     */
    package org.codelibs.fess.app.web.admin.maintenance;
    
    import java.io.IOException;
    import java.net.InetAddress;
    import java.nio.file.Files;
    import java.nio.file.Path;
    import java.nio.file.Paths;
    import java.text.SimpleDateFormat;
    import java.util.Arrays;
    import java.util.Date;
    import java.util.Properties;
    import java.util.stream.Stream;
    import java.util.zip.ZipEntry;
    import java.util.zip.ZipOutputStream;
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 14K bytes
    - Viewed (0)
Back to top