Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 121 - 130 of 473 for variance (0.05 seconds)

  1. apache-maven/src/assembly/maven/bin/mvnsh

    # specific language governing permissions and limitations
    # under the License.
    
    # -----------------------------------------------------------------------------
    # Apache Maven Encrypt Script
    #
    # Environment Variable Prerequisites
    #
    #   JAVA_HOME           (Optional) Points to a Java installation.
    #   MAVEN_OPTS          (Optional) Java runtime options used when Maven is executed.
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Tue Dec 17 09:50:45 GMT 2024
    - 1.3K bytes
    - Click Count (0)
  2. docs/en/docs/tutorial/bigger-applications.md

    ///
    
    ### Avoid name collisions { #avoid-name-collisions }
    
    We are importing the submodule `items` directly, instead of importing just its variable `router`.
    
    This is because we also have another variable named `router` in the submodule `users`.
    
    If we had imported one after the other, like:
    
    ```Python
    from .routers.items import router
    from .routers.users import router
    ```
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Wed Dec 10 08:55:32 GMT 2025
    - 18.6K bytes
    - Click Count (0)
  3. apache-maven/src/site/apt/index.apt.vm

     -----
    
    ${project.name}
    
     ${project.description}
    
    * References
    
     * <<<mvn>>> invocation can be customized through pre-invocation script calls, that can be disabled by setting <<<MAVEN_SKIP_RC>>> environment variable:
    
    *----------+--------------------------------------------+-----------------------+
    ||         || system level                              || user level 
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Aug 20 00:26:03 GMT 2021
    - 1.9K bytes
    - Click Count (0)
  4. docs/site-replication/gen-oidc-sts-cred.go

    	cmd "github.com/minio/minio/cmd"
    )
    
    func main() {
    	ctx := context.Background()
    
    	endpoint := os.Getenv("MINIO_ENDPOINT")
    	if endpoint == "" {
    		log.Fatalf("Please specify a MinIO server endpoint environment variable like:\n\n\texport MINIO_ENDPOINT=http://localhost:9000")
    	}
    
    	appParams := cmd.OpenIDClientAppParams{
    		ClientID:     "minio-client-app",
    		ClientSecret: "minio-client-app-secret",
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Fri Apr 29 01:27:09 GMT 2022
    - 2.3K bytes
    - Click Count (1)
  5. ci/official/utilities/convert_msys_paths_to_win_paths.py

    """
    
    import argparse
    import os
    
    
    def should_convert(var_name: str,
                       blacklist: list[str] | None,
                       whitelist_prefix: list[str] | None):
      """Check the variable name against white/black lists."""
      if blacklist and var_name in blacklist:
        return False
      if not whitelist_prefix:
        return True
    
      for prefix in whitelist_prefix:
        if var_name.startswith(prefix):
    Created: Tue Dec 30 12:39:10 GMT 2025
    - Last Modified: Wed Aug 07 23:01:25 GMT 2024
    - 2.5K bytes
    - Click Count (0)
  6. docs/sts/wso2.md

    ### 5. Setup MinIO with OpenID configuration URL
    
    MinIO server expects environment variable for OpenID configuration url as `MINIO_IDENTITY_OPENID_CONFIG_URL`, this environment variable takes a single entry.
    
    ```
    export MINIO_IDENTITY_OPENID_CONFIG_URL=https://localhost:9443/oauth2/oidcdiscovery/.well-known/openid-configuration
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Tue Aug 12 18:20:36 GMT 2025
    - 8.7K bytes
    - Click Count (0)
  7. mvnw.cmd

    echo Please set the JAVA_HOME variable in your environment to match the >&2
    echo location of your Java installation. >&2
    echo. >&2
    goto error
    
    :OkJHome
    if exist "%JAVA_HOME%\bin\java.exe" goto init
    
    echo. >&2
    echo Error: JAVA_HOME is set to an invalid directory. >&2
    echo JAVA_HOME = "%JAVA_HOME%" >&2
    echo Please set the JAVA_HOME variable in your environment to match the >&2
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Mon Oct 14 22:24:15 GMT 2024
    - 7.5K bytes
    - Click Count (0)
  8. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/ide/AndroidStudioSystemProperties.kt

            throw IllegalArgumentException("Android Studio home must be provided via the 'studioHome' system property, or auto downloading must be enabled via `autoDownloadAndroidStudio=true` gradle property, system property, or environment variable")
        }
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Tue Feb 20 09:51:32 GMT 2024
    - 2.9K bytes
    - Click Count (0)
  9. impl/maven-core/src/main/java/org/apache/maven/plugin/LegacySupport.java

         * Sets the currently active session. Some legacy components are basically stateful and their API is missing
         * parameters that would be required to delegate to a stateless component. Saving the session (in a thread-local
         * variable) is our best effort to record any state that is required to enable proper delegation.
         *
         * @param session The currently active session, may be {@code null}.
         */
        void setSession(MavenSession session);
    
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 2.1K bytes
    - Click Count (0)
  10. docs/tuning/tuned.conf

    net.ipv4.tcp_wmem="4096 65536 4194304"
    
    # Reduce CPU utilization
    net.ipv4.tcp_timestamps=0
    
    # Increase throughput
    net.ipv4.tcp_sack=1
    
    # Low latency mode for TCP
    net.ipv4.tcp_low_latency=1
    
    # The following variable is used to tell the kernel how 
    # much of the socket buffer space should be used for TCP 
    # window size, and how much to save for an application buffer.
    net.ipv4.tcp_adv_win_scale=1
    
    # disable RFC2861 behavior
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Fri Jul 12 23:31:18 GMT 2024
    - 1.9K bytes
    - Click Count (0)
Back to Top