Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 314 for It (0.02 sec)

  1. pilot/pkg/model/gateway.go

    						}
    
    						// We have TLS settings defined and we have already taken care of unique route names
    						// if it is HTTPS. So we can construct a QUIC server on the same port. It is okay as
    						// QUIC listens on UDP port, not TCP
    						if features.EnableQUICListeners && gateway.IsEligibleForHTTP3Upgrade(s) &&
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/autoscaling/v2beta2/generated.proto

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    
    // This file was autogenerated by go-to-protobuf. Do not edit it manually!
    
    syntax = "proto2";
    
    package k8s.io.api.autoscaling.v2beta2;
    
    import "k8s.io/api/core/v1/generated.proto";
    import "k8s.io/apimachinery/pkg/api/resource/generated.proto";
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/calloptions.go

    	"istio.io/istio/pkg/test/util/retry"
    )
    
    // HTTP settings
    type HTTP struct {
    	// If true, h2c will be used in HTTP requests
    	HTTP2 bool
    
    	// If true, HTTP/3 request over QUIC will be used.
    	// It is mandatory to specify TLS settings
    	HTTP3 bool
    
    	// Path specifies the URL path for the HTTP(s) request.
    	Path string
    
    	// Method to send. Defaults to GET.
    	Method string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Oct 08 09:39:20 UTC 2023
    - 13K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/network.go

    // and if it is, updates the controller's gateways.
    func (c *Controller) extractGatewaysFromService(svc *model.Service) bool {
    	changed := c.extractGatewaysInner(svc)
    	if changed {
    		c.NotifyGatewayHandlers()
    	}
    	return changed
    }
    
    // reloadNetworkGateways performs extractGatewaysFromService for all services registered with the controller.
    // It is called only by `onNetworkChange`.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 22:23:22 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  5. pkg/config/mesh/mesh.go

    		// Code defaults
    		BinaryPath:     constants.BinaryPathFilename,
    		StatNameLength: 189,
    		StatusPort:     15020,
    	}
    }
    
    // DefaultMeshNetworks returns a default meshnetworks configuration.
    // By default, it is empty.
    func DefaultMeshNetworks() *meshconfig.MeshNetworks {
    	return ptr.Of(EmptyMeshNetworks())
    }
    
    // DefaultMeshConfig returns the default mesh config.
    // This is merged with values from the mesh config map.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 12K bytes
    - Viewed (0)
  6. tests/integration/security/pass_through_filter_chain_test.go

    							param.Namespace.String(): apps.Ns1.Namespace,
    						})).
    						// It's not trivial to force mTLS to pass-through ports. To work around this, we will
    						// set up a SE and DR that forces it.
    						//
    						// Since our client will talk directly to pods via IP, we have to configure the ports
    						// in the SE as TCP, since only TCP does will match based in IP address rather than host.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  7. pilot/pkg/bootstrap/configcontroller.go

    					// Note: stop here should be the overall pilot stop, NOT the leader election stop. We are
    					// basically lazy loading the informer, if we stop it when we lose the lock we will never
    					// recreate it again.
    					s.kubeClient.RunAndWait(stop)
    					log.Infof("Starting ingress controller")
    					ingressSyncer.Run(leaderStop)
    				}).
    				Run(stop)
    			return nil
    		})
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/networking/v1beta1/generated.proto

      //   of the last element in request path, it is not a match (e.g. /foo/bar
      //   matches /foo/bar/baz, but does not match /foo/barbaz).
      // * ImplementationSpecific: Interpretation of the Path matching is up to
      //   the IngressClass. Implementations can treat this as a separate PathType
      //   or treat it identically to Prefix or Exact path types.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  9. pilot/pkg/networking/grpcgen/lds.go

    //
    // See: xds/internal/httpfilter/rbac
    //
    // TODO: gRPC also supports 'per route override' - not yet clear how to use it, Istio uses path expressions instead and we don't generate
    // vhosts or routes for the inbound listener.
    //
    // For gateways it would make a lot of sense to use this concept, same for moving path prefix at top level ( more scalable, easier for users)
    // This should probably be done for the v2 API.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  10. pilot/pkg/xds/eds.go

    // This is the main method implementing EDS.
    // It replaces InstancesByPort in model - instead of iterating over all endpoints it uses
    // the hostname-keyed map. And it avoids the conversion from Endpoint to ServiceEntry to envoy
    // on each step: instead the conversion happens once, when an endpoint is first discovered.
    //
    // Note: the difference with `EDSUpdate` is that it only update the cache rather than requesting a push
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 15:58:06 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top