Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 269 for It (0.02 sec)

  1. pilot/pkg/model/jwks_resolver.go

    	openIDDiscoveryCfgURLSuffix = "/.well-known/openid-configuration"
    
    	// JwtPubKeyEvictionDuration is the life duration for cached item.
    	// Cached item will be removed from the cache if it hasn't been used longer than JwtPubKeyEvictionDuration or if pilot
    	// has failed to refresh it for more than JwtPubKeyEvictionDuration.
    	JwtPubKeyEvictionDuration = 24 * 7 * time.Hour
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  2. pkg/wasm/convert.go

    }
    
    // tryUnmarshal returns the typed extension config and wasm config by unmarsharling `resource`,
    // if `resource` is a wasm config loading a wasm module from the remote site.
    // It returns `nil` for both the typed extension config and wasm config if it is not for the remote wasm or has an error.
    func tryUnmarshal(resource *anypb.Any) (*core.TypedExtensionConfig, *httpwasm.Wasm, *networkwasm.Wasm, error) {
    	ec := &core.TypedExtensionConfig{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/networking/v1/generated.proto

      //   of the last element in request path, it is not a match (e.g. /foo/bar
      //   matches /foo/bar/baz, but does not match /foo/barbaz).
      // * ImplementationSpecific: Interpretation of the Path matching is up to
      //   the IngressClass. Implementations can treat this as a separate PathType
      //   or treat it identically to Prefix or Exact path types.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  4. pkg/kube/multicluster/secretcontroller.go

    	c.handlers = append(c.handlers, h)
    }
    
    // Run starts the controller until it receives a message over stopCh
    func (c *Controller) Run(stopCh <-chan struct{}) error {
    	// run handlers for the config cluster; do not store this *Cluster in the ClusterStore or give it a SyncTimeout
    	// this is done outside the goroutine, we should block other Run/startFuncs until this is registered
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 02:13:10 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/conditions.go

    	seen := map[k8s.ParentReference][]RouteParentResult{}
    	seenReasons := sets.New[ParentErrorReason]()
    	successCount := map[k8s.ParentReference]int{}
    	for _, incoming := range parentResults {
    		// We will append it if it is our first occurrence, or the existing one has an error. This means
    		// if *any* section has no errors, we will declare Admitted
    		if incoming.DeniedReason == nil {
    			successCount[incoming.OriginalReference]++
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 13:05:41 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/autoscaling/v2/generated.proto

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    
    // This file was autogenerated by go-to-protobuf. Do not edit it manually!
    
    syntax = "proto2";
    
    package k8s.io.api.autoscaling.v2;
    
    import "k8s.io/api/core/v1/generated.proto";
    import "k8s.io/apimachinery/pkg/api/resource/generated.proto";
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  7. tests/integration/README.md

    as it stands is a singleton per cluster. If multiple suites attempt to deploy/configure Istio,
    they can corrupt each other and/or simply fail.  To avoid this issue, you have a couple of options:
    
    1. Run one suite per command (e.g. `go test ./tests/integration/mysuite/...`)
    1. Disable parallelism with `-p 1` (e.g. `go test -p 1 ./...`). A major disadvantage to doing this is that it will also disable
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  8. pkg/config/constants/constants.go

    	// AmbientRedirectionEnabled indicates redirection is configured. This is set by the CNI on pods
    	// when it actually has successfully set up pod redirection, rather than by the user.
    	//
    	// The presence of this annotation with this specific value indicates the pod is captured.
    	// Anything else indicates it is not.
    	AmbientRedirectionEnabled = "enabled"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. licenses/github.com/hashicorp/go-version/LICENSE

         under the terms of Section 3.3).
    
    2.5. Representation
    
         Each Contributor represents that the Contributor believes its Contributions
         are its original creation(s) or it has sufficient rights to grant the
         rights to its Contributions conveyed by this License.
    
    2.6. Fair Use
    
         This License is not intended to limit any rights You have under applicable
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:40 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex.go

    	// First, we want to handle VIP subscriptions. Example:
    	// Client subscribes to VIP1. Pod1, part of VIP1, is sent.
    	// The client wouldn't be explicitly subscribed to Pod1, so it would normally ignore it.
    	// Since it is a part of VIP1 which we are subscribe to, add it to the subscriptions
    	for addr := range allAddresses {
    		for _, wl := range model.ExtractWorkloadsFromAddresses(a.Lookup(addr)) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 19 17:19:41 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top