Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 94 for requestKind (0.31 sec)

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

     * limitations under the License.
     */
    
    package org.gradle.internal.resource.transport.http
    
    import org.apache.http.HttpRequest
    import org.apache.http.RequestLine
    import org.apache.http.client.methods.CloseableHttpResponse
    import org.apache.http.message.BasicHeader
    import org.apache.http.params.HttpParams
    import org.apache.http.protocol.HttpContext
    import spock.lang.Specification
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. platforms/software/resources-http/src/test/groovy/org/gradle/internal/resource/transport/http/AllowFollowForMutatingMethodRedirectStrategyTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.internal.resource.transport.http
    
    import org.apache.http.HttpRequest
    import org.apache.http.ProtocolVersion
    import org.apache.http.RequestLine
    import org.apache.http.client.methods.CloseableHttpResponse
    import org.apache.http.message.BasicHeader
    import org.apache.http.message.BasicStatusLine
    import org.apache.http.protocol.HttpContext
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/concurrent/src/main/java/org/gradle/internal/concurrent/AsyncStoppable.java

         * It should, however, stop accepting new work.</p>
         *
         * <p>
         * Requesting stopping does not guarantee the stoppable actually stops.
         * Requesting stopping means preparing for stopping; stopping accepting new work.
         * You have to call stop at some point anyway if your intention is to completely stop the stoppable.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:07:35 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/ResourceHandlerWrapper.java

                }
            } finally {
                lock.unlock();
            }
        }
    
        @Override
        public void writeTo(int requestId, HttpExchange exchange) throws IOException {
            handler.writeTo(requestId, exchange);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/certificates/v1beta1/generated.proto

      repeated string usages = 5;
    
      // Information about the requesting user.
      // See user.Info interface for details.
      // +optional
      optional string username = 2;
    
      // UID information about the requesting user.
      // See user.Info interface for details.
      // +optional
      optional string uid = 3;
    
      // Group information about the requesting user.
      // See user.Info interface for details.
      // +listType=atomic
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. maven-core/src/test/java/org/apache/maven/internal/MultilineMessageHelperTest.java

        @Test
        void testBuilderCommon() {
            List<String> msgs = new ArrayList<>();
            msgs.add("*****************************************************************");
            msgs.add("* Your build is requesting parallel execution, but project      *");
            msgs.add("* contains the following plugin(s) that have goals not marked   *");
            msgs.add("* as @threadSafe to support parallel building.                  *");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Apr 15 17:24:20 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  7. cmd/sts-errors.go

    	Error   struct {
    		Type    string `xml:"Type"`
    		Code    string `xml:"Code"`
    		Message string `xml:"Message"`
    	} `xml:"Error"`
    	RequestID string `xml:"RequestId"`
    }
    
    // STSErrorCode type of error status.
    type STSErrorCode int
    
    //go:generate stringer -type=STSErrorCode -trimprefix=Err $GOFILE
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  8. mockwebserver-deprecated/src/main/kotlin/okhttp3/mockwebserver/DeprecationBridge.kt

        path = path,
        headers = headers,
        response = response.wrap(),
      )
    }
    
    internal fun mockwebserver3.RecordedRequest.unwrap(): RecordedRequest {
      return RecordedRequest(
        requestLine = requestLine,
        headers = headers,
        chunkSizes = chunkSizes,
        bodySize = bodySize,
        body = body,
        sequenceNumber = sequenceNumber,
        failure = failure,
        method = method,
        path = path,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_progress.go

    	utilruntime "k8s.io/apimachinery/pkg/util/runtime"
    	"k8s.io/apimachinery/pkg/util/wait"
    
    	"k8s.io/klog/v2"
    	"k8s.io/utils/clock"
    )
    
    const (
    	// progressRequestPeriod determines period of requesting progress
    	// from etcd when there is a request waiting for watch cache to be fresh.
    	progressRequestPeriod = 100 * time.Millisecond
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 09:56:38 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. mockwebserver-deprecated/src/test/java/okhttp3/mockwebserver/KotlinSourceModernTest.kt

            0,
            Socket(),
          )
        recordedRequest = RecordedRequest("", headersOf(), listOf(), 0L, Buffer(), 0, Socket())
        var requestUrl: HttpUrl? = recordedRequest.requestUrl
        var requestLine: String = recordedRequest.requestLine
        var method: String? = recordedRequest.method
        var path: String? = recordedRequest.path
        var headers: Headers = recordedRequest.headers
        val header: String? = recordedRequest.getHeader("")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 7.3K bytes
    - Viewed (0)
Back to top