Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 119 for requestKind (0.42 sec)

  1. staging/src/k8s.io/api/certificates/v1beta1/types_swagger_doc_generated.go

    	"username":          "Information about the requesting user. See user.Info interface for details.",
    	"uid":               "UID information about the requesting user. See user.Info interface for details.",
    	"groups":            "Group information about the requesting user. See user.Info interface for details.",
    	"extra":             "Extra information about the requesting user. See user.Info interface for details.",
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  2. pkg/test/echo/server/forwarder/tcp.go

    			return msgBuilder.String(), err
    		}
    	}
    
    	echo.ForwarderURLField.WriteForRequest(&msgBuilder, requestID, cfg.Request.Url)
    
    	if cfg.Request.Message != "" {
    		echo.ForwarderMessageField.WriteForRequest(&msgBuilder, requestID, cfg.Request.Message)
    	}
    
    	// Apply per-request timeout to calculate deadline for reads/writes.
    	ctx, cancel := context.WithTimeout(ctx, cfg.timeout)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 20 19:13:32 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  3. internal/logger/reqinfo.go

    	sync.RWMutex
    }
    
    // NewReqInfo :
    func NewReqInfo(remoteHost, userAgent, deploymentID, requestID, api, bucket, object string) *ReqInfo {
    	return &ReqInfo{
    		RemoteHost:   remoteHost,
    		UserAgent:    userAgent,
    		API:          api,
    		DeploymentID: deploymentID,
    		RequestID:    requestID,
    		BucketName:   bucket,
    		ObjectName:   object,
    	}
    }
    
    // AppendTags - appends key/val to ReqInfo.tags
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. staging/src/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: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. docs/sts/custom-token-identity.md

        </Credentials>
        <AssumedUser>custom:Alice</AssumedUser>
      </AssumeRoleWithCustomTokenResult>
      <ResponseMetadata>
        <RequestId>16F26E081E36DE63</RequestId>
      </ResponseMetadata>
    </AssumeRoleWithCustomTokenResponse>
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 27 00:58:09 UTC 2022
    - 3K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top