Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 89 for Implementation (0.19 sec)

  1. manifests/charts/istio-cni/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
    - 2.5K bytes
    - Viewed (0)
  2. pkg/kube/krt/bench_test.go

    	"istio.io/istio/pkg/test"
    )
    
    type Workload struct {
    	krt.Named
    	ServiceNames []string
    	IP           string
    }
    
    // GetLabelSelector defaults to using Reflection which is slow. Provide a specialized implementation that does it more efficiently.
    type ServiceWrapper struct{ *v1.Service }
    
    func (s ServiceWrapper) GetLabelSelector() map[string]string {
    	return s.Spec.Selector
    }
    
    var _ krt.LabelSelectorer = ServiceWrapper{}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 09 19:55:53 UTC 2024
    - 7K bytes
    - Viewed (0)
  3. tests/integration/README.md

    environment-specific details. This means that the test code can (and should, where possible) be written in an
    environment-agnostic manner, so that they can be run against any Istio implementation.
    
    For example, the following code creates and then interacts with a Galley and Pilot component:
    
    ```go
    func TestMyLogic(t *testing.T) {
        framework.
            NewTest(t).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  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