Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 91 - 100 of 473 for variance (0.09 seconds)

  1. docs/en/docs/tutorial/debugging.md

    #### More details { #more-details }
    
    Let's say your file is named `myapp.py`.
    
    If you run it with:
    
    <div class="termy">
    
    ```console
    $ python myapp.py
    ```
    
    </div>
    
    then the internal variable `__name__` in your file, created automatically by Python, will have as value the string `"__main__"`.
    
    So, the section:
    
    ```Python
        uvicorn.run(app, host="0.0.0.0", port=8000)
    ```
    
    will run.
    
    ---
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Wed Dec 17 20:41:43 GMT 2025
    - 2.4K bytes
    - Click Count (0)
  2. internal/config/identity/tls/config.go

    	"github.com/minio/pkg/v3/env"
    )
    
    const (
    	// EnvIdentityTLSEnabled is an environment variable that controls whether the X.509
    	// TLS STS API is enabled. By default, if not set, it is enabled.
    	EnvIdentityTLSEnabled = "MINIO_IDENTITY_TLS_ENABLE"
    
    	// EnvIdentityTLSSkipVerify is an environment variable that controls whether
    	// MinIO verifies the client certificate present by the client
    	// when requesting temp. credentials.
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Fri May 24 23:05:23 GMT 2024
    - 3.6K bytes
    - Click Count (0)
  3. docs/ja/docs/environment-variables.md

    $ python main.py
    
    // As we didn't set the env var, we get the default value
    
    Hello World from Python
    
    // But if we create an environment variable first
    $ export MY_NAME="Wade Wilson"
    
    // And then call the program again
    $ python main.py
    
    // Now it can read the environment variable
    
    Hello Wade Wilson from Python
    ```
    
    </div>
    
    ////
    
    //// tab | Windows PowerShell
    
    <div class="termy">
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Mon Jan 27 15:39:04 GMT 2025
    - 9.4K bytes
    - Click Count (0)
  4. build-logic/jvm/src/main/kotlin/gradlebuild.unittest-and-compile.gradle.kts

    fun Test.isUnitTest() = listOf("test", "writePerformanceScenarioDefinitions", "writeTmpPerformanceScenarioDefinitions").contains(name)
    
    /**
     * If enabled, test JVM will inherit the DEVELOCITY_ACCESS_TOKEN
     * environment variable. This allows build scans to be published for integration tests.
     */
    fun Test.inheritDevelocityAccessTokenEnv() = setOf("smoke-test").contains(project.name)
    
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Fri Dec 19 06:44:41 GMT 2025
    - 18.9K bytes
    - Click Count (0)
  5. requirements-docs.txt

    cairosvg==2.8.2
    mkdocstrings[python]==0.30.1
    griffe-typingdoc==0.3.0
    griffe-warnings-deprecated==1.1.0
    # For griffe, it formats with black
    black==25.1.0
    mkdocs-macros-plugin==1.4.1
    markdown-include-variants==0.0.8
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Wed Dec 17 14:39:10 GMT 2025
    - 554 bytes
    - Click Count (0)
  6. android/guava-tests/test/com/google/common/math/PairedStatsAccumulatorTest.java

          if (values.hasAnyNonFinite()) {
            assertWithMessage("population covariance of %s", values).that(populationCovariance).isNaN();
            assertWithMessage("population covariance by addAll(PairedStats) of %s", values)
                .that(populationCovarianceByAddAllPartitionedPairedStats)
                .isNaN();
          } else {
            assertWithMessage("population covariance of %s", values)
                .that(populationCovariance)
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Thu Dec 11 20:45:32 GMT 2025
    - 23.4K bytes
    - Click Count (0)
  7. build-logic/cleanup/src/test/groovy/gradlebuild/cleanup/services/LeakingProcessKillPatternTest.groovy

            def line = 'java.exe  "C:\\Program Files\\Java\\jdk1.8\\bin\\java.exe" -Xms1536m -Xmx1536m -Dfile.encoding=windows-1252 -Duser.country=US -Duser.language=en -Duser.variant -cp P:\\subprojects\\performance\\build\\tmp\\performance-test-files\\FileSystemW.Test\\assemble_fo.hing\\fh0xl\\6.7-202010012357270000\\gradle-home\\lib\\gradle-launcher-6.7.jar org.gradle.launcher.daemon.bootstrap.GradleDaemon 6.7-20201001235727+0000'...
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Fri Jul 12 03:42:46 GMT 2024
    - 14.8K bytes
    - Click Count (0)
  8. gradlew

    Please set the JAVA_HOME variable in your environment to match the
    location of your Java installation."
        fi
    else
        JAVACMD=java
        if ! command -v java >/dev/null 2>&1
        then
            die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
    
    Please set the JAVA_HOME variable in your environment to match the
    location of your Java installation."
    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Thu Sep 18 20:55:41 GMT 2025
    - 8.4K bytes
    - Click Count (0)
  9. apache-maven/src/assembly/maven/bin/mvn

    # specific language governing permissions and limitations
    # under the License.
    
    # -----------------------------------------------------------------------------
    # Apache Maven Startup Script
    #
    # Environment Variable Prerequisites
    #
    #   JAVA_HOME           (Optional) Points to a Java installation.
    #   MAVEN_ARGS          (Optional) Arguments passed to Maven before CLI arguments.
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Wed Dec 10 16:40:06 GMT 2025
    - 9.2K bytes
    - Click Count (0)
  10. docs/de/docs/virtual-environments.md

    Eine dieser Variablen ist die `PATH`-Variable.
    
    /// tip | Tipp
    
    Sie können mehr über die `PATH`-Umgebungsvariable im Abschnitt [Umgebungsvariablen](environment-variables.md#path-environment-variable){.internal-link target=_blank} erfahren.
    
    ///
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Tue Dec 02 17:32:56 GMT 2025
    - 25.4K bytes
    - Click Count (0)
Back to Top