repo
stringlengths
6
47
file_url
stringlengths
77
269
file_path
stringlengths
5
186
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
7 values
commit_sha
stringlengths
40
40
retrieved_at
stringdate
2026-01-07 08:35:43
2026-01-07 08:55:24
truncated
bool
2 classes
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/aws/endpoints/defaults.go
vendor/github.com/aws/aws-sdk-go/aws/endpoints/defaults.go
// Code generated by aws/endpoints/v3model_codegen.go. DO NOT EDIT. package endpoints import ( "regexp" ) // Partition identifiers const ( AwsPartitionID = "aws" // AWS Standard partition. AwsCnPartitionID = "aws-cn" // AWS China partition. AwsUsGovPartitionID = "aws-us-gov" // AWS GovCloud (U...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
true
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/aws/endpoints/legacy_regions.go
vendor/github.com/aws/aws-sdk-go/aws/endpoints/legacy_regions.go
package endpoints var legacyGlobalRegions = map[string]map[string]struct{}{ "sts": { "ap-northeast-1": {}, "ap-south-1": {}, "ap-southeast-1": {}, "ap-southeast-2": {}, "ca-central-1": {}, "eu-central-1": {}, "eu-north-1": {}, "eu-west-1": {}, "eu-west-2": {}, "eu-west-3": ...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/aws/endpoints/doc.go
vendor/github.com/aws/aws-sdk-go/aws/endpoints/doc.go
// Package endpoints provides the types and functionality for defining regions // and endpoints, as well as querying those definitions. // // The SDK's Regions and Endpoints metadata is code generated into the endpoints // package, and is accessible via the DefaultResolver function. This function // returns a endpoint ...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/aws/endpoints/decode.go
vendor/github.com/aws/aws-sdk-go/aws/endpoints/decode.go
package endpoints import ( "encoding/json" "fmt" "io" "github.com/aws/aws-sdk-go/aws/awserr" ) type modelDefinition map[string]json.RawMessage // A DecodeModelOptions are the options for how the endpoints model definition // are decoded. type DecodeModelOptions struct { SkipCustomizations bool } // Set combin...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/aws/csm/metric_chan.go
vendor/github.com/aws/aws-sdk-go/aws/csm/metric_chan.go
package csm import ( "sync/atomic" ) const ( runningEnum = iota pausedEnum ) var ( // MetricsChannelSize of metrics to hold in the channel MetricsChannelSize = 100 ) type metricChan struct { ch chan metric paused *int64 } func newMetricChan(size int) metricChan { return metricChan{ ch: make(chan ...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/aws/csm/metric.go
vendor/github.com/aws/aws-sdk-go/aws/csm/metric.go
package csm import ( "strconv" "time" "github.com/aws/aws-sdk-go/aws" ) type metricTime time.Time func (t metricTime) MarshalJSON() ([]byte, error) { ns := time.Duration(time.Time(t).UnixNano()) return []byte(strconv.FormatInt(int64(ns/time.Millisecond), 10)), nil } type metric struct { ClientID *string ...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/aws/csm/reporter.go
vendor/github.com/aws/aws-sdk-go/aws/csm/reporter.go
package csm import ( "encoding/json" "net" "time" "github.com/aws/aws-sdk-go/aws" "github.com/aws/aws-sdk-go/aws/awserr" "github.com/aws/aws-sdk-go/aws/request" ) // Reporter will gather metrics of API requests made and // send those metrics to the CSM endpoint. type Reporter struct { clientID string url ...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/aws/csm/enable.go
vendor/github.com/aws/aws-sdk-go/aws/csm/enable.go
package csm import ( "fmt" "strings" "sync" ) var ( lock sync.Mutex ) const ( // DefaultPort is used when no port is specified. DefaultPort = "31000" // DefaultHost is the host that will be used when none is specified. DefaultHost = "127.0.0.1" ) // AddressWithDefaults returns a CSM address built from the ...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/aws/csm/metric_exception.go
vendor/github.com/aws/aws-sdk-go/aws/csm/metric_exception.go
package csm type metricException interface { Exception() string Message() string } type requestException struct { exception string message string } func (e requestException) Exception() string { return e.exception } func (e requestException) Message() string { return e.message } type awsException struct { ...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/aws/csm/doc.go
vendor/github.com/aws/aws-sdk-go/aws/csm/doc.go
// Package csm provides the Client Side Monitoring (CSM) client which enables // sending metrics via UDP connection to the CSM agent. This package provides // control options, and configuration for the CSM client. The client can be // controlled manually, or automatically via the SDK's Session configuration. // // Enab...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/aws/credentials/context_background_go1.5.go
vendor/github.com/aws/aws-sdk-go/aws/credentials/context_background_go1.5.go
//go:build !go1.7 // +build !go1.7 package credentials import ( "github.com/aws/aws-sdk-go/internal/context" ) // backgroundContext returns a context that will never be canceled, has no // values, and no deadline. This context is used by the SDK to provide // backwards compatibility with non-context API operations ...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/aws/credentials/static_provider.go
vendor/github.com/aws/aws-sdk-go/aws/credentials/static_provider.go
package credentials import ( "github.com/aws/aws-sdk-go/aws/awserr" ) // StaticProviderName provides a name of Static provider const StaticProviderName = "StaticProvider" var ( // ErrStaticCredentialsEmpty is emitted when static credentials are empty. ErrStaticCredentialsEmpty = awserr.New("EmptyStaticCreds", "st...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/aws/credentials/env_provider.go
vendor/github.com/aws/aws-sdk-go/aws/credentials/env_provider.go
package credentials import ( "os" "github.com/aws/aws-sdk-go/aws/awserr" ) // EnvProviderName provides a name of Env provider const EnvProviderName = "EnvProvider" var ( // ErrAccessKeyIDNotFound is returned when the AWS Access Key ID can't be // found in the process's environment. ErrAccessKeyIDNotFound = aws...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/aws/credentials/context_go1.5.go
vendor/github.com/aws/aws-sdk-go/aws/credentials/context_go1.5.go
//go:build !go1.9 // +build !go1.9 package credentials import "time" // Context is an copy of the Go v1.7 stdlib's context.Context interface. // It is represented as a SDK interface to enable you to use the "WithContext" // API methods with Go v1.6 and a Context type such as golang.org/x/net/context. // // This type...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/aws/credentials/chain_provider.go
vendor/github.com/aws/aws-sdk-go/aws/credentials/chain_provider.go
package credentials import ( "github.com/aws/aws-sdk-go/aws/awserr" ) var ( // ErrNoValidProvidersFoundInChain Is returned when there are no valid // providers in the ChainProvider. // // This has been deprecated. For verbose error messaging set // aws.Config.CredentialsChainVerboseErrors to true. ErrNoValidPr...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/aws/credentials/credentials.go
vendor/github.com/aws/aws-sdk-go/aws/credentials/credentials.go
// Package credentials provides credential retrieval and management // // The Credentials is the primary method of getting access to and managing // credentials Values. Using dependency injection retrieval of the credential // values is handled by a object which satisfies the Provider interface. // // By default the Cr...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/aws/credentials/context_go1.9.go
vendor/github.com/aws/aws-sdk-go/aws/credentials/context_go1.9.go
//go:build go1.9 // +build go1.9 package credentials import "context" // Context is an alias of the Go stdlib's context.Context interface. // It can be used within the SDK's API operation "WithContext" methods. // // This type, aws.Context, and context.Context are equivalent. // // See https://golang.org/pkg/context...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/aws/credentials/context_background_go1.7.go
vendor/github.com/aws/aws-sdk-go/aws/credentials/context_background_go1.7.go
//go:build go1.7 // +build go1.7 package credentials import "context" // backgroundContext returns a context that will never be canceled, has no // values, and no deadline. This context is used by the SDK to provide // backwards compatibility with non-context API operations and functionality. // // Go 1.6 and before...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/aws/credentials/shared_credentials_provider.go
vendor/github.com/aws/aws-sdk-go/aws/credentials/shared_credentials_provider.go
package credentials import ( "fmt" "os" "github.com/aws/aws-sdk-go/aws/awserr" "github.com/aws/aws-sdk-go/internal/ini" "github.com/aws/aws-sdk-go/internal/shareddefaults" ) // SharedCredsProviderName provides a name of SharedCreds provider const SharedCredsProviderName = "SharedCredentialsProvider" var ( // ...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/aws/credentials/ssocreds/os_windows.go
vendor/github.com/aws/aws-sdk-go/aws/credentials/ssocreds/os_windows.go
package ssocreds import "os" func getHomeDirectory() string { return os.Getenv("USERPROFILE") }
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/aws/credentials/ssocreds/provider.go
vendor/github.com/aws/aws-sdk-go/aws/credentials/ssocreds/provider.go
package ssocreds import ( "crypto/sha1" "encoding/hex" "encoding/json" "fmt" "io/ioutil" "path/filepath" "strings" "time" "github.com/aws/aws-sdk-go/aws" "github.com/aws/aws-sdk-go/aws/awserr" "github.com/aws/aws-sdk-go/aws/client" "github.com/aws/aws-sdk-go/aws/credentials" "github.com/aws/aws-sdk-go/se...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/aws/credentials/ssocreds/doc.go
vendor/github.com/aws/aws-sdk-go/aws/credentials/ssocreds/doc.go
// Package ssocreds provides a credential provider for retrieving temporary AWS credentials using an SSO access token. // // IMPORTANT: The provider in this package does not initiate or perform the AWS SSO login flow. The SDK provider // expects that you have already performed the SSO login flow using AWS CLI using the...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/aws/credentials/ssocreds/os.go
vendor/github.com/aws/aws-sdk-go/aws/credentials/ssocreds/os.go
//go:build !windows // +build !windows package ssocreds import "os" func getHomeDirectory() string { return os.Getenv("HOME") }
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/aws/credentials/ec2rolecreds/ec2_role_provider.go
vendor/github.com/aws/aws-sdk-go/aws/credentials/ec2rolecreds/ec2_role_provider.go
package ec2rolecreds import ( "bufio" "encoding/json" "fmt" "strings" "time" "github.com/aws/aws-sdk-go/aws" "github.com/aws/aws-sdk-go/aws/awserr" "github.com/aws/aws-sdk-go/aws/client" "github.com/aws/aws-sdk-go/aws/credentials" "github.com/aws/aws-sdk-go/aws/ec2metadata" "github.com/aws/aws-sdk-go/aws/r...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/aws/credentials/stscreds/web_identity_provider.go
vendor/github.com/aws/aws-sdk-go/aws/credentials/stscreds/web_identity_provider.go
package stscreds import ( "fmt" "io/ioutil" "strconv" "time" "github.com/aws/aws-sdk-go/aws" "github.com/aws/aws-sdk-go/aws/awserr" "github.com/aws/aws-sdk-go/aws/client" "github.com/aws/aws-sdk-go/aws/credentials" "github.com/aws/aws-sdk-go/service/sts" "github.com/aws/aws-sdk-go/service/sts/stsiface" ) c...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/aws/credentials/stscreds/assume_role_provider.go
vendor/github.com/aws/aws-sdk-go/aws/credentials/stscreds/assume_role_provider.go
/* Package stscreds are credential Providers to retrieve STS AWS credentials. STS provides multiple ways to retrieve credentials which can be used when making future AWS service API operation calls. The SDK will ensure that per instance of credentials.Credentials all requests to refresh the credentials will be synchr...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/aws/credentials/endpointcreds/provider.go
vendor/github.com/aws/aws-sdk-go/aws/credentials/endpointcreds/provider.go
// Package endpointcreds provides support for retrieving credentials from an // arbitrary HTTP endpoint. // // The credentials endpoint Provider can receive both static and refreshable // credentials that will expire. Credentials are static when an "Expiration" // value is not provided in the endpoint's response. // //...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/aws/credentials/processcreds/provider.go
vendor/github.com/aws/aws-sdk-go/aws/credentials/processcreds/provider.go
/* Package processcreds is a credential Provider to retrieve `credential_process` credentials. WARNING: The following describes a method of sourcing credentials from an external process. This can potentially be dangerous, so proceed with caution. Other credential providers should be preferred if at all possible. If us...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/aws/session/custom_transport_go1.6.go
vendor/github.com/aws/aws-sdk-go/aws/session/custom_transport_go1.6.go
//go:build !go1.7 && go1.6 // +build !go1.7,go1.6 package session import ( "net" "net/http" "time" ) // Transport that should be used when a custom CA bundle is specified with the // SDK. func getCustomTransport() *http.Transport { return &http.Transport{ Proxy: http.ProxyFromEnvironment, Dial: (&net.Dialer{...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/aws/session/credentials.go
vendor/github.com/aws/aws-sdk-go/aws/session/credentials.go
package session import ( "fmt" "os" "time" "github.com/aws/aws-sdk-go/aws" "github.com/aws/aws-sdk-go/aws/awserr" "github.com/aws/aws-sdk-go/aws/credentials" "github.com/aws/aws-sdk-go/aws/credentials/processcreds" "github.com/aws/aws-sdk-go/aws/credentials/ssocreds" "github.com/aws/aws-sdk-go/aws/credential...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/aws/session/shared_config.go
vendor/github.com/aws/aws-sdk-go/aws/session/shared_config.go
package session import ( "fmt" "strings" "time" "github.com/aws/aws-sdk-go/aws/awserr" "github.com/aws/aws-sdk-go/aws/credentials" "github.com/aws/aws-sdk-go/aws/endpoints" "github.com/aws/aws-sdk-go/internal/ini" ) const ( // Static Credentials group accessKeyIDKey = `aws_access_key_id` // group requi...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/aws/session/custom_transport_go1.5.go
vendor/github.com/aws/aws-sdk-go/aws/session/custom_transport_go1.5.go
//go:build !go1.6 && go1.5 // +build !go1.6,go1.5 package session import ( "net" "net/http" "time" ) // Transport that should be used when a custom CA bundle is specified with the // SDK. func getCustomTransport() *http.Transport { return &http.Transport{ Proxy: http.ProxyFromEnvironment, Dial: (&net.Dialer{...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/aws/session/custom_transport_go1.12.go
vendor/github.com/aws/aws-sdk-go/aws/session/custom_transport_go1.12.go
//go:build !go1.13 && go1.7 // +build !go1.13,go1.7 package session import ( "net" "net/http" "time" ) // Transport that should be used when a custom CA bundle is specified with the // SDK. func getCustomTransport() *http.Transport { return &http.Transport{ Proxy: http.ProxyFromEnvironment, DialContext: (&ne...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/aws/session/session.go
vendor/github.com/aws/aws-sdk-go/aws/session/session.go
package session import ( "crypto/tls" "crypto/x509" "fmt" "io" "io/ioutil" "net/http" "os" "strings" "time" "github.com/aws/aws-sdk-go/aws" "github.com/aws/aws-sdk-go/aws/awserr" "github.com/aws/aws-sdk-go/aws/client" "github.com/aws/aws-sdk-go/aws/corehandlers" "github.com/aws/aws-sdk-go/aws/credential...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
true
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/aws/session/env_config.go
vendor/github.com/aws/aws-sdk-go/aws/session/env_config.go
package session import ( "fmt" "os" "strconv" "strings" "github.com/aws/aws-sdk-go/aws" "github.com/aws/aws-sdk-go/aws/credentials" "github.com/aws/aws-sdk-go/aws/defaults" "github.com/aws/aws-sdk-go/aws/endpoints" ) // EnvProviderName provides a name of the provider when config is loaded from environment. c...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/aws/session/doc.go
vendor/github.com/aws/aws-sdk-go/aws/session/doc.go
/* Package session provides configuration for the SDK's service clients. Sessions can be shared across service clients that share the same base configuration. Sessions are safe to use concurrently as long as the Session is not being modified. Sessions should be cached when possible, because creating a new Session will...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/aws/session/custom_transport.go
vendor/github.com/aws/aws-sdk-go/aws/session/custom_transport.go
//go:build go1.13 // +build go1.13 package session import ( "net" "net/http" "time" ) // Transport that should be used when a custom CA bundle is specified with the // SDK. func getCustomTransport() *http.Transport { return &http.Transport{ Proxy: http.ProxyFromEnvironment, DialContext: (&net.Dialer{ Time...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/aws/awsutil/path_value.go
vendor/github.com/aws/aws-sdk-go/aws/awsutil/path_value.go
package awsutil import ( "reflect" "regexp" "strconv" "strings" "github.com/jmespath/go-jmespath" ) var indexRe = regexp.MustCompile(`(.+)\[(-?\d+)?\]$`) // rValuesAtPath returns a slice of values found in value v. The values // in v are explored recursively so all nested values are collected. func rValuesAtPa...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/aws/awsutil/equal.go
vendor/github.com/aws/aws-sdk-go/aws/awsutil/equal.go
package awsutil import ( "reflect" ) // DeepEqual returns if the two values are deeply equal like reflect.DeepEqual. // In addition to this, this method will also dereference the input values if // possible so the DeepEqual performed will not fail if one parameter is a // pointer and the other is not. // // DeepEqua...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/aws/awsutil/prettify.go
vendor/github.com/aws/aws-sdk-go/aws/awsutil/prettify.go
package awsutil import ( "bytes" "fmt" "io" "reflect" "strings" ) // Prettify returns the string representation of a value. func Prettify(i interface{}) string { var buf bytes.Buffer prettify(reflect.ValueOf(i), 0, &buf) return buf.String() } // prettify will recursively walk value v to build a textual // re...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/aws/awsutil/string_value.go
vendor/github.com/aws/aws-sdk-go/aws/awsutil/string_value.go
package awsutil import ( "bytes" "fmt" "reflect" "strings" ) // StringValue returns the string representation of a value. // // Deprecated: Use Prettify instead. func StringValue(i interface{}) string { var buf bytes.Buffer stringValue(reflect.ValueOf(i), 0, &buf) return buf.String() } func stringValue(v refl...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/aws/awsutil/copy.go
vendor/github.com/aws/aws-sdk-go/aws/awsutil/copy.go
package awsutil import ( "io" "reflect" "time" ) // Copy deeply copies a src structure to dst. Useful for copying request and // response structures. // // Can copy between structs of different type, but will only copy fields which // are assignable, and exist in both structs. Fields which are not assignable, // o...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/aws/ec2metadata/token_provider.go
vendor/github.com/aws/aws-sdk-go/aws/ec2metadata/token_provider.go
package ec2metadata import ( "fmt" "net/http" "sync/atomic" "time" "github.com/aws/aws-sdk-go/aws/awserr" "github.com/aws/aws-sdk-go/aws/credentials" "github.com/aws/aws-sdk-go/aws/request" ) // A tokenProvider struct provides access to EC2Metadata client // and atomic instance of a token, along with configur...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/aws/ec2metadata/api.go
vendor/github.com/aws/aws-sdk-go/aws/ec2metadata/api.go
package ec2metadata import ( "encoding/json" "fmt" "net/http" "strconv" "strings" "time" "github.com/aws/aws-sdk-go/aws" "github.com/aws/aws-sdk-go/aws/awserr" "github.com/aws/aws-sdk-go/aws/request" "github.com/aws/aws-sdk-go/internal/sdkuri" ) // getToken uses the duration to return a token for EC2 metad...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/aws/ec2metadata/service.go
vendor/github.com/aws/aws-sdk-go/aws/ec2metadata/service.go
// Package ec2metadata provides the client for making API calls to the // EC2 Metadata service. // // This package's client can be disabled completely by setting the environment // variable "AWS_EC2_METADATA_DISABLED=true". This environment variable set to // true instructs the SDK to disable the EC2 Metadata client. T...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/aws/client/client.go
vendor/github.com/aws/aws-sdk-go/aws/client/client.go
package client import ( "fmt" "github.com/aws/aws-sdk-go/aws" "github.com/aws/aws-sdk-go/aws/client/metadata" "github.com/aws/aws-sdk-go/aws/request" ) // A Config provides configuration to a service client instance. type Config struct { Config *aws.Config Handlers request.Handlers PartitionID ...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/aws/client/no_op_retryer.go
vendor/github.com/aws/aws-sdk-go/aws/client/no_op_retryer.go
package client import ( "time" "github.com/aws/aws-sdk-go/aws/request" ) // NoOpRetryer provides a retryer that performs no retries. // It should be used when we do not want retries to be performed. type NoOpRetryer struct{} // MaxRetries returns the number of maximum returns the service will use to make // an in...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/aws/client/default_retryer.go
vendor/github.com/aws/aws-sdk-go/aws/client/default_retryer.go
package client import ( "math" "strconv" "time" "github.com/aws/aws-sdk-go/aws/request" "github.com/aws/aws-sdk-go/internal/sdkrand" ) // DefaultRetryer implements basic retry logic using exponential backoff for // most services. If you want to implement custom retry logic, you can implement the // request.Retr...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/aws/client/logger.go
vendor/github.com/aws/aws-sdk-go/aws/client/logger.go
package client import ( "bytes" "fmt" "io" "io/ioutil" "net/http/httputil" "github.com/aws/aws-sdk-go/aws" "github.com/aws/aws-sdk-go/aws/request" ) const logReqMsg = `DEBUG: Request %s/%s Details: ---[ REQUEST POST-SIGN ]----------------------------- %s -----------------------------------------------------` ...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/aws/client/metadata/client_info.go
vendor/github.com/aws/aws-sdk-go/aws/client/metadata/client_info.go
package metadata // ClientInfo wraps immutable data from the client.Client structure. type ClientInfo struct { ServiceName string ServiceID string APIVersion string PartitionID string Endpoint string SigningName string SigningRegion string JSONVersion string TargetPrefix string ...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/aws/request/request.go
vendor/github.com/aws/aws-sdk-go/aws/request/request.go
package request import ( "bytes" "fmt" "io" "io/ioutil" "net/http" "net/url" "reflect" "strings" "time" "github.com/aws/aws-sdk-go/aws" "github.com/aws/aws-sdk-go/aws/awserr" "github.com/aws/aws-sdk-go/aws/client/metadata" "github.com/aws/aws-sdk-go/internal/sdkio" ) const ( // ErrCodeSerialization is ...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/aws/request/waiter.go
vendor/github.com/aws/aws-sdk-go/aws/request/waiter.go
package request import ( "fmt" "time" "github.com/aws/aws-sdk-go/aws" "github.com/aws/aws-sdk-go/aws/awserr" "github.com/aws/aws-sdk-go/aws/awsutil" ) // WaiterResourceNotReadyErrorCode is the error code returned by a waiter when // the waiter's max attempts have been exhausted. const WaiterResourceNotReadyErro...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/aws/request/timeout_read_closer.go
vendor/github.com/aws/aws-sdk-go/aws/request/timeout_read_closer.go
package request import ( "io" "time" "github.com/aws/aws-sdk-go/aws/awserr" ) var timeoutErr = awserr.New( ErrCodeResponseTimeout, "read on body has reached the timeout limit", nil, ) type readResult struct { n int err error } // timeoutReadCloser will handle body reads that take too long. // We will ret...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/aws/request/validation.go
vendor/github.com/aws/aws-sdk-go/aws/request/validation.go
package request import ( "bytes" "fmt" "github.com/aws/aws-sdk-go/aws/awserr" ) const ( // InvalidParameterErrCode is the error code for invalid parameters errors InvalidParameterErrCode = "InvalidParameter" // ParamRequiredErrCode is the error code for required parameter errors ParamRequiredErrCode = "ParamR...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/aws/request/request_1_8.go
vendor/github.com/aws/aws-sdk-go/aws/request/request_1_8.go
//go:build go1.8 // +build go1.8 package request import ( "net/http" "github.com/aws/aws-sdk-go/aws/awserr" ) // NoBody is a http.NoBody reader instructing Go HTTP client to not include // and body in the HTTP request. var NoBody = http.NoBody // ResetBody rewinds the request body back to its starting position, ...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/aws/request/offset_reader.go
vendor/github.com/aws/aws-sdk-go/aws/request/offset_reader.go
package request import ( "io" "sync" "github.com/aws/aws-sdk-go/internal/sdkio" ) // offsetReader is a thread-safe io.ReadCloser to prevent racing // with retrying requests type offsetReader struct { buf io.ReadSeeker lock sync.Mutex closed bool } func newOffsetReader(buf io.ReadSeeker, offset int64) (*o...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/aws/request/retryer.go
vendor/github.com/aws/aws-sdk-go/aws/request/retryer.go
package request import ( "net" "net/url" "strings" "time" "github.com/aws/aws-sdk-go/aws" "github.com/aws/aws-sdk-go/aws/awserr" ) // Retryer provides the interface drive the SDK's request retry behavior. The // Retryer implementation is responsible for implementing exponential backoff, // and determine if a r...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/aws/request/http_request.go
vendor/github.com/aws/aws-sdk-go/aws/request/http_request.go
package request import ( "io" "net/http" "net/url" ) func copyHTTPRequest(r *http.Request, body io.ReadCloser) *http.Request { req := new(http.Request) *req = *r req.URL = &url.URL{} *req.URL = *r.URL req.Body = body req.Header = http.Header{} for k, v := range r.Header { for _, vv := range v { req.He...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/aws/request/request_context_1_6.go
vendor/github.com/aws/aws-sdk-go/aws/request/request_context_1_6.go
//go:build !go1.7 // +build !go1.7 package request import "github.com/aws/aws-sdk-go/aws" // setContext updates the Request to use the passed in context for cancellation. // Context will also be used for request retry delay. // // Creates shallow copy of the http.Request with the WithContext method. func setRequestC...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/aws/request/connection_reset_error.go
vendor/github.com/aws/aws-sdk-go/aws/request/connection_reset_error.go
package request import ( "strings" ) func isErrConnectionReset(err error) bool { if strings.Contains(err.Error(), "read: connection reset") { return false } if strings.Contains(err.Error(), "use of closed network connection") || strings.Contains(err.Error(), "connection reset") || strings.Contains(err.Erro...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/aws/request/request_context.go
vendor/github.com/aws/aws-sdk-go/aws/request/request_context.go
//go:build go1.7 // +build go1.7 package request import "github.com/aws/aws-sdk-go/aws" // setContext updates the Request to use the passed in context for cancellation. // Context will also be used for request retry delay. // // Creates shallow copy of the http.Request with the WithContext method. func setRequestCon...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/aws/request/request_1_7.go
vendor/github.com/aws/aws-sdk-go/aws/request/request_1_7.go
//go:build !go1.8 // +build !go1.8 package request import "io" // NoBody is an io.ReadCloser with no bytes. Read always returns EOF // and Close always returns nil. It can be used in an outgoing client // request to explicitly signal that a request has zero bytes. // An alternative, however, is to simply set Request...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/aws/request/handlers.go
vendor/github.com/aws/aws-sdk-go/aws/request/handlers.go
package request import ( "fmt" "strings" ) // A Handlers provides a collection of request handlers for various // stages of handling requests. type Handlers struct { Validate HandlerList Build HandlerList BuildStream HandlerList Sign HandlerList Send HandlerList ...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/aws/request/request_pagination.go
vendor/github.com/aws/aws-sdk-go/aws/request/request_pagination.go
package request import ( "reflect" "sync/atomic" "github.com/aws/aws-sdk-go/aws" "github.com/aws/aws-sdk-go/aws/awsutil" ) // A Pagination provides paginating of SDK API operations which are paginatable. // Generally you should not use this type directly, but use the "Pages" API // operations method to automatic...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/aws/signer/v4/request_context_go1.5.go
vendor/github.com/aws/aws-sdk-go/aws/signer/v4/request_context_go1.5.go
//go:build !go1.7 // +build !go1.7 package v4 import ( "net/http" "github.com/aws/aws-sdk-go/aws" ) func requestContext(r *http.Request) aws.Context { return aws.BackgroundContext() }
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/aws/signer/v4/v4.go
vendor/github.com/aws/aws-sdk-go/aws/signer/v4/v4.go
// Package v4 implements signing for AWS V4 signer // // Provides request signing for request that need to be signed with // AWS V4 Signatures. // // # Standalone Signer // // Generally using the signer outside of the SDK should not require any additional // logic when using Go v1.5 or higher. The signer does this by t...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/aws/signer/v4/stream.go
vendor/github.com/aws/aws-sdk-go/aws/signer/v4/stream.go
package v4 import ( "encoding/hex" "strings" "time" "github.com/aws/aws-sdk-go/aws/credentials" ) type credentialValueProvider interface { Get() (credentials.Value, error) } // StreamSigner implements signing of event stream encoded payloads type StreamSigner struct { region string service string credenti...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/aws/signer/v4/request_context_go1.7.go
vendor/github.com/aws/aws-sdk-go/aws/signer/v4/request_context_go1.7.go
//go:build go1.7 // +build go1.7 package v4 import ( "net/http" "github.com/aws/aws-sdk-go/aws" ) func requestContext(r *http.Request) aws.Context { return r.Context() }
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/aws/signer/v4/header_rules.go
vendor/github.com/aws/aws-sdk-go/aws/signer/v4/header_rules.go
package v4 import ( "github.com/aws/aws-sdk-go/internal/strings" ) // validator houses a set of rule needed for validation of a // string value type rules []rule // rule interface allows for more flexible rules and just simply // checks whether or not a value adheres to that rule type rule interface { IsValid(valu...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/aws/signer/v4/options.go
vendor/github.com/aws/aws-sdk-go/aws/signer/v4/options.go
package v4 // WithUnsignedPayload will enable and set the UnsignedPayload field to // true of the signer. func WithUnsignedPayload(v4 *Signer) { v4.UnsignedPayload = true }
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/aws/signer/v4/uri_path.go
vendor/github.com/aws/aws-sdk-go/aws/signer/v4/uri_path.go
//go:build go1.5 // +build go1.5 package v4 import ( "net/url" "strings" ) func getURIPath(u *url.URL) string { var uri string if len(u.Opaque) > 0 { uri = "/" + strings.Join(strings.Split(u.Opaque, "/")[3:], "/") } else { uri = u.EscapedPath() } if len(uri) == 0 { uri = "/" } return uri }
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/aws/corehandlers/param_validator.go
vendor/github.com/aws/aws-sdk-go/aws/corehandlers/param_validator.go
package corehandlers import "github.com/aws/aws-sdk-go/aws/request" // ValidateParametersHandler is a request handler to validate the input parameters. // Validating parameters only has meaning if done prior to the request being sent. var ValidateParametersHandler = request.NamedHandler{Name: "core.ValidateParameters...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/aws/corehandlers/user_agent.go
vendor/github.com/aws/aws-sdk-go/aws/corehandlers/user_agent.go
package corehandlers import ( "os" "runtime" "github.com/aws/aws-sdk-go/aws" "github.com/aws/aws-sdk-go/aws/request" ) // SDKVersionUserAgentHandler is a request handler for adding the SDK Version // to the user agent. var SDKVersionUserAgentHandler = request.NamedHandler{ Name: "core.SDKVersionUserAgentHandler...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/aws/corehandlers/handlers.go
vendor/github.com/aws/aws-sdk-go/aws/corehandlers/handlers.go
package corehandlers import ( "bytes" "fmt" "io/ioutil" "net/http" "net/url" "regexp" "strconv" "time" "github.com/aws/aws-sdk-go/aws" "github.com/aws/aws-sdk-go/aws/awserr" "github.com/aws/aws-sdk-go/aws/credentials" "github.com/aws/aws-sdk-go/aws/request" ) // Interface for matching types which also ha...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/private/protocol/timestamp.go
vendor/github.com/aws/aws-sdk-go/private/protocol/timestamp.go
package protocol import ( "bytes" "fmt" "math" "strconv" "time" "github.com/aws/aws-sdk-go/internal/sdkmath" ) // Names of time formats supported by the SDK const ( RFC822TimeFormatName = "rfc822" ISO8601TimeFormatName = "iso8601" UnixTimeFormatName = "unixTimestamp" ) // Time formats supported by the ...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/private/protocol/protocol.go
vendor/github.com/aws/aws-sdk-go/private/protocol/protocol.go
package protocol import ( "fmt" "strings" "github.com/aws/aws-sdk-go/aws/awserr" "github.com/aws/aws-sdk-go/aws/request" ) // RequireHTTPMinProtocol request handler is used to enforce that // the target endpoint supports the given major and minor HTTP protocol version. type RequireHTTPMinProtocol struct { Major...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/private/protocol/unmarshal.go
vendor/github.com/aws/aws-sdk-go/private/protocol/unmarshal.go
package protocol import ( "io" "io/ioutil" "github.com/aws/aws-sdk-go/aws/request" ) // UnmarshalDiscardBodyHandler is a named request handler to empty and close a response's body var UnmarshalDiscardBodyHandler = request.NamedHandler{Name: "awssdk.shared.UnmarshalDiscardBody", Fn: UnmarshalDiscardBody} // Unmar...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/private/protocol/idempotency.go
vendor/github.com/aws/aws-sdk-go/private/protocol/idempotency.go
package protocol import ( "crypto/rand" "fmt" "reflect" ) // RandReader is the random reader the protocol package will use to read // random bytes from. This is exported for testing, and should not be used. var RandReader = rand.Reader const idempotencyTokenFillTag = `idempotencyToken` // CanSetIdempotencyToken ...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/private/protocol/payload.go
vendor/github.com/aws/aws-sdk-go/private/protocol/payload.go
package protocol import ( "io" "io/ioutil" "net/http" "github.com/aws/aws-sdk-go/aws" "github.com/aws/aws-sdk-go/aws/client/metadata" "github.com/aws/aws-sdk-go/aws/request" ) // PayloadUnmarshaler provides the interface for unmarshaling a payload's // reader into a SDK shape. type PayloadUnmarshaler interface...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/private/protocol/host_prefix.go
vendor/github.com/aws/aws-sdk-go/private/protocol/host_prefix.go
package protocol import ( "strings" "github.com/aws/aws-sdk-go/aws" "github.com/aws/aws-sdk-go/aws/request" ) // HostPrefixHandlerName is the handler name for the host prefix request // handler. const HostPrefixHandlerName = "awssdk.endpoint.HostPrefixHandler" // NewHostPrefixHandler constructs a build handler f...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/private/protocol/jsonvalue.go
vendor/github.com/aws/aws-sdk-go/private/protocol/jsonvalue.go
package protocol import ( "encoding/base64" "encoding/json" "fmt" "strconv" "github.com/aws/aws-sdk-go/aws" ) // EscapeMode is the mode that should be use for escaping a value type EscapeMode uint // The modes for escaping a value before it is marshaled, and unmarshaled. const ( NoEscape EscapeMode = iota Ba...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/private/protocol/host.go
vendor/github.com/aws/aws-sdk-go/private/protocol/host.go
package protocol import ( "github.com/aws/aws-sdk-go/aws/request" "net" "strconv" "strings" ) // ValidateEndpointHostHandler is a request handler that will validate the // request endpoint's hosts is a valid RFC 3986 host. var ValidateEndpointHostHandler = request.NamedHandler{ Name: "awssdk.protocol.ValidateEnd...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/private/protocol/unmarshal_error.go
vendor/github.com/aws/aws-sdk-go/private/protocol/unmarshal_error.go
package protocol import ( "net/http" "github.com/aws/aws-sdk-go/aws/awserr" "github.com/aws/aws-sdk-go/aws/request" ) // UnmarshalErrorHandler provides unmarshaling errors API response errors for // both typed and untyped errors. type UnmarshalErrorHandler struct { unmarshaler ErrorUnmarshaler } // ErrorUnmarsh...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/private/protocol/query/build.go
vendor/github.com/aws/aws-sdk-go/private/protocol/query/build.go
// Package query provides serialization of AWS query requests, and responses. package query //go:generate go run -tags codegen ../../../private/model/cli/gen-protocol-tests ../../../models/protocol_tests/input/query.json build_test.go import ( "net/url" "github.com/aws/aws-sdk-go/aws/awserr" "github.com/aws/aws-s...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/private/protocol/query/unmarshal.go
vendor/github.com/aws/aws-sdk-go/private/protocol/query/unmarshal.go
package query //go:generate go run -tags codegen ../../../private/model/cli/gen-protocol-tests ../../../models/protocol_tests/output/query.json unmarshal_test.go import ( "encoding/xml" "github.com/aws/aws-sdk-go/aws/awserr" "github.com/aws/aws-sdk-go/aws/request" "github.com/aws/aws-sdk-go/private/protocol/xml/...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/private/protocol/query/unmarshal_error.go
vendor/github.com/aws/aws-sdk-go/private/protocol/query/unmarshal_error.go
package query import ( "encoding/xml" "fmt" "strings" "github.com/aws/aws-sdk-go/aws/awserr" "github.com/aws/aws-sdk-go/aws/request" "github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil" ) // UnmarshalErrorHandler is a name request handler to unmarshal request errors var UnmarshalErrorHandler = request.Name...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/private/protocol/query/queryutil/queryutil.go
vendor/github.com/aws/aws-sdk-go/private/protocol/query/queryutil/queryutil.go
package queryutil import ( "encoding/base64" "fmt" "math" "net/url" "reflect" "sort" "strconv" "strings" "time" "github.com/aws/aws-sdk-go/private/protocol" ) const ( floatNaN = "NaN" floatInf = "Infinity" floatNegInf = "-Infinity" ) // Parse parses an object i and fills a url.Values object. The ...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/private/protocol/jsonrpc/jsonrpc.go
vendor/github.com/aws/aws-sdk-go/private/protocol/jsonrpc/jsonrpc.go
// Package jsonrpc provides JSON RPC utilities for serialization of AWS // requests and responses. package jsonrpc //go:generate go run -tags codegen ../../../private/model/cli/gen-protocol-tests ../../../models/protocol_tests/input/json.json build_test.go //go:generate go run -tags codegen ../../../private/model/cli/...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/private/protocol/jsonrpc/unmarshal_error.go
vendor/github.com/aws/aws-sdk-go/private/protocol/jsonrpc/unmarshal_error.go
package jsonrpc import ( "bytes" "io" "io/ioutil" "net/http" "strings" "github.com/aws/aws-sdk-go/aws/awserr" "github.com/aws/aws-sdk-go/aws/request" "github.com/aws/aws-sdk-go/private/protocol" "github.com/aws/aws-sdk-go/private/protocol/json/jsonutil" ) const ( awsQueryError = "x-amzn-query-error" // A ...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil/sort.go
vendor/github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil/sort.go
package xmlutil import ( "encoding/xml" "strings" ) type xmlAttrSlice []xml.Attr func (x xmlAttrSlice) Len() int { return len(x) } func (x xmlAttrSlice) Less(i, j int) bool { spaceI, spaceJ := x[i].Name.Space, x[j].Name.Space localI, localJ := x[i].Name.Local, x[j].Name.Local valueI, valueJ := x[i].Value, x[j...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil/xml_to_struct.go
vendor/github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil/xml_to_struct.go
package xmlutil import ( "encoding/xml" "fmt" "io" "sort" ) // A XMLNode contains the values to be encoded or decoded. type XMLNode struct { Name xml.Name `json:",omitempty"` Children map[string][]*XMLNode `json:",omitempty"` Text string `json:",omitempty"` Attr []xml.A...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil/build.go
vendor/github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil/build.go
// Package xmlutil provides XML serialization of AWS requests and responses. package xmlutil import ( "encoding/base64" "encoding/xml" "fmt" "math" "reflect" "sort" "strconv" "strings" "time" "github.com/aws/aws-sdk-go/private/protocol" ) const ( floatNaN = "NaN" floatInf = "Infinity" floatNegInf ...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil/unmarshal.go
vendor/github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil/unmarshal.go
package xmlutil import ( "bytes" "encoding/base64" "encoding/xml" "fmt" "io" "math" "reflect" "strconv" "strings" "time" "github.com/aws/aws-sdk-go/aws/awserr" "github.com/aws/aws-sdk-go/private/protocol" ) // UnmarshalXMLError unmarshals the XML error from the stream into the value // type specified. Th...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/private/protocol/json/jsonutil/build.go
vendor/github.com/aws/aws-sdk-go/private/protocol/json/jsonutil/build.go
// Package jsonutil provides JSON serialization of AWS requests and responses. package jsonutil import ( "bytes" "encoding/base64" "fmt" "math" "reflect" "sort" "strconv" "time" "github.com/aws/aws-sdk-go/aws" "github.com/aws/aws-sdk-go/private/protocol" ) const ( floatNaN = "NaN" floatInf = "Infin...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/private/protocol/json/jsonutil/unmarshal.go
vendor/github.com/aws/aws-sdk-go/private/protocol/json/jsonutil/unmarshal.go
package jsonutil import ( "bytes" "encoding/base64" "encoding/json" "fmt" "io" "math" "math/big" "reflect" "strings" "time" "github.com/aws/aws-sdk-go/aws" "github.com/aws/aws-sdk-go/aws/awserr" "github.com/aws/aws-sdk-go/private/protocol" ) var millisecondsFloat = new(big.Float).SetInt64(1e3) // Unmar...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/private/protocol/rest/build.go
vendor/github.com/aws/aws-sdk-go/private/protocol/rest/build.go
// Package rest provides RESTful serialization of AWS requests and responses. package rest import ( "bytes" "encoding/base64" "fmt" "io" "math" "net/http" "net/url" "path" "reflect" "strconv" "strings" "time" "github.com/aws/aws-sdk-go/aws" "github.com/aws/aws-sdk-go/aws/awserr" "github.com/aws/aws-sdk...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/private/protocol/rest/unmarshal.go
vendor/github.com/aws/aws-sdk-go/private/protocol/rest/unmarshal.go
package rest import ( "bytes" "encoding/base64" "fmt" "io" "io/ioutil" "math" "net/http" "reflect" "strconv" "strings" "time" "github.com/aws/aws-sdk-go/aws" "github.com/aws/aws-sdk-go/aws/awserr" "github.com/aws/aws-sdk-go/aws/request" awsStrings "github.com/aws/aws-sdk-go/internal/strings" "github.c...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/private/protocol/rest/payload.go
vendor/github.com/aws/aws-sdk-go/private/protocol/rest/payload.go
package rest import "reflect" // PayloadMember returns the payload field member of i if there is one, or nil. func PayloadMember(i interface{}) interface{} { if i == nil { return nil } v := reflect.ValueOf(i).Elem() if !v.IsValid() { return nil } if field, ok := v.Type().FieldByName("_"); ok { if payload...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/private/protocol/restjson/restjson.go
vendor/github.com/aws/aws-sdk-go/private/protocol/restjson/restjson.go
// Package restjson provides RESTful JSON serialization of AWS // requests and responses. package restjson //go:generate go run -tags codegen ../../../private/model/cli/gen-protocol-tests ../../../models/protocol_tests/input/rest-json.json build_test.go //go:generate go run -tags codegen ../../../private/model/cli/gen...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/aws/aws-sdk-go/private/protocol/restjson/unmarshal_error.go
vendor/github.com/aws/aws-sdk-go/private/protocol/restjson/unmarshal_error.go
package restjson import ( "bytes" "encoding/json" "io" "io/ioutil" "net/http" "strings" "github.com/aws/aws-sdk-go/aws/awserr" "github.com/aws/aws-sdk-go/aws/request" "github.com/aws/aws-sdk-go/private/protocol" "github.com/aws/aws-sdk-go/private/protocol/json/jsonutil" "github.com/aws/aws-sdk-go/private/p...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false