Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 83 for Implementation (0.21 sec)

  1. pkg/model/xds.go

    	HealthInfoType  = APITypePrefix + "istio.v1.HealthInformation"
    	ProxyConfigType = APITypePrefix + "istio.mesh.v1alpha1.ProxyConfig"
    	// DebugType requests debug info from istio, a secured implementation for istio debug interface.
    	DebugType                 = "istio.io/debug"
    	BootstrapType             = APITypePrefix + "envoy.config.bootstrap.v3.Bootstrap"
    	AddressType               = APITypePrefix + "istio.workload.Address"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 04 20:29:08 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. pilot/pkg/security/trustdomain/util.go

    	if !strings.HasPrefix(pattern, "*") {
    		return false
    	}
    	pattern = strings.TrimPrefix(pattern, "*")
    	return strings.HasSuffix(a, pattern)
    }
    
    // isKeyInList it's fine to use this naive implementation for searching in a very short list.
    func isKeyInList(key string, list []string) bool {
    	for _, l := range list {
    		if key == l {
    			return true
    		}
    	}
    	return false
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 13 15:27:59 UTC 2021
    - 2K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top