Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for volt (0.02 sec)

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

            },
            "hungarian_keywords": {
              "type":       "keyword_marker",
              "keywords": ["Helló", "világ", "keresés"]
            },
    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/Stats.java

        while (values.hasNext()) {
          double value = values.next().doubleValue();
          count++;
          if (isFinite(value) && isFinite(mean)) {
            // Art of Computer Programming vol. 2, Knuth, 4.2.2, (15)
            mean += (value - mean) / count;
          } else {
            mean = calculateNewMeanNonFinite(mean, value);
          }
        }
        return mean;
      }
    
      /**
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Jul 08 18:32:10 UTC 2025
    - 24.8K bytes
    - Viewed (0)
  3. guava/src/com/google/common/math/PairedStatsAccumulator.java

      /** Adds the given pair of values to the dataset. */
      public void add(double x, double y) {
        // We extend the recursive expression for the one-variable case at Art of Computer Programming
        // vol. 2, Knuth, 4.2.2, (16) to the two-variable case. We have two value series x_i and y_i.
        // We define the arithmetic means X_n = 1/n \sum_{i=1}^n x_i, and Y_n = 1/n \sum_{i=1}^n y_i.
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Apr 14 16:36:11 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/math/StatsAccumulator.java

          max = value;
          if (!isFinite(value)) {
            sumOfSquaresOfDeltas = NaN;
          }
        } else {
          count++;
          if (isFinite(value) && isFinite(mean)) {
            // Art of Computer Programming vol. 2, Knuth, 4.2.2, (15) and (16)
            double delta = value - mean;
            mean += delta / count;
            sumOfSquaresOfDeltas += delta * (value - mean);
          } else {
            mean = calculateNewMeanNonFinite(mean, value);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Apr 14 16:36:11 UTC 2025
    - 15.8K bytes
    - Viewed (0)
  5. android/guava/src/com/google/thirdparty/publicsuffix/PublicSuffixPatterns.java

    og??at?cd?is??m!.&eman?fni?gro?moc?ten?ude?vog???n&ab!cfdh?etats?mmoc?t&en?fos??u??i!l!.&ahcarots.sfpi,egarotstfn.sfpi,noyc,pepym,s3w.sfpi,ztirfym,??p???oob?p!.&b&ew?og??ca?g&og?ro??kog?m&af?oc??p&kg?og??sog?ten?ude?vog?zib???row!ten!.&htumiza,mea,nolt,o&c,vra,????s?t?u!.&c&a?lp??dtl?e&cilop?m?tismin,?gro!.&gul:g,,sgul,yr&ettoly&lkeew,tiniffa,?tneelffar,???lenap-tnednepedni,n&noc,oissimmoc-&layor,tnednepedni,??o&c!.&bunsorter.tsuc,enilnoysrab,krametyb.&hd,mv,?omida,p&i-on,ohsdaerpsym,?tfihsreyal...
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Aug 12 15:39:59 UTC 2025
    - 75.3K bytes
    - Viewed (0)
  6. okhttp/src/jvmMain/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.list

    bo
    bo.it
    bo.nordland.no
    bo.telemark.no
    boats
    boavista.br
    bodo.no
    bodø.no
    boehringer
    bofa
    bokn.no
    boldlygoingnowhere.org
    boleslawiec.pl
    bolivia.bo
    bologna.it
    bolt.hu
    bolzano-altoadige.it
    bolzano.it
    bom
    bomlo.no
    bona.jp
    bond
    bones.replit.dev
    boo
    boo.jp
    book
    booking
    bookonline.app
    boomla.net
    bosch
    bostik
    boston
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue May 27 22:00:49 UTC 2025
    - 129.6K bytes
    - Viewed (3)
Back to top