Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 21 - 30 of 358 for contention (0.64 seconds)

  1. CHANGELOG/CHANGELOG-1.27.md

    - Changed docs for `--contention-profiling` flag to reflect it performed block profiling ([#114490](https://github.com/kubernetes/kubernetes/pull/114490), [@MadhavJivrajani](https://github.com/MadhavJivrajani))
    Created: Fri Apr 03 09:05:14 GMT 2026
    - Last Modified: Wed Jul 17 07:48:22 GMT 2024
    - 466.3K bytes
    - Click Count (2)
  2. CHANGELOG/CHANGELOG-1.6.md

    * Fix comment and optimize code ([#38084](https://github.com/kubernetes/kubernetes/pull/38084), [@tanshanshan](https://github.com/tanshanshan))
    * Add flag to enable contention profiling in scheduler. ([#37357](https://github.com/kubernetes/kubernetes/pull/37357), [@gmarek](https://github.com/gmarek))
    Created: Fri Apr 03 09:05:14 GMT 2026
    - Last Modified: Thu Dec 24 02:28:26 GMT 2020
    - 304K bytes
    - Click Count (0)
  3. okhttp/src/commonJvmAndroid/kotlin/okhttp3/Connection.kt

     */
    interface Connection {
      /** Returns the route used by this connection. */
      fun route(): Route
    
      /**
       * Returns the socket that this connection is using. Returns an
       * [SSL socket][javax.net.ssl.SSLSocket] if this connection is HTTPS. If this is an HTTP/2
       * connection the socket may be shared by multiple concurrent calls.
       */
      fun socket(): Socket
    
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Fri Dec 27 13:39:56 GMT 2024
    - 4.3K bytes
    - Click Count (0)
  4. build-logic/src/main/kotlin/okhttp.jvm-conventions.gradle.kts

    import org.jetbrains.kotlin.gradle.dsl.JvmTarget
    import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
    import tapmoc.TapmocExtension
    import tapmoc.configureKotlinCompatibility
    
    plugins {
      id("okhttp.base-conventions")
      id("com.gradleup.tapmoc")
    }
    
    val libs = extensions.getByType<VersionCatalogsExtension>().named("libs")
    
    fun library(alias: String) = libs.findLibrary(alias).get().get().let {
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Mon Feb 09 14:40:26 GMT 2026
    - 1.4K bytes
    - Click Count (0)
  5. CHANGELOG/CHANGELOG-1.22.md

    As an alpha feature, Kubernetes v1.22 can use the cgroups v2 API to control memory allocation and isolation. This feature is designed to improve workload and node availability when there is contention for memory resources.
    
    ### API changes and improvements for ephemeral containers
    
    Created: Fri Apr 03 09:05:14 GMT 2026
    - Last Modified: Tue Dec 13 12:43:45 GMT 2022
    - 454.1K bytes
    - Click Count (0)
  6. build-logic/src/main/kotlin/okhttp.testing-conventions.gradle.kts

    import org.gradle.api.tasks.testing.logging.TestExceptionFormat
    import org.gradle.api.artifacts.VersionCatalogsExtension
    import okhttp3.buildsupport.platform
    import okhttp3.buildsupport.testJavaVersion
    
    plugins {
      id("okhttp.base-conventions")
    }
    
    val libs = extensions.getByType<VersionCatalogsExtension>().named("libs")
    
    fun library(alias: String) = libs.findLibrary(alias).get().get().let {
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Sat Feb 07 07:16:57 GMT 2026
    - 1.7K bytes
    - Click Count (0)
  7. architecture/standards/0006-use-of-provider-apis-in-gradle.md

    When defining conventions for a property, there are largely three approaches:
    1. Do not set a convention at all
    2. Set a convention in a plugin
    3. Set a convention in a constructor
    
    Most properties should have a convention set, so (1) can be treated as a rare case where a value must be provided by a user.
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 05 12:39:41 GMT 2026
    - 10K bytes
    - Click Count (0)
  8. build-logic/src/main/kotlin/okhttp.publish-conventions.gradle.kts

          license {
            name.set("The Apache Software License, Version 2.0")
            url.set("https://www.apache.org/licenses/LICENSE-2.0.txt")
            distribution.set("repo")
          }
        }
        scm {
          connection.set("scm:git:https://github.com/square/okhttp.git")
          developerConnection.set("scm:git:ssh://******@****.***/square/okhttp.git")
          url.set("https://github.com/square/okhttp")
        }
        developers {
          developer {
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Sun Mar 15 09:00:38 GMT 2026
    - 2.6K bytes
    - Click Count (0)
  9. build-logic/src/main/kotlin/okhttp.quality-conventions.gradle.kts

    import org.gradle.api.artifacts.VersionCatalogsExtension
    import org.gradle.kotlin.dsl.withType
    import ru.vyarus.gradle.plugin.animalsniffer.AnimalSniffer
    
    plugins {
      id("okhttp.base-conventions")
      id("checkstyle")
      id("ru.vyarus.animalsniffer")
      id("com.android.lint")
      id("com.diffplug.spotless")
    }
    
    val libs = extensions.getByType<VersionCatalogsExtension>().named("libs")
    
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Thu Feb 05 09:17:33 GMT 2026
    - 2.9K bytes
    - Click Count (0)
  10. src/main/resources/fess_indices/fess.json

        "_source": {
          "excludes": [
            "content_ar",
            "content_bg",
            "content_bn",
            "content_ca",
            "content_ckb-iq",
            "content_cs",
            "content_da",
            "content_de",
            "content_el",
            "content_en",
            "content_en-ie",
            "content_es",
            "content_et",
            "content_eu",
            "content_fa",
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 07:52:55 GMT 2026
    - 40K bytes
    - Click Count (0)
Back to Top