Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 918 for It (0.07 sec)

  1. common-protos/k8s.io/api/extensions/v1beta1/generated.proto

      // be ready without any of its container crashing, for it to be considered
      // available. Defaults to 0 (pod will be considered available as soon as it
      // is ready).
      // +optional
      optional int32 minReadySeconds = 4;
    
      // DEPRECATED.
      // A sequence number representing a specific generation of the template.
      // Populated by the system. It can be set only during the creation.
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  2. pilot/cmd/pilot-agent/app/fds.go

    //
    // Go already sets this (https://github.com/golang/go/issues/46279).
    // However, it will restore the original limit for subprocesses (Envoy):
    // https://github.com/golang/go/blob/f0d1195e13e06acdf8999188decc63306f9903f5/src/syscall/rlimit.go#L14.
    // By explicitly doing it ourselves, we get the limit passed through to Envoy.
    //
    // This function returns the new limit additionally, for convenience.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 22:16:26 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. security/pkg/nodeagent/cache/secretcache.go

    	var expireTime time.Time
    	// Cert expire time by default is createTime + sc.configOptions.SecretTTL.
    	// Istiod respects SecretTTL that passed to it and use it decide TTL of cert it issued.
    	// Some customer CA may override TTL param that's passed to it.
    	if expireTime, err = nodeagentutil.ParseCertAndGetExpiryTimestamp(certChain); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 04 08:29:46 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  4. pkg/channels/unbounded.go

    package channels
    
    // Heavily inspired by the private library from gRPC (https://raw.githubusercontent.com/grpc/grpc-go/master/internal/buffer/unbounded.go)
    // Since it cannot be imported directly it is mirror here. Original license:
    /*
     * Copyright 2019 gRPC authors.
     *
     * Licensed under the Apache License, Version 2.0 (the "License");
     * you may not use this file except in compliance with the License.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 31 19:53:39 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  5. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // The field is populated by the apiserver only if the
      // StorageVersionHash feature gate is enabled.
      // This field will remain optional even if it graduates.
      // +optional
      optional string storageVersionHash = 10;
    }
    
    // APIResourceList is a list of APIResource, it is used to expose the name of the
    // resources supported in a specific group and version, and if the resource
    // is namespaced.
    message APIResourceList {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  6. 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)
  7. pkg/kube/krt/join.go

    	res := []T{}
    	found := sets.New[Key[T]]()
    	for _, c := range j.collections {
    		for _, i := range c.List() {
    			key := GetKey(i)
    			if !found.InsertContains(key) {
    				// Only keep it if it is the first time we saw it, as our merging mechanism is to keep the first one
    				res = append(res, i)
    			}
    		}
    	}
    	return res
    }
    
    func (j *join[T]) Register(f func(o Event[T])) Syncer {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  8. tools/packaging/packaging.mk

    # where we are just pushing to a local registry (compressed again!), it adds ~1min to builds.
    ifneq ($(FAST_VM_BUILDS),)
    DEB_COMPRESSION=--deb-compression=none
    RPM_COMPRESSION=--rpm-compression=none
    endif
    
    # Base directory for istio binaries. Likely to change !
    ISTIO_DEB_BIN=/usr/local/bin
    
    # Home directory of istio-proxy user. It is symlinked /etc/istio --> /var/lib/istio
    ISTIO_PROXY_HOME=/var/lib/istio
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 06 19:54:32 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  9. operator/cmd/mesh/operator-init.go

    	installerScope.Debugf("Using the following manifest to install operator:\n%s\n", mstr)
    
    	opts := &applyOptions{
    		DryRun: args.DryRun,
    	}
    
    	// If CR was passed, we must create a namespace for it and install CR into it.
    	customResource, istioNamespace, err := getCRAndNamespaceFromFile(oiArgs.inFilename, l)
    	if err != nil {
    		l.LogAndFatal(err)
    	}
    	var iop *iopv1alpha1.IstioOperator
    	if oiArgs.common.revision != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. samples/addons/README.md

    ### Kiali
    
    [Kiali](https://kiali.io/) is an observability console for Istio with service mesh configuration capabilities.
    It helps you to understand the structure of your service mesh by inferring the topology, and also provides the health of your mesh.
    Kiali provides detailed metrics, and a basic [Grafana](#grafana) integration is available for advanced queries.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 18:28:55 UTC 2023
    - 5.3K bytes
    - Viewed (0)
Back to top