Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 414 for Varty (0.17 sec)

  1. .gitignore

    # Vagrant
    .vagrant
    network_closure.sh
    
    # Local cluster env variables
    /cluster/env.sh
    
    # Compiled binaries in third_party
    /third_party/pkg
    
    # Also ignore etcd installed by hack/install-etcd.sh
    /third_party/etcd*
    /default.etcd
    
    # Also ignore protoc installed by hack/install-protoc.sh
    /third_party/protoc*
    
    # User cluster configs
    .kubeconfig
    
    .tags*
    
    # Version file for dockerized build
    Plain Text
    - Registered: Fri Apr 19 09:05:10 GMT 2024
    - Last Modified: Thu Feb 29 08:22:06 GMT 2024
    - 2.1K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/internal/http/HttpMethod.kt

    object HttpMethod {
      @JvmStatic // Despite being 'internal', this method is called by popular 3rd party SDKs.
      fun invalidatesCache(method: String): Boolean =
        (
          method == "POST" || method == "PATCH" || method == "PUT" ||
            method == "DELETE" || method == "MOVE"
        )
    
      @JvmStatic // Despite being 'internal', this method is called by popular 3rd party SDKs.
      fun requiresRequestBody(method: String): Boolean =
        (
    Plain Text
    - Registered: Fri Apr 19 11:42:09 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 1.5K bytes
    - Viewed (0)
  3. internal/config/identity/openid/jwt.go

    		// OPTIONAL. Authorized party - the party to which the ID
    		// Token was issued. If present, it MUST contain the OAuth
    		// 2.0 Client ID of this party. This Claim is only needed
    		// when the ID Token has a single audience value and that
    		// audience is different than the authorized party. It MAY
    		// be included even when the authorized party is the same
    Go
    - Registered: Sun Apr 14 19:28:10 GMT 2024
    - Last Modified: Thu Nov 16 04:42:31 GMT 2023
    - 8.3K bytes
    - Viewed (5)
  4. apache-maven/src/assembly/maven/lib/ext/README.txt

    Use this directory to add third party extensions to Maven Core. These extensions can either extend or override
    Plain Text
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Tue Aug 23 19:41:57 GMT 2022
    - 143 bytes
    - Viewed (0)
  5. tensorflow/BUILD

            "//third_party/cloud_tpu/convergence_tools/sdc_monitoring/...",
            "//third_party/cloud_tpu/inference_converter/...",
            "//third_party/py/cloud_ml_autoflow/...",
            "//third_party/py/envlogger/...",
            "//third_party/py/gldm/...",
            "//third_party/py/guesslang/...",
            "//third_party/py/keras/...",
            "//third_party/py/tf_keras/...",
    Plain Text
    - Registered: Tue Apr 16 12:39:09 GMT 2024
    - Last Modified: Tue Apr 09 18:15:11 GMT 2024
    - 53.4K bytes
    - Viewed (6)
  6. .teamcity/src/main/kotlin/configurations/SmokeTests.kt

        id("${model.projectId}_SmokeTest_$id")
        name = "Smoke Tests with 3rd Party Plugins ($task) - ${testJava.version.name.toCapitalized()} Linux"
        description = "Smoke tests against third party plugins to see if they still work with the current Gradle version"
    
        features {
            publishBuildStatusToGithub(model)
        }
    
    Plain Text
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Fri Feb 09 16:49:31 GMT 2024
    - 1.1K bytes
    - Viewed (0)
  7. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/tasks/SmokeTest.kt

     * limitations under the License.
     */
    
    package gradlebuild.integrationtests.tasks
    
    import org.gradle.api.tasks.CacheableTask
    
    
    /**
     * A test that verifies Gradle can be used with popular third party plugins.
     */
    @CacheableTask
    abstract class SmokeTest : DistributionTest() {
        override val prefix = "smoke"
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 889 bytes
    - Viewed (0)
  8. licenses/github.com/hashicorp/go-multierror/LICENSE

       goodwill, work stoppage, computer failure or malfunction, or any and all
       other commercial damages or losses, even if such party shall have been
       informed of the possibility of such damages. This limitation of liability
       shall not apply to liability for death or personal injury resulting from such
       party’s negligence to the extent applicable law prohibits such limitation.
    Plain Text
    - Registered: Wed Apr 17 22:53:10 GMT 2024
    - Last Modified: Sat Oct 26 02:47:39 GMT 2019
    - 15.6K bytes
    - Viewed (0)
  9. apache-maven/src/main/appended-resources/licenses/EPL-1.0.txt

    this Agreement are reserved.
    
    This Agreement is governed by the laws of the State of New York and the intellectual
    property laws of the United States of America. No party to this Agreement
    will bring a legal action under this Agreement more than one year after the
    cause of action arose. Each party waives its rights to a jury trial in any
    Plain Text
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Mon Sep 17 05:50:12 GMT 2018
    - 11.1K bytes
    - Viewed (0)
  10. LICENSE

    specifically granted under this License.  You may not convey a covered
    work if you are a party to an arrangement with a third party that is
    in the business of distributing software, under which you make payment
    to the third party based on the extent of your activity of conveying
    the work, and under which the third party grants, to any of the
    parties who would receive the covered work from you, a discriminatory
    Plain Text
    - Registered: Sun Apr 14 19:28:10 GMT 2024
    - Last Modified: Fri Apr 23 18:58:53 GMT 2021
    - 33.7K bytes
    - Viewed (0)
Back to top