Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for halo (0.06 sec)

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

            },
            "czech_keywords": {
              "type":       "keyword_marker",
              "keywords": ["Haló", "svět", "vyhledávání"]
            },
            "czech_stemmer": {
              "type":       "stemmer",
              "language":   "czech"
            },
            "czech_override": {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jun 14 00:36:40 UTC 2025
    - 117.3K bytes
    - Viewed (0)
  2. guava/src/com/google/common/math/LongMath.java

            if (hiLo < 0) {
              hiLo = UnsignedLongs.remainder(hiLo, m);
            }
            // hiLo < 2^63
            result += hiLo; // result < 2^64
            result = times2ToThe32Mod(result, m); // result < m < 2^63
            return plusMod(result, UnsignedLongs.remainder(aLo * aLo /* < 2^64 */, m), m);
          }
        };
    
        static boolean test(long base, long n) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Aug 29 16:20:07 UTC 2025
    - 46.8K bytes
    - Viewed (0)
  3. src/main/resources/fess_label_pl.properties

    labels.suggestWord=Sugerowane słowo
    labels.targetLabel=Etykieta
    labels.term=Termin wyszukiwania
    labels.fields=Pola
    labels.ex_q=Rozszerzone zapytanie
    labels.oldPassword=Bieżące hasło
    labels.newPassword=Nowe hasło
    labels.confirmNewPassword=Potwierdź nowe hasło
    
    labels.menu_system=System
    labels.menu_wizard=Kreator
    labels.menu_crawl_config=Ogólne
    labels.menu_scheduler_config=Harmonogram
    labels.menu_dashboard_config=Panel
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 44.6K bytes
    - Viewed (0)
  4. src/main/resources/fess_message_pl.properties

    # e.g.
    # errors.xxx = ...
    # info.xxx = ...
    # _/_/_/_/_/_/_/_/_/_/
    # ========================================================================================
    # Fess
    # ======
    errors.login_error = Nazwa użytkownika lub hasło są nieprawidłowe.
    errors.sso_login_error=Błąd w procesie logowania SSO.
    errors.could_not_find_log_file = Nie można znaleźć {0}.
    errors.failed_to_start_crawl_process = Nie można uruchomić procesu indeksowania.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/RegularImmutableTable.java

      static <R, C, V> RegularImmutableTable<R, C, V> forOrderedComponents(
          ImmutableList<Cell<R, C, V>> cellList,
          ImmutableSet<R> rowSpace,
          ImmutableSet<C> columnSpace) {
        // use a dense table if more than half of the cells have values
        // TODO(gak): tune this condition based on empirical evidence
        return (cellList.size() > (((long) rowSpace.size() * columnSpace.size()) / 2))
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Apr 08 13:05:15 UTC 2025
    - 7K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/graph/EndpointPair.java

          // return condition1 || condition2;
          if (nodeU().equals(other.nodeU())) { // check condition1
            // Here's the tricky bit. We don't have to explicitly check for condition2 in this case.
            // Why? The second half of condition2 requires that nodeV equals other.nodeU.
            // We already know that nodeU equals other.nodeU. Combined with the earlier statement,
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Jul 08 18:32:10 UTC 2025
    - 8.1K bytes
    - Viewed (0)
  7. guava/src/com/google/common/graph/EndpointPair.java

          // return condition1 || condition2;
          if (nodeU().equals(other.nodeU())) { // check condition1
            // Here's the tricky bit. We don't have to explicitly check for condition2 in this case.
            // Why? The second half of condition2 requires that nodeV equals other.nodeU.
            // We already know that nodeU equals other.nodeU. Combined with the earlier statement,
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Jul 08 18:32:10 UTC 2025
    - 8.1K bytes
    - Viewed (0)
  8. guava/src/com/google/common/math/BigIntegerMath.java

            return (logX2Floor < 2 * logFloor + 1) ? logFloor : logFloor + 1;
        }
        throw new AssertionError();
      }
    
      /*
       * The maximum number of bits in a square root for which we'll precompute an explicit half power
       * of two. This can be any value, but higher values incur more class load time and linearly
       * increasing memory consumption.
       */
      @VisibleForTesting static final int SQRT2_PRECOMPUTE_THRESHOLD = 256;
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 18.8K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/io/CharStreamsTest.java

        // nothing really to assert?
        assertSame(CharStreams.nullWriter(), CharStreams.nullWriter());
      }
    
      /**
       * Returns a reader wrapping the given reader that only reads half of the maximum number of
       * characters that it could read in read(char[], int, int).
       */
      private static Reader newNonBufferFillingReader(Reader reader) {
        return new FilterReader(reader) {
          @Override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 18:46:00 UTC 2025
    - 11.3K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/io/CharStreamsTest.java

        // nothing really to assert?
        assertSame(CharStreams.nullWriter(), CharStreams.nullWriter());
      }
    
      /**
       * Returns a reader wrapping the given reader that only reads half of the maximum number of
       * characters that it could read in read(char[], int, int).
       */
      private static Reader newNonBufferFillingReader(Reader reader) {
        return new FilterReader(reader) {
          @Override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 18:46:00 UTC 2025
    - 11.3K bytes
    - Viewed (0)
Back to top