Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 140 for Implementation (0.43 sec)

  1. RELEASE_BRANCHES.md

            * Is this turned on by default?
            * How many users are affected by this change?
    
    ## Feature implementation
    
    Release managers will continue to have a final say in what gets merged or not, unless directed by the TOC. See the next
    section if the implementation is done, but a bug is being addressed.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 12 23:27:43 UTC 2021
    - 3.9K bytes
    - Viewed (0)
  2. 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)
  3. operator/pkg/tpath/struct.go

    func GetFromStructPath(node any, path string) (any, bool, error) {
    	return getFromStructPath(node, util.PathFromString(path))
    }
    
    // getFromStructPath is the internal implementation of GetFromStructPath which recurses through a tree of Go structs
    // given a path. It terminates when the end of the path is reached or a path element does not exist.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  4. 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)
  5. releasenotes/notes/2309-gateway-api.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    
    issue:
      - https://github.com/kubernetes-sigs/gateway-api/issues/2309
    
    releaseNotes:
    - |
      **Fixed** Istio's Gateway API implementation to adhere to the Gateway API
      requirement that a `group: ""` field must be set for a `parentRef` of `kind: Service`.
      Istio previously tolerated the missing group for Service-kind parent references. This
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 25 22:57:42 UTC 2023
    - 470 bytes
    - Viewed (0)
  6. architecture/networking/pilot.md

    * The Gateway Class controller is a simple controller that just writes a default `GatewayClass` object describing our implementation.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  7. pilot/pkg/config/memory/controller.go

    )
    
    // Controller is an implementation of ConfigStoreController.
    type Controller struct {
    	monitor     Monitor
    	configStore model.ConfigStore
    	hasSynced   func() bool
    
    	// If meshConfig.DiscoverySelectors are specified, the namespacesFilter tracks the namespaces this controller watches.
    	namespacesFilter func(obj interface{}) bool
    }
    
    // NewController return an implementation of ConfigStoreController
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 26 13:54:32 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  8. pkg/h2c/wrapper.go

    )
    
    // NewHandler returns an http.Handler that wraps h, intercepting any h2c
    // traffic. See h2c.NewHandler for details.
    // Unlike the normal handler, this handler prevents h2c Upgrades, which are not safe in Go's implementation;
    // see https://github.com/golang/go/issues/56352.
    // This means we allow only HTTP/1.1 or HTTP/2 prior knowledge.
    func NewHandler(h http.Handler, s *http2.Server) http.Handler {
    	return denyH2cUpgrade(h2c.NewHandler(h, s))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 09 08:02:48 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  9. pkg/hbone/dialer.go

    		copyBuffered(pw, conn, log.WithLabels("name", "conn to pipe"))
    
    		wg.Wait()
    		log.Infof("stream closed in %v", time.Since(t0))
    	}()
    
    	return nil
    }
    
    // TLSDialWithDialer is an implementation of tls.DialWithDialer that accepts a generic Dialer
    func TLSDialWithDialer(dialer Dialer, network, addr string, config *tls.Config) (*tls.Conn, error) {
    	return tlsDial(context.Background(), dialer, network, addr, config)
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 15:56:41 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  10. releasenotes/notes/filter-order.yaml

    releaseNotes:
      - |
        **Improved** the ordering of HTTP and TCP envoy filters to improve consistency
    upgradeNotes:
      - title: "Envoy filter ordering"
        content: |
          This change impacts internal implementation of how Envoy "filters" are ordered. These filters run in order to implement various functionality.
          
          The ordering is now consistent across inbound, outbound and gateway proxy modes, as well as HTTP and TCP protocols:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Sep 15 18:28:50 UTC 2023
    - 895 bytes
    - Viewed (0)
Back to top