Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 65 for Mean (0.05 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. guava-tests/test/com/google/common/math/StatsTest.java

          } else if (values.hasAnyNegativeInfinity()) {
            assertWithMessage("mean of %s", values).that(mean).isNegativeInfinity();
          } else {
            assertWithMessage("mean of %s", values)
                .that(mean)
                .isWithin(ALLOWED_ERROR)
                .of(MANY_VALUES_MEAN);
          }
        }
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 17 16:11:48 GMT 2026
    - 33.4K bytes
    - Click Count (0)
  2. android/guava-tests/test/com/google/common/math/PairedStatsTest.java

                fit,
                stats.xStats().mean(),
                stats.yStats().mean(),
                stats.xStats().populationVariance(),
                stats.populationCovariance());
          }
        }
        assertHorizontalLinearTransformation(
            HORIZONTAL_VALUES_PAIRED_STATS.leastSquaresFit(),
            HORIZONTAL_VALUES_PAIRED_STATS.yStats().mean());
        assertVerticalLinearTransformation(
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 17 16:11:48 GMT 2026
    - 14.1K bytes
    - Click Count (0)
  3. guava-tests/test/com/google/common/math/PairedStatsTest.java

                fit,
                stats.xStats().mean(),
                stats.yStats().mean(),
                stats.xStats().populationVariance(),
                stats.populationCovariance());
          }
        }
        assertHorizontalLinearTransformation(
            HORIZONTAL_VALUES_PAIRED_STATS.leastSquaresFit(),
            HORIZONTAL_VALUES_PAIRED_STATS.yStats().mean());
        assertVerticalLinearTransformation(
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 17 16:11:48 GMT 2026
    - 14.1K bytes
    - Click Count (0)
  4. fastapi/routing.py

            app.include_router(internal_router)
            ```
            """
            assert self is not router, (
                "Cannot include the same APIRouter instance into itself. "
                "Did you mean to include a different router?"
            )
            if prefix:
                assert prefix.startswith("/"), "A path prefix must start with '/'"
                assert not prefix.endswith("/"), (
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Mar 15 11:44:39 GMT 2026
    - 193K bytes
    - Click Count (0)
  5. fastapi/applications.py

                        `response_model`, converting any data as necessary to generate the
                        corresponding JSON. But if the data in the object returned is not
                        valid, that would mean a violation of the contract with the client,
                        so it's an error from the API developer. So, FastAPI will raise an
                        error and return a 500 error code (Internal Server Error).
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Apr 01 16:16:24 GMT 2026
    - 178.6K bytes
    - Click Count (0)
  6. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        assertThat(cause)
            .hasMessageThat()
            .contains(
                "AsyncFunction.apply returned null instead of a Future. "
                    + "Did you mean to return immediateFuture(null)?");
      }
    
      @J2ktIncompatible
      @GwtIncompatible // threads
      public void testCatchingAsync_interruptPropagatesToTransformingThread() throws Exception {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 16 22:45:21 GMT 2026
    - 134K bytes
    - Click Count (0)
  7. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        assertThat(cause)
            .hasMessageThat()
            .contains(
                "AsyncFunction.apply returned null instead of a Future. "
                    + "Did you mean to return immediateFuture(null)?");
      }
    
      @J2ktIncompatible
      @GwtIncompatible // threads
      public void testCatchingAsync_interruptPropagatesToTransformingThread() throws Exception {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 16 22:45:21 GMT 2026
    - 134K bytes
    - Click Count (0)
  8. docs/pt/docs/deployment/index.md

    # Implantação { #deployment }
    
    Implantar uma aplicação **FastAPI** é relativamente fácil.
    
    ## O que significa Implantação { #what-does-deployment-mean }
    
    **Implantar** uma aplicação significa executar as etapas necessárias para torná-la **disponível para os usuários**.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 1.7K bytes
    - Click Count (0)
  9. docs/ru/docs/deployment/index.md

    # Развёртывание { #deployment }
    
    Развернуть приложение **FastAPI** довольно просто.
    
    ## Что означает развёртывание { #what-does-deployment-mean }
    
    Термин **развёртывание** (приложения) означает выполнение необходимых шагов, чтобы сделать приложение **доступным для пользователей**.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:56:20 GMT 2026
    - 2.8K bytes
    - Click Count (0)
  10. docs/tr/docs/deployment/index.md

    # Dağıtım { #deployment }
    
    **FastAPI** uygulamasını deploy etmek nispeten kolaydır.
    
    ## Dağıtım Ne Anlama Gelir? { #what-does-deployment-mean }
    
    Bir uygulamayı **deploy** etmek, onu **kullanıcılara erişilebilir hale getirmek** için gerekli adımları gerçekleştirmek anlamına gelir.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 1.7K bytes
    - Click Count (0)
Back to Top