Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 173 for 5120 (0.08 sec)

  1. CHANGELOG/CHANGELOG-1.20.md

    Initially introduced in 1.18, Kubernetes 1.20 now enables API Priority and Fairness (APF) by default. This allows `kube-apiserver` to [categorize incoming requests by priority levels](https://docs.k8s.io/concepts/cluster-administration/flow-control/).
    
    ### IPv4/IPv6 run
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 19 21:05:45 UTC 2022
    - 409K bytes
    - Viewed (0)
  2. platforms/jvm/scala/src/test/groovy/org/gradle/scala/compile/internal/ScalaCompileOptionsConfigurerTest.groovy

            11            | true              | '2.12.0'            | '-target:jvm-1.8'
            11            | true              | '2.12.14'           | '-target:jvm-1.8'
            11            | true              | '2.13.0'            | '-target:jvm-1.8'
    
            11            | false             | '2.11.12'           | '-target:jvm-1.11'
            11            | false             | '2.12.0'            | '-target:jvm-1.11'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  3. README.md

    Releases
    --------
    
    Our [change log][changelog] has release history.
    
    The latest release is available on [Maven Central](https://search.maven.org/artifact/com.squareup.okhttp3/okhttp/4.12.0/jar).
    
    ```kotlin
    implementation("com.squareup.okhttp3:okhttp:4.12.0")
    ```
    
    Snapshot builds are [available][snap]. [R8 and ProGuard][r8_proguard] rules are available.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  4. okhttp-sse/README.md

    =========================
    
    Experimental support for server-sent events.
    API is not considered stable and may change at any time.
    
    ### Download
    
    ```kotlin
    testImplementation("com.squareup.okhttp3:okhttp-sse:4.12.0")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Dec 17 15:34:10 UTC 2023
    - 245 bytes
    - Viewed (0)
  5. okhttp-urlconnection/README.md

    This module is obsolete; prefer `okhttp-java-net-cookiejar`.
    
    ### Download
    
    ```kotlin
    testImplementation("com.squareup.okhttp3:okhttp-urlconnection:4.12.0")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Dec 17 15:34:10 UTC 2023
    - 293 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/build-organization/composite-builds/hierarchical-multirepo/kotlin/modules/string-utils/build.gradle.kts

    plugins {
        `java-library`
        `maven-publish`
    }
    
    group = "org.sample"
    version = "1.0"
    
    dependencies {
        implementation("org.apache.commons:commons-lang3:3.12.0")
    }
    
    repositories {
        mavenCentral()
    }
    
    publishing {
        repositories {
            maven {
                setUrl(file("../../local-repo"))
            }
        }
        publications {
            create<MavenPublication>("maven") { from(components["java"]) }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 414 bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/integtests/resolve/AbstractProjectDependencyConflictResolutionIntegrationSpec.groovy

            "2.1"      | "2.0"         | 'projectId("ModuleC")'                | false                | ''
            "1.9"      | "2.0"         | 'projectId("ModuleC")'                | true                 | ''
            "2.0"      | "2.0"         | 'projectId("ModuleC")'                | true                 | ''
            "2.1"      | "2.0"         | 'projectId("ModuleC")'                | true                 | ''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/build-organization/composite-builds/hierarchical-multirepo/README.adoc

    \--- org.sample:string-utils:1.0
         \--- org.apache.commons:commons-lang3:3.12.0
    ```
    
    == Including an external library as a submodule
    
    The power of this configuration can be demonstrated by adding the external 'commons-lang' build directly to the composite.
    
    ```
    git clone http://gitbox.apache.org/repos/asf/commons-lang.git modules/commons-lang --branch rel/commons-lang-3.12.0 --depth 1
    gradle --project-dir modules/commons-lang init
    gradle run
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/testdata/i22600.dlv-dbg-race.nexts

      ./testdata/i22600.go
    8:	func test() {
    9:		pwd, err := os.Getwd()
    10:		if err != nil {
    14:		fmt.Println(pwd)
    15:	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 23 18:05:07 UTC 2018
    - 122 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/build-organization/composite-builds/hierarchical-multirepo/groovy/modules/string-utils/build.gradle

    plugins {
        id 'java'
        id 'maven-publish'
    }
    
    group "org.sample"
    version "1.0"
    
    dependencies {
        implementation "org.apache.commons:commons-lang3:3.12.0"
    }
    
    repositories {
        mavenCentral()
    }
    
    publishing {
        repositories {
            maven {
                url file("../../local-repo")
            }
        }
        publications {
            maven(MavenPublication) { from components.java }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 389 bytes
    - Viewed (0)