Search Options

Results per page
Sort
Preferred Languages
Advance

Results 271 - 280 of 738 for failed (0.04 sec)

  1. LICENSE

    L106: L107: (d) If the Work includes a "NOTICE" text file as part of its L108: distribution, then any Derivative Works that You distribute must L109: include a readable copy of the attribution notices contained L110: within such NOTICE file, excluding those notices that do not L111: pertain to any part of the Derivative Works, in at least one L112: of the following places: within a NOTICE text file distributed L113: as part of the Derivative Works;...
    github.com/codelibs/fess/LICENSE
    Tue May 08 21:35:34 UTC 2018
      11.1K bytes
  2. common-bin.xml

    L108: <fileSet> L109: <directory>src/main/assemblies/files</directory> L110: <outputDirectory>fess-${project.version}/es/data</outputDirectory> L111: <excludes> L112: <exclude>*</exclude> L113: </excludes> L114: <filtered>false</filtered> L115: </fileSet> L116: </fileSets> L117: <files> L118: <file> L119: <source>README.md</source> L120: <outputDirectory>fess-${project.version}</outputDirectory> L121: </file> L122: <file> L123: <source>LICENSE</source> L124: <outputDirec...
    github.com/codelibs/fess/src/main/assemblies/co...
    Thu Mar 17 02:29:43 UTC 2022
      3.7K bytes
  3. packaging.properties

    like in rpm/packaging.properties and deb/packaging.properties. L5: L6:# Environment file L7:packaging.env.file= L8: L9:# Default configuration directory and file to use in bin/plugin script L10: L11:# Default values for min/max heap memory allocated to fess java process L12:packaging.fess.heap.min=256m L13:packaging.fess.heap.max=1g L14: L15:# Specifies the maximum file descriptor number L16:packaging.os.max.open.files=65535 L17: L18:# Maximum number of VMA (Virtual Memory Areas) a process can own ...
    github.com/codelibs/fess/src/packaging/common/p...
    Thu Dec 10 01:24:02 UTC 2015
      797 bytes
  4. FacetResponse.java

    Map<String, Long> queryCountMap = new LinkedHashMap<>(); L33: L34: protected List<Field> fieldList = new ArrayList<>(); L35: L36: public FacetResponse(final Aggregations aggregations) { L37: aggregations.forEach(aggregation -> { L38: if (aggregation.getName().startsWith(Constants.FACET_FIELD_PREFIX)) { L39: final Terms termFacet = (Terms) aggregation; L40: fieldList.add(new Field(termFacet)); L41: } else if (aggregation.getName().startsWith(C...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      3.3K bytes
  5. preinst

    L16:# Sets the default values for fess variables used in this script L17:FESS_USER="${packaging.fess.user}" L18:FESS_GROUP="${packaging.fess.group}" L19:FESS_USER_HOME="${packaging.fess.var.dir}" L20: L21:# Source the default env file L22:FESS_ENV_FILE="${packaging.env.file}" L23:if [ -f "$FESS_ENV_FILE" ]; then L24: . "$FESS_ENV_FILE" L25:fi L26: L27:case "$1" in L28: L29: # Debian #################################################### L30: install|upgrade) L31: L32: # Create fess group...
    github.com/codelibs/fess/src/packaging/common/s...
    Thu Dec 01 09:48:15 UTC 2016
      2.3K bytes
  6. EsAbstractConditionAggregation.java

    ======== L86: L87: protected AvgAggregationBuilder regAvgA(String name, String field) { L88: AvgAggregationBuilder builder = AggregationBuilders.avg(name).field(field); L89: regA(builder); L90: return builder; L91: } L92: L93: protected MaxAggregationBuilder regMaxA(String name, String field) { L94: MaxAggregationBuilder builder = AggregationBuilders.max(name).field(field); L95: regA(builder); L96: return builder; L97: } L98: L99: protected...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      12.4K bytes
  7. TermQueryCommand.java

    (SORT_FIELD.equals(field)) { L79: return convertSortQuery(fessConfig, context, termQuery, boost, field, text); L80: } L81: if (SITE_FIELD.equals(field)) { L82: return convertSiteQuery(fessConfig, context, termQuery, boost, field, text); L83: } L84: if (INURL_FIELD.equals(field) L85: || StringUtil.equals(field, context.getDefaultField()) && fessConfig.getIndexFieldUrl().equals(context.getDefaultField())) { L86: return convertWildcardQuery(fessConfig,...
    github.com/codelibs/fess/src/main/java/org/code...
    Sat Oct 12 01:54:15 UTC 2024
      10K bytes
  8. UserInfo.java

    void addFieldToSource(final Map<String, Object> sourceMap, final String field, final Object value) { L77: if (value instanceof final LocalDateTime ldt) { L78: final ZonedDateTime zdt = ZonedDateTime.of(ldt, ZoneId.systemDefault()); L79: super.addFieldToSource(sourceMap, field, DateTimeFormatter.ISO_INSTANT.format(zdt)); L80: } else { L81: super.addFieldToSource(sourceMap, field, value); L82: } L83: } L84: L85: @Override L86: public String...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      2.6K bytes
  9. EsAbstractEntity.java

    propertyName); // synchronize if exists, basically for user's manual call L89: } L90: L91: public void modifiedToSpecified() { L92: if (__modifiedProperties.isEmpty()) { L93: return; // basically no way when called in Framework (because called when SpecifyColumn exists) L94: } L95: __specifiedProperties = newModifiedProperties(); L96: __specifiedProperties.accept(__modifiedProperties); L97: } L98: L99: // ========================================...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      10.9K bytes
  10. CustomSize.java

    License. L15: */ L16:package org.codelibs.fess.validation; L17: L18:import static java.lang.annotation.ElementType.ANNOTATION_TYPE; L19:import static java.lang.annotation.ElementType.CONSTRUCTOR; L20:import static java.lang.annotation.ElementType.FIELD; L21:import static java.lang.annotation.ElementType.METHOD; L22:import static java.lang.annotation.ElementType.PARAMETER; L23:import static java.lang.annotation.RetentionPolicy.RUNTIME; L24: L25:import java.lang.annotation.Documented; L26:import j...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      1.8K bytes
Back to top