Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 50 for Implementation (0.18 sec)

  1. pkg/kube/krt/internal.go

    	ak, ok := any(a).(Equaler[O])
    	if ok {
    		return ak.Equals(b)
    	}
    	pk, ok := any(&a).(Equaler[O])
    	if ok {
    		return pk.Equals(b)
    	}
    	// Future improvement: add a default Kubernetes object implementation
    	// ResourceVersion is tempting but probably not safe. If we are comparing objects from the API server its fine,
    	// but often we will be operating on types generated by the controller itself.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. pkg/security/security.go

    	RootCertFilePath string
    }
    
    // Client interface defines the clients need to implement to talk to CA for CSR.
    // The Agent will create a key pair and a CSR, and use an implementation of this
    // interface to get back a signed certificate. There is no guarantee that the SAN
    // in the request will be returned - server may replace it.
    type Client interface {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  3. pkg/test/framework/components/environment/kube/kube.go

    	"istio.io/istio/pkg/test/framework/components/cluster/kube"
    	"istio.io/istio/pkg/test/framework/config"
    	"istio.io/istio/pkg/test/framework/resource"
    	"istio.io/istio/pkg/test/scopes"
    )
    
    // Environment is the implementation of a kubernetes environment. It implements environment.Environment,
    // and also hosts publicly accessible methods that are specific to cluster environment.
    type Environment struct {
    	id       resource.ID
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  4. pkg/config/analysis/msg/messages.yaml

    messages:
      - name: "InternalError"
        code: IST0001
        level: Error
        description: "There was an internal error in the toolchain. This is almost always a bug in the implementation."
        template: "Internal error: %v"
        args:
          - name: detail
            type: string
    
      - name: "Deprecated"
        code: IST0002
        level: Warning
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  5. pkg/config/model.go

    	// queryable and should be preserved when modifying objects.
    	Annotations map[string]string `json:"annotations,omitempty"`
    
    	// ResourceVersion is an opaque identifier for tracking updates to the config registry.
    	// The implementation may use a change index or a commit log for the revision.
    	// The config client should not make any assumptions about revisions and rely only on
    	// exact equality to implement optimistic concurrency of read-write operations.
    	//
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  6. pilot/pkg/bootstrap/monitoring.go

    			return nil, fmt.Errorf("unable to listen on socket: %v", err)
    		}
    	}
    
    	// NOTE: this is a temporary solution to provide bare-bones debug functionality
    	// for pilot. a full design / implementation of self-monitoring and reporting
    	// is coming. that design will include proper coverage of statusz/healthz type
    	// functionality, in addition to how pilot reports its own metrics.
    	if err := addMonitor(mux); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. pkg/config/analysis/msg/messages.gen.go

    	"istio.io/istio/pkg/config/resource"
    )
    
    var (
    	// InternalError defines a diag.MessageType for message "InternalError".
    	// Description: There was an internal error in the toolchain. This is almost always a bug in the implementation.
    	InternalError = diag.NewMessageType(diag.Error, "IST0001", "Internal error: %v")
    
    	// Deprecated defines a diag.MessageType for message "Deprecated".
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  8. pkg/kube/krt/singleton.go

    	return c.c
    }
    
    var _ Singleton[any] = &collectionAdapter[any]{}
    
    func NewSingleton[O any](hf TransformationEmpty[O], opts ...CollectionOption) Singleton[O] {
    	// dummyCollection provides a trivial collection implementation that always provides a single dummyValue.
    	// This is an internal construct exclusively for implementing the "Singleton" pattern.
    	// This is so we can represent a singleton (a func() *O) as a collection (a func(I) *O).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  9. tools/istio-iptables/pkg/constants/constants.go

    	ValidationErrorCode     = 126
    )
    
    // DNS ports
    const (
    	IstioAgentDNSListenerPort = "15053"
    )
    
    // type of iptables operation/command to run, as an enum
    // the implementation will choose the correct underlying binary,
    // so callers should just use these enums to indicate what they want to do.
    type IptablesCmd int
    
    const (
    	IPTables        IptablesCmd = iota
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 01:42:30 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  10. cni/README.md

    | HOST_PROBE_SNAT_IPV6 | "fd16:9254:7127:1337:ffff:ffff:ffff:ffff" | IPv6 link local ranges are designed to be collision-resistant by default, and so this probably never needs to be overridden |
    
    ## Sidecar Mode Implementation Details
    
    Istio CNI injection is currently based on the same Pod annotations used in init-container/inject mode.
    
    ### Selection API
    
    - plugin config "exclude namespaces" applies first
    - ambient is enabled if:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 12.3K bytes
    - Viewed (0)
Back to top