Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 52 for Implementation (0.2 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. pkg/util/hash/hash_test.go

    		wantSum                []byte
    		wantStr                string
    		wantUint64             uint64
    		wantLittleEndianUint64 uint64
    	}{
    		{
    			name: "foo",
    			str:  "foo",
    			// note: Different hash implementation may get different hash value
    			wantStr:    "33bf00a859c4ba3f",
    			wantUint64: 3728699739546630719,
    		},
    	}
    
    	for _, tt := range testCases {
    		t.Run(tt.name, func(t *testing.T) {
    			h := New()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 21 20:24:14 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. releasenotes/notes/35357.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: security
    issue:
      - 33472
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 13 06:19:07 UTC 2023
    - 291 bytes
    - Viewed (0)
  4. releasenotes/notes/external-name.yaml

          Wherever we would match `Host: <concrete service>` we additionally will match `Host: <external name service>`.
          Note that the primary implementation of `ExternalName` -- DNS -- is handled outside of Istio in the Kubernetes DNS implementation, and remains unchanged.
          
          If you are using `ExternalName` with Istio, please be advised of the following behavioral changes:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 27 03:08:29 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  5. releasenotes/notes/drop-telemetry-envoyfilter.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: telemetry
    releaseNotes:
      - |
        **Removed** legacy `EnvoyFilter` implementation for telemetry. For the majority of users, this change has no impact, and
        was already enabled in previous releases. However, the following fields are no longer respected: `prometheus.configOverride`,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 13 03:23:36 UTC 2023
    - 436 bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. releasenotes/notes/external-name-on.yaml

          Wherever we would match `Host: <concrete service>` we additionally will match `Host: <external name service>`.
          Note that the primary implementation of `ExternalName` -- DNS -- is handled outside of Istio in the Kubernetes DNS implementation, and remains unchanged.
    
          If you are using `ExternalName` with Istio, please be advised of the following behavioral changes:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 02 18:58:52 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  10. 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)
Back to top