Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 20 of 637 for CONSOLE (0.57 seconds)

  1. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/docker/TransformLog4jConfigFilter.java

                    String value = parts[1];
    
                    // We don't need to explicitly define a console appender because the
                    // "rolling" appender will become a console appender. We also don't
                    // carry over "*_old" appenders
                    if (keyParts[1].equals("console") || keyParts[1].endsWith("_old")) {
                        skipNext = line.endsWith("\\");
                        continue;
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 4.4K bytes
    - Click Count (0)
  2. docs/zh/docs/virtual-environments.md

    /// tip | 提示
    
    **每次**开始一个 **新的终端会话** 来工作在这个工程时,你都需要执行这个操作。
    
    ///
    
    //// tab | Linux, macOS
    
    <div class="termy">
    
    ```console
    $ source .venv/bin/activate
    ```
    
    </div>
    
    ////
    
    //// tab | Windows PowerShell
    
    <div class="termy">
    
    ```console
    $ .venv\Scripts\Activate.ps1
    ```
    
    </div>
    
    ////
    
    //// tab | Windows Bash
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 21.4K bytes
    - Click Count (0)
  3. build-tools-internal/src/main/groovy/org/elasticsearch/gradle/internal/doc/SnippetsTask.groovy

                            + "AUTOSENSE has been replaced by CONSOLE.")
                    }
                    if (line ==~ /\/\/\s*CONSOLE\s*/) {
                        if (snippet == null) {
                            throw new InvalidUserDataException("$file:$lineNumber: "
                                + "CONSOLE not paired with a snippet")
                        }
                        if (snippet.console != null) {
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Sep 20 10:08:26 GMT 2021
    - 17.8K bytes
    - Click Count (0)
  4. scripts/tests/test_translation_fixer/test_complex_doc/data/en_doc.md

    Fixer tool will not preserve comments in these blocks.
    
    ```javascript
    // This is a sample JavaScript code block
    console.log("Hello, world!"); // Print greeting
    ```
    
    ```
    # This is a sample console code block
    $ echo "Hello, world!"  # Print greeting
    ```
    
    ```
    // This is a sample console code block
    $ echo "Hello, world!"  // Print greeting
    ```
    
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Tue Feb 17 08:08:04 GMT 2026
    - 7.6K bytes
    - Click Count (0)
  5. build-tools-internal/src/main/groovy/org/elasticsearch/gradle/internal/doc/RestTestsFromSnippetsTask.groovy

         */
        static isConsoleCandidate(Snippet snippet) {
            /* Snippets that are responses or already marked as `// CONSOLE` or
             * `// NOTCONSOLE` are not candidates. */
            if (snippet.console != null || snippet.testResponse) {
                return false
            }
            /* js snippets almost always should be marked with `// CONSOLE`. js
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 19.5K bytes
    - Click Count (0)
  6. internal/logger/config.go

    		},
    		config.KV{
    			Key:   QueueSize,
    			Value: "100000",
    		},
    		config.KV{
    			Key:   QueueDir,
    			Value: "",
    		},
    	}
    )
    
    // Config console and http logger targets
    type Config struct {
    	Console      Console                 `json:"console"`
    	HTTP         map[string]http.Config  `json:"http"`
    	AuditWebhook map[string]http.Config  `json:"audit"`
    	AuditKafka   map[string]kafka.Config `json:"audit_kafka"`
    }
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Aug 29 02:39:48 GMT 2025
    - 18.7K bytes
    - Click Count (0)
  7. docs/ko/docs/environment-variables.md

    //// tab | Linux, macOS, Windows Bash
    
    <div class="termy">
    
    ```console
    // 환경 변수 MY_NAME을 다음과 같이 생성할 수 있습니다
    $ export MY_NAME="Wade Wilson"
    
    // 그런 다음 다른 프로그램과 함께 사용할 수 있습니다. 예:
    $ echo "Hello $MY_NAME"
    
    Hello Wade Wilson
    ```
    
    </div>
    
    ////
    
    //// tab | Windows PowerShell
    
    <div class="termy">
    
    ```console
    // 환경 변수 MY_NAME 생성
    $ $Env:MY_NAME = "Wade Wilson"
    
    // 다른 프로그램과 함께 사용하기. 예:
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 9K bytes
    - Click Count (0)
  8. docs/auditlog/auditlog-echo.md

    # `auditlog-echo`: A tool to view MinIO Audit logs on the console
    
    1. Run the tool with:
    
    ```
    go run docs/auditlog/auditlog-echo.go
    ```
    
    The listen port has a default value (8080), but can be set with the `-port` flag.
    
    2. Configure audit logging in MinIO with for example:
    
    ```
    mc admin config set myminio audit_webhook enable=on endpoint=http://localhost:8080
    ```
    
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Wed May 01 21:31:13 GMT 2024
    - 447 bytes
    - Click Count (0)
  9. docs/sts/web-identity.md

    state parameter is currently local to the MinIO server). For this setup, set the `MINIO_BROWSER_REDIRECT_URL` parameter to the publicly/client-accessible endpoint for the MinIO Console. For example `MINIO_BROWSER_REDIRECT_URL=https://console.minio.example.org`. This will ensure that the redirect URL is set to `https://console.minio.example.org/oauth_callback` and the login process should work correctly.
    
    For deployments employing DNS round-robin on a single domain to all the MinIO servers,...
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Tue Aug 12 18:20:36 GMT 2025
    - 18.9K bytes
    - Click Count (0)
  10. docs/en/docs/contributing.md

    <div class="termy">
    
    ```console
    $ bash scripts/format.sh
    ```
    
    </div>
    
    It will also auto-sort all your imports.
    
    ## Tests
    
    There is a script that you can run locally to test all the code and generate coverage reports in HTML:
    
    <div class="termy">
    
    ```console
    $ bash scripts/test-cov-html.sh
    ```
    
    </div>
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Mon Mar 23 13:59:26 GMT 2026
    - 10.6K bytes
    - Click Count (0)
Back to Top