Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 244 for lang_es (0.2 sec)

  1. src/main/resources/fess_indices/_aws/fess/doc.json

          {
            "lang_en": {
              "match": "*_en-ie",
              "mapping": {
                "type": "text",
                "analyzer": "irish_analyzer"
              }
            }
          },
          {
            "lang_es": {
              "match": "*_es",
              "mapping": {
                "type": "text",
                "analyzer": "spanish_analyzer"
              }
            }
          },
          {
            "lang_et": {
    Json
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Tue Aug 15 11:50:35 GMT 2023
    - 11.7K bytes
    - Viewed (0)
  2. src/main/resources/fess_indices/_cloud/fess/doc.json

          {
            "lang_en": {
              "match": "*_en-ie",
              "mapping": {
                "type": "text",
                "analyzer": "irish_analyzer"
              }
            }
          },
          {
            "lang_es": {
              "match": "*_es",
              "mapping": {
                "type": "text",
                "analyzer": "spanish_analyzer"
              }
            }
          },
          {
            "lang_et": {
    Json
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Tue Aug 15 11:50:35 GMT 2023
    - 11.7K bytes
    - Viewed (0)
  3. src/main/resources/fess_indices/fess/doc.json

          {
            "lang_en": {
              "match": "*_en-ie",
              "mapping": {
                "type": "text",
                "analyzer": "irish_analyzer"
              }
            }
          },
          {
            "lang_es": {
              "match": "*_es",
              "mapping": {
                "type": "text",
                "analyzer": "spanish_analyzer"
              }
            }
          },
          {
            "lang_et": {
    Json
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Tue Aug 15 11:50:35 GMT 2023
    - 11.8K bytes
    - Viewed (0)
  4. docs/fr/docs/contributing.md

    * Ajoutez une seule pull request par page traduite. Il sera ainsi beaucoup plus facile pour les autres de l'examiner.
    
    Pour les langues que je ne parle pas, je vais attendre plusieurs autres reviews de la traduction avant de merge.
    
    Plain Text
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Thu Jul 27 18:51:07 GMT 2023
    - 16.3K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/profile/JdkVersionProfileActivator.java

                } else if (token.endsWith(")")) {
                    ranges.add(new RangeValue(token.replace(")", ""), false));
                } else if (token.isEmpty()) {
                    ranges.add(new RangeValue("", false));
                }
            }
            if (ranges.size() < 2) {
                ranges.add(new RangeValue("99999999", false));
            }
            return ranges;
        }
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 6.2K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/RangeMap.java

    import javax.annotation.CheckForNull;
    
    /**
     * A mapping from disjoint nonempty ranges to non-null values. Queries look up the value associated
     * with the range (if any) that contains a specified key.
     *
     * <p>In contrast to {@link RangeSet}, no "coalescing" is done of {@linkplain
     * Range#isConnected(Range) connected} ranges, even if they are mapped to the same value.
     *
     * @author Louis Wasserman
     * @since 14.0
     */
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 22 21:19:52 GMT 2024
    - 6.5K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/internal/idn/IdnaMappingTable.kt

     *
     * b0b1s7 is the section prefix. If a section is omitted, that means its ranges data exactly matches
     * that of the preceding section.
     *
     * b2b3s2 is the offset into the ranges data. It is shifted by 2 because ranges are 4-byte aligned.
     *
     * Mappings Data (4,719 bytes)
     * ===========================
     *
     * This is UTF-8 character data. It is indexed into by b2b3 in the ranges dataset.
     *
     * Mappings may overlap.
     *
     * ASCII-Only
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Tue Apr 02 11:39:58 GMT 2024
    - 9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/SearchHelper.java

                                langSet.add(normalizeLang);
                            }
                        }
                    }
                }
                if (langSet.size() > 1 && langSet.contains(Constants.ALL_LANGUAGES)) {
                    return new String[] { Constants.ALL_LANGUAGES };
                }
                langSet.remove(Constants.ALL_LANGUAGES);
                return langSet.toArray(new String[langSet.size()]);
            }
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.8K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/collect/TreeRangeMapTest.java

        for (Range<Integer> range : RANGES) {
          Map<Integer, Integer> model = Maps.newHashMap();
          putModel(model, range, 1);
          RangeMap<Integer, Integer> test = TreeRangeMap.create();
          test.put(range, 1);
          verify(model, test);
        }
      }
    
      public void testAllRangePairs() {
        for (Range<Integer> range1 : RANGES) {
          for (Range<Integer> range2 : RANGES) {
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Feb 22 20:09:59 GMT 2024
    - 33.2K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/AbstractRangeSet.java

      public boolean enclosesAll(Iterable<Range<C>> ranges) {
        for (Range<C> range : ranges) {
          if (!encloses(range)) {
            return false;
          }
        }
        return true;
      }
    
      @Override
      public void addAll(RangeSet<C> other) {
        addAll(other.asRanges());
      }
    
      @Override
      public void addAll(Iterable<Range<C>> ranges) {
        for (Range<C> range : ranges) {
          add(range);
        }
      }
    
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 22 21:19:52 GMT 2024
    - 2.9K bytes
    - Viewed (0)
Back to top