Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 119 for requestKind (0.42 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/admission.k8s.io.v1beta1.AdmissionReview.yaml

        status:
          available: 1
      operation: operationValue
      options:
        apiVersion: example.com/v1
        kind: CustomType
        spec:
          replicas: 1
        status:
          available: 1
      requestKind:
        group: groupValue
        kind: kindValue
        version: versionValue
      requestResource:
        group: groupValue
        resource: resourceValue
        version: versionValue
      requestSubResource: requestSubResourceValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/admission/v1/generated.proto

      // and `requestKind: {group:"apps", version:"v1beta1", kind:"Deployment"}` (indicating the kind of the original API request).
      //
      // See documentation for the "matchPolicy" field in the webhook configuration type for more details.
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.GroupVersionKind requestKind = 13;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/admission/v1beta1/generated.proto

      // and `requestKind: {group:"apps", version:"v1beta1", kind:"Deployment"}` (indicating the kind of the original API request).
      //
      // See documentation for the "matchPolicy" field in the webhook configuration type for more details.
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.GroupVersionKind requestKind = 13;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.29.0/admission.k8s.io.v1.AdmissionReview.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.30.0/admission.k8s.io.v1beta1.AdmissionReview.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/HEAD/admission.k8s.io.v1beta1.AdmissionReview.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 19 15:31:53 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/request/admissionreview.go

    				Version: gvk.Version,
    			},
    			Resource: metav1.GroupVersionResource{
    				Group:    gvr.Group,
    				Resource: gvr.Resource,
    				Version:  gvr.Version,
    			},
    			SubResource: subresource,
    			RequestKind: &metav1.GroupVersionKind{
    				Group:   requestGVK.Group,
    				Kind:    requestGVK.Kind,
    				Version: requestGVK.Version,
    			},
    			RequestResource: &metav1.GroupVersionResource{
    				Group:    requestGVR.Group,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 16:56:12 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/internal/http/RequestLine.kt

     * limitations under the License.
     */
    package okhttp3.internal.http
    
    import java.net.HttpURLConnection
    import java.net.Proxy
    import okhttp3.HttpUrl
    import okhttp3.Request
    
    object RequestLine {
      /**
       * Returns the request status line, like "GET / HTTP/1.1". This is exposed to the application by
       * [HttpURLConnection.getHeaderFields], so it needs to be set even if the transport is
       * HTTP/2.
       */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. mockwebserver-deprecated/src/main/kotlin/okhttp3/mockwebserver/RecordedRequest.kt

          }
        } else {
          this.handshake = null
        }
    
        if (requestLine.isNotEmpty()) {
          val methodEnd = requestLine.indexOf(' ')
          val pathEnd = requestLine.indexOf(' ', methodEnd + 1)
          this.method = requestLine.substring(0, methodEnd)
          var path = requestLine.substring(methodEnd + 1, pathEnd)
          if (!path.startsWith("/")) {
            path = "/"
          }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. pkg/test/echo/server/forwarder/websocket.go

    	req := cfg.Request
    	var outBuffer bytes.Buffer
    	echo.ForwarderURLField.WriteForRequest(&outBuffer, requestID, req.Url)
    
    	// Set the special header to trigger the upgrade to WebSocket.
    	wsReq := cfg.headers.Clone()
    	if len(cfg.hostHeader) > 0 {
    		echo.HostField.WriteForRequest(&outBuffer, requestID, hostHeader)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 11 16:27:16 UTC 2022
    - 3.3K bytes
    - Viewed (0)
Back to top