Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 135 for Implementation (0.18 sec)

  1. pkg/kube/krt/internal.go

    	ak, ok := any(a).(Equaler[O])
    	if ok {
    		return ak.Equals(b)
    	}
    	pk, ok := any(&a).(Equaler[O])
    	if ok {
    		return pk.Equals(b)
    	}
    	// Future improvement: add a default Kubernetes object implementation
    	// ResourceVersion is tempting but probably not safe. If we are comparing objects from the API server its fine,
    	// but often we will be operating on types generated by the controller itself.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. pilot/pkg/config/monitor/monitor.go

    			}
    		}
    	}()
    	return nil
    }
    
    // recursiveWatcher wraps a fsnotify wrapper to add a best-effort recursive directory watching in user
    // space. See https://github.com/fsnotify/fsnotify/issues/18. The implementation is inherently racy,
    // as files added to a directory immediately after creation may not trigger events; as such it is only useful
    // when an event causes a full reconciliation, rather than acting on an individual event
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 17:36:33 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  3. manifests/charts/istio-control/istio-discovery/README.md

    For consistency, the same profiles are used across each chart, even if they do not impact a given chart.
    
    Explicitly set values have highest priority, then profile settings, then chart defaults.
    
    As an implementation detail of profiles, the default values for the chart are all nested under `defaults`.
    When configuring the chart, you should not include this.
    That is, `--set some.field=true` should be passed, not `--set defaults.some.field=true`.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/ingress/conversion.go

    func createFallbackStringMatch(s string) *networking.StringMatch {
    	// If the string is empty or a wildcard, return nil
    	if s == "" || s == "*" || s == "/*" || s == ".*" {
    		return nil
    	}
    
    	// Note that this implementation only converts prefix and exact matches, not regexps.
    
    	// Replace e.g. "foo.*" with prefix match
    	if strings.HasSuffix(s, ".*") {
    		return &networking.StringMatch{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 25 07:19:43 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  5. pkg/security/security.go

    	RootCertFilePath string
    }
    
    // Client interface defines the clients need to implement to talk to CA for CSR.
    // The Agent will create a key pair and a CSR, and use an implementation of this
    // interface to get back a signed certificate. There is no guarantee that the SAN
    // in the request will be returned - server may replace it.
    type Client interface {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  6. pkg/test/framework/components/environment/kube/kube.go

    	"istio.io/istio/pkg/test/framework/components/cluster/kube"
    	"istio.io/istio/pkg/test/framework/config"
    	"istio.io/istio/pkg/test/framework/resource"
    	"istio.io/istio/pkg/test/scopes"
    )
    
    // Environment is the implementation of a kubernetes environment. It implements environment.Environment,
    // and also hosts publicly accessible methods that are specific to cluster environment.
    type Environment struct {
    	id       resource.ID
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  7. pilot/pkg/networking/grpcgen/grpcgen.go

    // The same response can also be used by other apps using XDS directly.
    
    // GRPC proposal:
    // https://github.com/grpc/proposal/blob/master/A27-xds-global-load-balancing.md
    //
    // Note that this implementation is tested against gRPC, but it is generic - any other framework can
    // use this XDS mode to get load balancing info from Istio, including MC/VM/etc.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  8. security/pkg/util/certutil.go

    type CertUtil interface {
    	// GetWaitTime returns the waiting time before renewing the certificate.
    	GetWaitTime([]byte, time.Time) (time.Duration, error)
    }
    
    // CertUtilImpl is the implementation of CertUtil, for production use.
    type CertUtilImpl struct {
    	gracePeriodPercentage int
    }
    
    // NewCertUtil returns a new CertUtilImpl
    func NewCertUtil(gracePeriodPercentage int) CertUtilImpl {
    	return CertUtilImpl{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 30 19:33:26 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  9. pkg/kube/multicluster/secretcontroller.go

    type ClientBuilder = func(kubeConfig []byte, clusterId cluster.ID, configOverrides ...func(*rest.Config)) (kube.Client, error)
    
    // Controller is the controller implementation for Secret resources
    type Controller struct {
    	namespace            string
    	configClusterID      cluster.ID
    	configCluster        *Cluster
    	configClusterSyncers []ComponentConstraint
    
    	ClientBuilder ClientBuilder
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 02:13:10 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  10. pkg/config/analysis/msg/messages.yaml

    messages:
      - name: "InternalError"
        code: IST0001
        level: Error
        description: "There was an internal error in the toolchain. This is almost always a bug in the implementation."
        template: "Internal error: %v"
        args:
          - name: detail
            type: string
    
      - name: "Deprecated"
        code: IST0002
        level: Warning
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
Back to top