Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 135 of 135 for Implementation (0.14 sec)

  1. pkg/test/framework/components/echo/kube/deployment.go

    	"istio.io/istio/pkg/util/protomarshal"
    )
    
    const (
    	// for proxyless we add a special gRPC server that doesn't get configured with xDS for test-runner use
    	grpcMagicPort = 17171
    	// for non-Go implementations of gRPC echo, this is the port used to forward non-gRPC requests to the Go server
    	grpcFallbackPort = 17777
    )
    
    var echoKubeTemplatesDir = path.Join(env.IstioSrc, "pkg/test/framework/components/echo/kube/templates")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  2. tests/integration/pilot/common/routing.go

    		port    string
    		dest    string
    		auth    string
    		checker echo.Checker
    	}{
    		// TODO: All these cases *should* succeed (except the TLS mismatch cases) - but don't due to issues in our implementation
    
    		// For auto port, outbound request will be delayed by the protocol sniffer, regardless of configuration
    		{"auto-tcp-server", "DISABLE", "DISABLE", check.Error()},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  3. pkg/test/echo/proto/echo_grpc.pb.go

    	if err != nil {
    		return nil, err
    	}
    	return out, nil
    }
    
    // EchoTestServiceServer is the server API for EchoTestService service.
    // All implementations must embed UnimplementedEchoTestServiceServer
    // for forward compatibility
    type EchoTestServiceServer interface {
    	Echo(context.Context, *EchoRequest) (*EchoResponse, error)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 26 01:14:28 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  4. pilot/pkg/model/controller.go

    	AppendServiceHandlerForCluster(clusterID cluster.ID, f ServiceHandler)
    	UnRegisterHandlersForCluster(clusterID cluster.ID)
    }
    
    // ControllerHandlers is a utility to help Controller implementations manage their lists of handlers.
    type ControllerHandlers struct {
    	mutex            sync.RWMutex
    	serviceHandlers  []ServiceHandler
    	workloadHandlers []func(*WorkloadInstance, Event)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 25 06:54:32 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  5. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	// The minimum amount of compute resources required. If Requests is omitted for a container,
    	// it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value.
    	// More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
Back to top