Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 545 for performHead (0.17 sec)

  1. platforms/software/resources-http/src/test/groovy/org/gradle/internal/resource/transport/http/HttpResourceAccessorTest.groovy

        def "should call close() on CloseableHttpResource when getMetaData is called"() {
            def response = mockHttpResponse()
            def http = Mock(HttpClientHelper) {
                performHead(uri.toString(), _) >> new HttpClientResponse("GET", uri, response)
            }
    
            when:
            new HttpResourceAccessor(http).getMetaData(name, false)
    
            then:
            1 * response.close()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. platforms/software/resources-http/src/main/java/org/gradle/internal/resource/transport/http/HttpResourceAccessor.java

            String uri = location.getUri().toString();
            LOGGER.debug("Constructing external resource metadata: {}", location);
            HttpClientResponse response = http.performHead(uri, revalidate);
    
            if (response == null || response.wasMissing()) {
                return null;
            }
    
            HttpResponseResource resource = new HttpResponseResource("HEAD", location.getUri(), response);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. platforms/software/resources-http/src/main/java/org/gradle/internal/resource/transport/http/HttpClientHelper.java

        /**
         * Maintains a queue of contexts which are shared between threads when authentication
         * is activated. When a request is performed, it will pick a context from the queue,
         * and create a new one whenever it's not available (which either means it's the first request
         * or that other requests are being performed concurrently). The queue will grow as big as
         * the max number of concurrent requests executed.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 13K bytes
    - Viewed (0)
  4. pkg/apis/admission/types.go

    	// Defaults to false.
    	// +optional
    	DryRun *bool
    	// Options is the operation option structure of the operation being performed.
    	// e.g. `meta.k8s.io/v1.DeleteOptions` or `meta.k8s.io/v1.CreateOptions`. This may be
    	// different than the options the caller provided. e.g. for a patch request the performed
    	// Operation might be a CREATE, in which case the Options will a
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 01 16:14:06 UTC 2020
    - 7.8K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/admission/v1/generated.proto

      // +optional
      optional bool dryRun = 11;
    
      // Options is the operation option structure of the operation being performed.
      // e.g. `meta.k8s.io/v1.DeleteOptions` or `meta.k8s.io/v1.CreateOptions`. This may be
      // different than the options the caller provided. e.g. for a patch request the performed
      // Operation might be a CREATE, in which case the Options will a
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/admission/v1beta1/generated.proto

      // +optional
      optional bool dryRun = 11;
    
      // Options is the operation option structure of the operation being performed.
      // e.g. `meta.k8s.io/v1.DeleteOptions` or `meta.k8s.io/v1.CreateOptions`. This may be
      // different than the options the caller provided. e.g. for a patch request the performed
      // Operation might be a CREATE, in which case the Options will a
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/admission/v1/generated.proto

      // +optional
      optional bool dryRun = 11;
    
      // Options is the operation option structure of the operation being performed.
      // e.g. `meta.k8s.io/v1.DeleteOptions` or `meta.k8s.io/v1.CreateOptions`. This may be
      // different than the options the caller provided. e.g. for a patch request the performed
      // Operation might be a CREATE, in which case the Options will a
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/admission/v1beta1/generated.proto

      // +optional
      optional bool dryRun = 11;
    
      // Options is the operation option structure of the operation being performed.
      // e.g. `meta.k8s.io/v1.DeleteOptions` or `meta.k8s.io/v1.CreateOptions`. This may be
      // different than the options the caller provided. e.g. for a patch request the performed
      // Operation might be a CREATE, in which case the Options will a
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/admission/v1beta1/types_swagger_doc_generated.go

    	"options":            "Options is the operation option structure of the operation being performed. e.g. `meta.k8s.io/v1.DeleteOptions` or `meta.k8s.io/v1.CreateOptions`. This may be different than the options the caller provided. e.g. for a patch request the performed Operation might be a CREATE, in which case the Options will a `meta.k8s.io/v1.CreateOptions` even though the caller provided `meta.k8s.io/v1.PatchOptions`.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/tasks/VerificationTask.java

        /**
         * Specifies whether the build should break when the verifications performed by this task fail.
         *
         * @param ignoreFailures false to break the build on failure, true to ignore the failures. The default is false.
         */
        void setIgnoreFailures(boolean ignoreFailures);
    
        /**
         * Specifies whether the build should break when the verifications performed by this task fail.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top