Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 21 - 30 of 71 for xpack (0.04 seconds)

  1. okhttp/src/jvmTest/kotlin/okhttp3/internal/http2/HpackTest.kt

    import org.junit.jupiter.api.Test
    
    class HpackTest {
      private val bytesIn = Buffer()
      private var hpackReader: Hpack.Reader? = null
      private val bytesOut = Buffer()
      private var hpackWriter: Hpack.Writer? = null
    
      @BeforeEach
      fun reset() {
        hpackReader = newReader(bytesIn)
        hpackWriter = Hpack.Writer(4096, false, bytesOut)
      }
    
      /**
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Wed Mar 19 19:25:20 GMT 2025
    - 38.6K bytes
    - Click Count (0)
  2. .devcontainer/devcontainer.json

          }
      },
      "customizations": {
          "vscode": {
              "settings": {
                  "java.server.launchMode": "Standard"
              },
              "extensions": [
                  "vscjava.vscode-java-pack",
                  "vscjava.vscode-gradle"
              ]
          }
      }
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Sat May 18 23:34:57 GMT 2024
    - 429 bytes
    - Click Count (0)
  3. .gitignore

    # intellij files
    .idea/
    *.iml
    *.ipr
    *.iws
    build-idea/
    # Eclipse and Intellij put there build files in "out"
    out/
    
    # include shared intellij config
    !.idea/scopes/x_pack.xml
    !.idea/inspectionProfiles/Project_Default.xml
    !.idea/runConfigurations/Debug_Elasticsearch.xml
    !.idea/checkstyle-idea.xml
    
    # These files are generated in the main tree by IntelliJ
    benchmarks/src/main/generated/*
    
    # eclipse files
    .project
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Jun 10 23:06:44 GMT 2021
    - 1.2K bytes
    - Click Count (0)
  4. okhttp/src/jvmTest/kotlin/okhttp3/internal/http2/HuffmanTest.kt

    import okio.ByteString.Companion.toByteString
    import org.junit.jupiter.api.Assertions.assertEquals
    import org.junit.jupiter.api.Test
    
    /** Original version of this class was lifted from `com.twitter.hpack.HuffmanTest`.  */
    class HuffmanTest {
      @Test
      fun roundTripForRequestAndResponse() {
        val s = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"
        for (i in s.indices) {
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Fri Dec 27 13:39:56 GMT 2024
    - 1.8K bytes
    - Click Count (0)
  5. .ci/jobs.t/elastic+elasticsearch+periodic+eql-correctness.yml

              set +x
              VAULT_TOKEN=$(vault write -field=token auth/approle/login role_id=$VAULT_ROLE_ID secret_id=$VAULT_SECRET_ID)
              export VAULT_TOKEN
              export eql_test_credentials_file="$(pwd)/x-pack/plugin/eql/qa/correctness/credentials.gcs.json"
              vault read -field=credentials.gcs.json secret/elasticsearch-ci/eql_test_credentials > ${eql_test_credentials_file}
              unset VAULT_TOKEN
              set -x
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu May 06 21:46:09 GMT 2021
    - 1.1K bytes
    - Click Count (0)
  6. doc/next/3-tools.md

    ## Tools {#tools}
    
    <!-- go.dev/issue/77177 -->
    
    Response file (`@file`) parsing is now supported for the `compile`, `link`, `asm`, `cgo`, `cover`, and `pack` tools.
    The response file contains whitespace-separated arguments with support for single-quoted and double-quoted strings, escape sequences, and backslash-newline line continuation.
    The format is compatible with GCC's response file implementation to ensure interoperability with existing build systems.
    
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Thu Mar 19 02:58:52 GMT 2026
    - 757 bytes
    - Click Count (0)
  7. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/CopyRestTestsTask.java

                        c.filter(Map.of("tokens", substitutions), ReplaceTokens.class);
                    }
                });
            }
            // only copy x-pack tests if explicitly instructed
            if (includeXpack.get().isEmpty() == false) {
                getLogger().debug("X-pack rest tests for project [{}] will be copied to the test resources.", projectPath);
                fileSystemOperations.copy(c -> {
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jul 20 21:05:16 GMT 2021
    - 7.7K bytes
    - Click Count (0)
  8. ci/official/installer_wheel.sh

    # error. In order to upload to PyPI, we unpack the wheel and change the tag
    # inside a metadata file to the one we want (e.g cp38-cp38-win_amd) and then
    # re-pack it to generate it as a platform specific wheel with this new wheel
    #tag.
    python3 -m wheel unpack "${pure_python_whl}"
    
    # Remove the pure python wheel.
    rm -rf "${pure_python_whl}"
    
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Tue Mar 04 22:39:12 GMT 2025
    - 3.5K bytes
    - Click Count (0)
  9. build-tools-internal/src/integTest/groovy/org/elasticsearch/gradle/internal/InternalDistributionArchiveCheckPluginFuncTest.groovy

                        from 'LICENSE.txt'
                        from 'SomeFile.txt'
                        from 'NOTICE.txt'
                        into('modules/x-pack-ml') {
                            from 'ml/NOTICE.txt'
                        }
                    }
                }
            """
    
            when:
            def result = gradleRunner(":darwin-tar:check").buildAndFail()
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Fri Sep 03 10:22:28 GMT 2021
    - 5.9K bytes
    - Click Count (0)
  10. LICENSE.txt

    is a dual license under the Server Side Public License, v 1 and the Elastic
    License 2.0, unless the header specifies another license. Code that is licensed
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Feb 03 00:10:53 GMT 2021
    - 546 bytes
    - Click Count (0)
Back to Top