Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 89 for Implementation (0.21 sec)

  1. tools/istio-iptables/pkg/dependencies/implementation.go

    	XTablesParameterProblem: "xtables parameter problem",
    	XTablesVersionProblem:   "xtables version problem",
    	XTablesResourceProblem:  "xtables resource problem",
    }
    
    // RealDependencies implementation of interface Dependencies, which is used in production
    type RealDependencies struct {
    	NetworkNamespace string
    	CNIMode          bool
    }
    
    const iptablesVersionPattern = `v([0-9]+(\.[0-9]+)+)`
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 19:54:50 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  2. architecture/ambient/ztunnel.md

    ## Proxy implementation
    
    In its initial implementations, the ztunnel was actually implemented in 3 different ways: a bespoke Rust implementation, a bespoke Go implementation, and in Envoy.
    
    In the end, [after evaluation](https://docs.google.com/document/d/1c2123cKuYsBDpIon9FFdctWTUIMFweSjgwG7r8l3818/edit), the decision was to move forward with a Rust implementation.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 22:35:16 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. releasenotes/notes/delta-xds-default.yaml

          In this release, the ["Delta"](https://www.envoyproxy.io/docs/envoy/latest/api-docs/xds_protocol#incremental-xds) xDS protocol is enabled by default.
    
          This should be an internal implementation detail, but because this controls the core configuration protocol in Istio,
          an upgrade notice is present in an abundance of caution.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 17:43:13 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. tests/integration/pilot/testdata/gateway-api-crd.yaml

    
                          For implementations creating other Kubernetes objects, this should be the `metadata.annotations` field on resources.
                          For other implementations, this refers to any relevant (implementation specific) "annotations" concepts.
    
    
                          An implementation may chose to add additional implementation-specific annotations as they see fit.
    
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 02:01:51 UTC 2024
    - 912.2K bytes
    - Viewed (0)
  5. tools/istio-iptables/pkg/config/validation.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package config
    
    import (
    	"fmt"
    	"net/netip"
    )
    
    const (
    	// Due to implementation constraints, we have to impose a limit on the
    	// number of owner groups whose outgoing traffic should be redirected
    	// to Envoy.
    	//
    	// Since all included groups will be translated into a single Iptables
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 11 02:38:28 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. pilot/pkg/util/protoconv/protoconv.go

    	if features.EnableVtprotobuf {
    		if vt, ok := msg.(vtStrictMarshal); ok {
    			// Attempt to use more efficient implementation
    			// "Strict" is the equivalent to Deterministic=true below
    			return vt.MarshalVTStrict()
    		}
    	}
    	// If not available, fallback to normal implementation
    	return proto.MarshalOptions{Deterministic: true}.Marshal(msg)
    }
    
    // MessageToAny converts from proto message to proto Any
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 04:55:40 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  7. pkg/config/resource/origin.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package resource
    
    import "istio.io/istio/pkg/cluster"
    
    // Origin of a resource. This is source-implementation dependent.
    type Origin interface {
    	FriendlyName() string
    	Namespace() Namespace
    	Reference() Reference
    
    	// FieldMap returns the flat map containing paths of the fields in the resource as keys,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. releasenotes/notes/48843.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: security
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 17 20:12:58 UTC 2024
    - 241 bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/node/v1beta1/generated.proto

      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
    
      // handler specifies the underlying runtime and configuration that the CRI
      // implementation will use to handle pods of this class. The possible values
      // are specific to the node & CRI configuration.  It is assumed that all
      // handlers are available on every node, and handlers of the same name are
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  10. tests/integration/ambient/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: Thu May 02 21:29:40 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top