Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 135 for Implementation (0.25 sec)

  1. pilot/pkg/serviceregistry/kube/conversion.go

    // IsAutoPassthrough determines if a listener should use auto passthrough mode. This is used for
    // multi-network. In the Istio API, this is an explicit tls.Mode. However, this mode is not part of
    // the gateway-api, and leaks implementation details. We already have an API to declare a Gateway as
    // a multi-network gateway, so we will use this as a signal.
    // A user who wishes to expose multi-network connectivity should create a listener named "tls-passthrough"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  2. tests/integration/pilot/gateway_conformance_test.go

    					suite.GatewayHTTPConformanceProfileName,
    					suite.GatewayTLSConformanceProfileName,
    					suite.GatewayGRPCConformanceProfileName,
    					suite.MeshHTTPConformanceProfileName,
    				),
    				Implementation: confv1.Implementation{
    					Organization: "istio",
    					Project:      "istio",
    					URL:          "https://istio.io/",
    					Version:      istioVersion,
    					Contact:      []string{"@istio/maintainers"},
    				},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 15:22:47 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. pilot/pkg/config/memory/store.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    // Package memory provides an in-memory volatile config store implementation
    package memory
    
    import (
    	"errors"
    	"fmt"
    	"sync"
    	"time"
    
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/schema/collection"
    )
    
    var (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 26 01:14:27 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  4. pkg/istio-agent/grpcxds/grpc_bootstrap.go

    	// "0.0.0.0:8080", "[::]:8080").
    	ServerListenerNameTemplate = ServerListenerNamePrefix + "%s"
    )
    
    // Bootstrap contains the general structure of what's expected by GRPC's XDS implementation.
    // See https://github.com/grpc/grpc-go/blob/master/xds/internal/xdsclient/bootstrap/bootstrap.go
    // TODO use structs from gRPC lib if created/exported
    type Bootstrap struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  5. pilot/pkg/leaderelection/k8sleaderelection/leaderelection.go

    // election record to be accurate because these timestamps may not have been
    // produced by a local clock. The implementation does not depend on their
    // accuracy and only uses their change to indicate that another client has
    // renewed the leader lease. Thus the implementation is tolerant to arbitrary
    // clock skew, but is not tolerant to arbitrary clock skew rate.
    //
    // However the level of tolerance to skew rate can be configured by setting
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 24 04:04:42 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  6. pkg/kube/krt/informer.go

    	// Internal optimization: we know kclient will eventually lookup "ns/name"
    	// We also have a key in this format.
    	// Rather than split and rejoin it later, just pass it as the name
    	// This is depending on "unstable" implementation details, but we own both libraries and tests would catch any issues.
    	if got := i.inf.Get(string(k), ""); !controllers.IsNil(got) {
    		return &got
    	}
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 11:01:46 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. 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)
  8. pkg/config/resource/name.go

    	return string(n)
    }
    
    // FullName is a name that uniquely identifies a resource within the mesh.
    type FullName struct {
    	Namespace Namespace
    	Name      LocalName
    }
    
    // String interface implementation.
    func (n FullName) String() string {
    	if len(n.Namespace) == 0 {
    		return string(n.Name)
    	}
    	return string(n.Namespace) + "/" + string(n.Name)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 14 13:55:49 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top