Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 725 for Change (0.15 sec)

  1. okhttp-sse/README.md

    OkHttp Server-Sent Events
    =========================
    
    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)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/OWNERS

    # See the OWNERS docs at https://go.k8s.io/owners
    
    # Disable inheritance as this is an api owners file
    options:
      no_parent_owners: true
    approvers:
      - api-approvers
    reviewers:
      - api-reviewers
    labels:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 10 02:31:26 UTC 2021
    - 223 bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/validation/OWNERS

    # See the OWNERS docs at https://go.k8s.io/owners
    
    # Disable inheritance as this is an api owners file
    options:
      no_parent_owners: true
    approvers:
      - api-approvers
    reviewers:
      - api-reviewers
    labels:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 06 22:50:09 UTC 2024
    - 223 bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/api/validation/OWNERS

    # See the OWNERS docs at https://go.k8s.io/owners
    
    # Disable inheritance as this is an api owners file
    options:
      no_parent_owners: true
    approvers:
      - api-approvers
    reviewers:
      - api-reviewers
    labels:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 06 22:50:09 UTC 2024
    - 223 bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/apis/OWNERS

    # See the OWNERS docs at https://go.k8s.io/owners
    
    # Disable inheritance as this is an api owners file
    options:
      no_parent_owners: true
    approvers:
      - api-approvers
    reviewers:
      - api-reviewers
    labels:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 10 02:31:26 UTC 2021
    - 223 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/providers/listProperty/kotlin/build.gradle.kts

    producerOne { outputFile = layout.buildDirectory.file("one.txt") }
    producerTwo { outputFile = layout.buildDirectory.file("two.txt") }
    
    // Change the build directory.
    // Don't need to update the task properties. These are automatically updated as the build directory changes
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  7. CONTRIBUTING.md

        changes to be made to PR to pass quality checks and send it back or on a
        rare occasion we may reject it.
    
    **3. Review**
    
    -   For a valid PR, reviewer (person familiar with the code/functionality)
        checks if the PR looks good or needs additional changes.
    -   If all looks good, the reviewer will approve the PR.
    -   If a change is needed, the contributor is requested to make the suggested
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 11:45:51 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  8. manifests/helm-profiles/warning-edit.txt

    # WARNING: DO NOT EDIT, THIS FILE IS A COPY.
    # The original version of this file is located at /manifests/helm-profiles directory.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 22:30:06 UTC 2024
    - 218 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/maven-publish/publish-artifact/kotlin/build.gradle.kts

    publishing {
        publications {
            create<MavenPublication>("maven") {
                artifact(rpmArtifact)
            }
        }
    // end::custom-artifact-publication[]
        repositories {
            // change URLs to point to your repo, e.g. http://my.org/repo
            maven {
                url = uri(layout.buildDirectory.dir("repo"))
            }
        }
    // tag::custom-artifact-publication[]
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/ivy-publish/java-multi-project/groovy/buildSrc/src/main/groovy/myproject.publishing-conventions.gradle

    version = '1.0'
    group = 'org.gradle.sample'
    
    repositories {
        mavenCentral()
    }
    
    java {
        withJavadocJar()
        withSourcesJar()
    }
    
    publishing {
        repositories {
            ivy {
                // change to point to your repo, e.g. http://my.org/repo
                url = "${rootProject.buildDir}/repo"
            }
        }
        publications {
            ivy(IvyPublication) {
                from components.java
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 580 bytes
    - Viewed (0)
Back to top