Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 400 for Environment (1.32 sec)

  1. src/test/java/org/codelibs/fess/helper/RoleQueryHelperTest.java

                roleSet = roleQueryHelper.build(SearchRequestType.JSON);
                assertTrue(roleSet.size() >= 0);
            } catch (Exception e) {
                // Expected due to missing dependencies in test environment
                assertTrue(true);
            }
        }
    
        public void test_build_withRequest() {
            final RoleQueryHelper roleQueryHelper = new RoleQueryHelper() {
                @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 28.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/ntlmssp/Type2Message.java

        }
    
        /**
         * Creates a Type-2 message using default values from the current
         * environment.
         */
        public Type2Message() {
            this(getDefaultFlags(), null, null);
        }
    
        /**
         * Creates a Type-2 message in response to the given Type-1 message
         * using default values from the current environment.
         *
         * @param type1 The Type-1 message which this represents a response to.
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 13K bytes
    - Viewed (0)
  3. docs/logging/README.md

    mc admin service restart myminio
    ```
    
    NOTE: `http://endpoint:port/path` is a placeholder value to indicate the URL format, please change this accordingly as per your configuration.
    
    MinIO also honors environment variable for HTTP target logging as shown below, this setting will override the endpoint settings in the MinIO server config.
    
    ```
    export MINIO_LOGGER_WEBHOOK_ENABLE_target1="on"
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Aug 12 18:20:36 UTC 2025
    - 10.5K bytes
    - Viewed (0)
  4. api/maven-api-di/src/main/java/org/apache/maven/di/tool/DiIndexProcessor.java

        /**
         * Processes classes with the {@link Named} annotation and generates an index file.
         *
         * @param annotations the annotation types requested to be processed
         * @param roundEnv environment for information about the current and prior round
         * @return whether or not the set of annotations are claimed by this processor
         */
        @Override
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Apr 03 13:33:59 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/JavaToolchain.java

    /**
     * Represents a Java toolchain in the Maven build system.
     *
     * <p>A Java toolchain is a specific type of toolchain that provides access
     * to Java development tools, such as the Java compiler and Java runtime
     * environment. This interface allows users to define and configure
     * Java-related toolchains that can be utilized during the build process
     * in Maven.</p>
     *
     * <p>Java toolchains are defined in the Maven toolchains.xml file and can
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Tue Aug 27 21:13:34 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. gradlew.bat

    %JAVA_EXE% -version >NUL 2>&1
    if %ERRORLEVEL% equ 0 goto execute
    
    echo. 1>&2
    echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2
    echo. 1>&2
    echo Please set the JAVA_HOME variable in your environment to match the 1>&2
    echo location of your Java installation. 1>&2
    
    goto fail
    
    :findJavaFromJavaHome
    set JAVA_HOME=%JAVA_HOME:"=%
    set JAVA_EXE=%JAVA_HOME%/bin/java.exe
    
    if exist "%JAVA_EXE%" goto execute
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Apr 26 02:17:22 UTC 2025
    - 2.8K bytes
    - Viewed (0)
  7. docs/sts/etcd.md

    ```
    
    You may also setup etcd with TLS following this documentation [here](https://coreos.com/etcd/docs/latest/op-guide/security.html)
    
    ### 3. Setup MinIO with etcd
    
    MinIO server expects environment variable for etcd as `MINIO_ETCD_ENDPOINTS`, this environment variable takes many comma separated entries.
    
    ```
    export MINIO_ETCD_ENDPOINTS=http://localhost:2379
    minio server /data
    ```
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Aug 12 18:20:36 UTC 2025
    - 3.5K bytes
    - Viewed (0)
  8. .github/ISSUE_TEMPLATE.md

    <!-- Is this issue a regression? (Yes / No) -->
    <!-- If Yes, optionally please include minio version or commit id or PR# that caused this regression, if you have these details. -->
    
    ## Your Environment
    <!--- Include as many relevant details about the environment you experienced the bug in -->
    * Version used (`minio --version`):
    * Server setup and configuration:
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Sat Jan 29 00:04:16 UTC 2022
    - 2K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/Toolchain.java

     * include compilers, interpreters, and other tools that are necessary
     * for building a project in a specific environment.</p>
     *
     * <p>Toolchains are defined in the Maven toolchains.xml file and can be
     * referenced in the project's POM file. This allows for greater flexibility
     * and control over the build environment, enabling developers to specify
     * the exact versions of tools they wish to use.</p>
     *
     * <p>
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Tue Feb 11 12:33:57 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/ProtoSession.java

        @Nonnull
        Map<String, String> getUserProperties();
    
        /**
         * Returns immutable system properties to use for interpolation. The system properties are collected from the
         * runtime environment such as {@link System#getProperties()} and environment variables
         * (prefixed with {@code env.}).
         *
         * @return the system properties, never {@code null}
         */
        @Nonnull
        Map<String, String> getSystemProperties();
    
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Jul 03 14:18:26 UTC 2025
    - 7.5K bytes
    - Viewed (0)
Back to top