Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 31 - 40 of 58 for xpack (0.02 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http2/Http2Reader.kt

      private val source: BufferedSource,
      private val client: Boolean,
    ) : Closeable {
      private val continuation: ContinuationSource = ContinuationSource(this.source)
      private val hpackReader: Hpack.Reader =
        Hpack.Reader(
          source = continuation,
          headerTableSizeSetting = 4096,
        )
    
      @Throws(IOException::class)
      fun readConnectionPreface(handler: Handler) {
        if (client) {
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Sun Mar 15 09:02:18 GMT 2026
    - 19.7K bytes
    - Click Count (0)
  2. .ci/jobs.t/elastic+elasticsearch+periodic+release-tests.yml

              $WORKSPACE/.ci/scripts/run-gradle.sh -Dbwc.checkout.align=true -Dbuild.snapshot=false \
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Aug 23 16:44:34 GMT 2021
    - 1.5K bytes
    - Click Count (0)
  3. okhttp/src/androidMain/baseline-prof.txt

    HSPLokhttp3/internal/http2/Hpack$Writer;-><init>(IZLokio/Buffer;I)V
    HSPLokhttp3/internal/http2/Hpack$Writer;->evictToRecoverBytes(I)I
    HSPLokhttp3/internal/http2/Hpack$Writer;->insertIntoDynamicTable(Lokhttp3/internal/http2/Header;)V
    HSPLokhttp3/internal/http2/Hpack$Writer;->writeByteString(Lokio/ByteString;)V
    HSPLokhttp3/internal/http2/Hpack$Writer;->writeHeaders(Ljava/util/List;)V
    HSPLokhttp3/internal/http2/Hpack$Writer;->writeInt(III)V
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Mon Dec 30 23:28:56 GMT 2024
    - 127.9K bytes
    - Click Count (1)
  4. docs/changelogs/changelog_2x.md

     *  New: APIs to iterate and selectively clear the response cache.
     *  New: Support for SOCKS proxies.
     *  New: Support for `TLS_FALLBACK_SCSV`.
     *  New: Update HTTP/2 support to `h2-16` and `hpack-10`.
     *  New: APIs to prevent retrying non-idempotent requests.
     *  Fix: Drop NPN support. Going forward we support ALPN only.
     *  Fix: The hostname verifier is now strict. This is consistent with the hostname
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Sun Feb 06 02:19:09 GMT 2022
    - 26.6K bytes
    - Click Count (0)
  5. build-tools-internal/src/integTest/groovy/org/elasticsearch/gradle/fixtures/AbstractRestResourcesFuncTest.groovy

        }
    
        void setupRestResources(List<String> apis, List<String> tests = [], List<String> xpackTests = []) {
    
            xpackTests.each { test ->
                file("x-pack/plugin/src/yamlRestTest/resources/rest-api-spec/test/" + test) << ""
            }
    
            apis.each { api ->
                file("rest-api-spec/src/main/resources/rest-api-spec/api/" + api) << ""
            }
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 22 07:24:59 GMT 2021
    - 2.1K bytes
    - Click Count (0)
  6. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/InternalPluginBuildPlugin.java

                });
            });
    
            project.afterEvaluate(p -> {
                boolean isModule = GradleUtils.isModuleProject(p.getPath());
                boolean isXPackModule = isModule && p.getPath().startsWith(":x-pack");
                if (isModule == false || isXPackModule) {
                    addNoticeGeneration(p, extension);
                }
            });
        }
    
        /**
         * Configure the pom for the main jar of this plugin
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 5K bytes
    - Click Count (0)
  7. android/guava/src/com/google/common/base/SmallCharMatcher.java

        return ((filter >> c) & 1) == 1;
      }
    
      // This is all essentially copied from ImmutableSet, but we have to duplicate because
      // of dependencies.
    
      // Represents how tightly we can pack things, as a maximum.
      private static final double DESIRED_LOAD_FACTOR = 0.5;
    
      /**
       * Returns an array size suitable for the backing array of a hash table that uses open addressing
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Feb 12 03:49:18 GMT 2025
    - 4.5K bytes
    - Click Count (0)
  8. CONTRIBUTING.md

    repository-hdfs plugin.
    
    #### `x-pack`
    Commercially licensed code that integrates with the rest of Elasticsearch. The
    `docs` subdirectory functions just like the top level `docs` subdirectory and
    the `qa` subdirectory functions just like the top level `qa` subdirectory. The
    `plugin` subdirectory contains the x-pack module which runs inside the
    Elasticsearch process.
    
    ### Gradle Build
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Sep 01 07:32:01 GMT 2021
    - 36.5K bytes
    - Click Count (0)
  9. guava/src/com/google/common/base/SmallCharMatcher.java

        return ((filter >> c) & 1) == 1;
      }
    
      // This is all essentially copied from ImmutableSet, but we have to duplicate because
      // of dependencies.
    
      // Represents how tightly we can pack things, as a maximum.
      private static final double DESIRED_LOAD_FACTOR = 0.5;
    
      /**
       * Returns an array size suitable for the backing array of a hash table that uses open addressing
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Feb 12 03:49:18 GMT 2025
    - 4.5K bytes
    - Click Count (0)
  10. build-conventions/src/main/java/org/elasticsearch/gradle/internal/conventions/EclipseConventionPlugin.java

                if (Os.isFamily(Os.FAMILY_WINDOWS)) {
                    eclipseProject.setName(eclipseProject.getName().replace(':', '_'));
                }
            }
    
    
            File licenseHeaderFile;
            String prefix = ":x-pack";
            if (Os.isFamily(Os.FAMILY_WINDOWS)) {
                prefix = prefix.replace(':', '_');
            }
            File root = root(project);
            if (eclipseProject.getName().startsWith(prefix)) {
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Jul 01 09:43:51 GMT 2021
    - 6.4K bytes
    - Click Count (0)
Back to Top