Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 140 for Implementation (0.26 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/channels/unbounded.go

    // Package buffer provides an implementation of an unbounded buffer.
    package channels
    
    // Heavily inspired by the private library from gRPC (https://raw.githubusercontent.com/grpc/grpc-go/master/internal/buffer/unbounded.go)
    // Since it cannot be imported directly it is mirror here. Original license:
    /*
     * Copyright 2019 gRPC authors.
     *
     * Licensed under the Apache License, Version 2.0 (the "License");
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 31 19:53:39 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. pkg/ctrlz/topics/collection.go

    }
    
    // collection topic is a Topic fw.implementation that exposes a set of collections through CtrlZ.
    type collectionTopic struct {
    	title       string
    	prefix      string
    	collections []ReadableCollection
    
    	mainTmpl *template.Template
    	listTmpl *template.Template
    	itemTmpl *template.Template
    }
    
    var _ fw.Topic = &collectionTopic{}
    
    // Title is implementation of Topic.Title.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 14:06:41 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  8. 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)
  9. pkg/filewatcher/fakefilewatcher.go

    )
    
    // NewFileWatcherFunc returns a function which creates a new file
    // watcher. This may be used to provide test hooks for using the
    // FakeWatcher implementation below.
    type NewFileWatcherFunc func() FileWatcher
    
    // FakeWatcher provides a fake file watcher implementation for unit
    // tests. Production code should use the `NewWatcher()`.
    type FakeWatcher struct {
    	sync.Mutex
    
    	events      map[string]chan fsnotify.Event
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 14:06:41 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  10. 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)
Back to top