Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 140 for Implementation (0.16 sec)

  1. pkg/test/echo/server/forwarder/protocol.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    // An example implementation of a client.
    
    package forwarder
    
    import (
    	"context"
    
    	"istio.io/istio/pkg/test/echo/proto"
    )
    
    type protocol interface {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 10 18:09:08 UTC 2022
    - 834 bytes
    - Viewed (0)
  2. architecture/ambient/peer-authentication.md

    # PeerAuthentication Implementation in Ambient
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 09 22:09:18 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  3. releasenotes/notes/fix-eks-ipv6.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - 36961
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 08 20:18:08 UTC 2022
    - 246 bytes
    - Viewed (0)
  4. istioctl/pkg/writer/compare/sds/writer.go

    func NewSDSWriter(w io.Writer, format Format) SDSWriter {
    	return &sdsWriter{
    		w:      w,
    		output: format,
    	}
    }
    
    // sdsWriter is provided concrete implementation of SDSWriter
    type sdsWriter struct {
    	w      io.Writer
    	output Format
    }
    
    // PrintSecretItems uses the user supplied output format to determine how to display the diffed secrets
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 21 14:17:23 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  5. samples/wasm_modules/header_injector/plugin.cc

    #include "plugin.h"
    
    #ifndef INJECTION_VERSION
    #error INJECTION_VERSION must be defined
    #endif // INJECTION_VERSION
    
    #define xstr(s) str(s)
    #define str(s) #s
    
    // Boilderplate code to register the extension implementation.
    static RegisterContextFactory register_HeaderInjector(CONTEXT_FACTORY(HeaderInjectorContext),
                                                   ROOT_FACTORY(HeaderInjectorRootContext));
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 24 21:22:06 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  6. pkg/config/schema/collection/schema.go

    	}
    
    	return s
    }
    
    type schemaImpl struct {
    	resource     resource.Schema
    	name         config.GroupVersionKind
    	variableName string
    }
    
    // String interface method implementation.
    func (s *schemaImpl) String() string {
    	return fmt.Sprintf("[Schema](%s, %q, %s)", s.name, s.resource.ProtoPackage(), s.resource.Proto())
    }
    
    func (s *schemaImpl) VariableName() string {
    	return s.variableName
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 01 01:34:15 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/node/v1/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)
  8. pilot/pkg/leaderelection/k8sleaderelection/healthzadaptor_test.go

    func (fl *fakeLock) Key() string {
    	return fl.key
    }
    
    // Describe is a dummy to allow us to have a fakeLock for testing.
    func (fl *fakeLock) Describe() string {
    	return "Dummy implementation of lock for testing"
    }
    
    // TestLeaderElectionHealthChecker tests that the healthcheck for leader election handles its edge cases.
    func TestLeaderElectionHealthChecker(t *testing.T) {
    	current := time.Now()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 12 18:41:53 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  9. manifests/charts/base/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.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. manifests/charts/ztunnel/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.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top