Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for EchoTestService (2.74 sec)

  1. pkg/test/echo/proto/echo_grpc.pb.go

    // Requires gRPC-Go v1.32.0 or later.
    const _ = grpc.SupportPackageIsVersion7
    
    const (
    	EchoTestService_Echo_FullMethodName        = "/proto.EchoTestService/Echo"
    	EchoTestService_ForwardEcho_FullMethodName = "/proto.EchoTestService/ForwardEcho"
    )
    
    // EchoTestServiceClient is the client API for EchoTestService service.
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 26 01:14:28 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  2. tests/integration/security/testdata/authz/custom-provider.yaml.tmpl

            paths: [ "/custom" ]
            methods: [ "GET" ]
      - to:
        - operation: # GRPC
            ports: [ "{{ (.To.PortForName `grpc`).WorkloadPort }}" ]
            paths: [ "/proto.EchoTestService/Echo" ]
            methods: [ "POST" ]
      - to:
        - operation: # TCP
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 724 bytes
    - Viewed (0)
  3. tests/integration/security/testdata/authz/allow-principal.yaml.tmpl

            - source:
                principals: [ "{{ .Allowed.ServiceAccountName }}" ]
        - to:
            - operation: # GRPC
                ports: [ "{{ (.To.PortForName `grpc`).WorkloadPort }}" ]
                paths: [ "/proto.EchoTestService/Echo" ]
                methods: [ "POST" ]
          from:
            - source:
                principals: [ "{{ .Allowed.ServiceAccountName }}" ]
        - to:
            - operation: # TCP
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 998 bytes
    - Viewed (0)
  4. tests/integration/security/testdata/authz/deny-principal.yaml.tmpl

            - source:
                principals: [ "{{ .Denied.ServiceAccountName }}" ]
        - to:
            - operation: # GRPC
                ports: [ "{{ (.To.PortForName `grpc`).WorkloadPort }}" ]
                paths: [ "/proto.EchoTestService/Echo" ]
                methods: [ "POST" ]
          from:
            - source:
                principals: [ "{{ .Denied.ServiceAccountName }}" ]
        - to:
            - operation: # TCP
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 1K bytes
    - Viewed (0)
  5. tests/integration/security/testdata/authz/allow-namespace.yaml.tmpl

            - source:
                namespaces: [ "{{ .Allowed.NamespaceName }}" ]
        - to:
            - operation: # GRPC
                ports: [ "{{ (.To.PortForName `grpc`).WorkloadPort }}" ]
                paths: [ "/proto.EchoTestService/Echo" ]
                methods: [ "POST" ]
          from:
            - source:
                namespaces: [ "{{ .Allowed.NamespaceName }}" ]
        - to:
            - operation: # TCP
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 983 bytes
    - Viewed (0)
  6. tests/integration/security/testdata/authz/deny-namespace.yaml.tmpl

            - source:
                namespaces: [ "{{ .Denied.NamespaceName }}" ]
        - to:
            - operation: # GRPC
                ports: [ "{{ (.To.PortForName `grpc`).WorkloadPort }}" ]
                paths: [ "/proto.EchoTestService/Echo" ]
                methods: [ "POST" ]
          from:
            - source:
                namespaces: [ "{{ .Denied.NamespaceName }}" ]
        - to:
            - operation: # TCP
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 1017 bytes
    - Viewed (0)
  7. pkg/test/echo/proto/echo.proto

    // Generate with protoc --go_out=. echo.proto -I /work/common-protos/ -I.
    package proto;
    option go_package="../proto";
    option java_package = "io.istio.test";
    option java_outer_classname = "Echo";
    
    service EchoTestService {
      rpc Echo (EchoRequest) returns (EchoResponse);
      rpc ForwardEcho (ForwardEchoRequest) returns (ForwardEchoResponse);
    }
    
    message EchoRequest {
      string message = 1;
    }
    
    message EchoResponse {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 31 17:42:23 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  8. pkg/test/echo/proto/echo.pb.go

    	3, // 5: proto.HBONE.headers:type_name -> proto.Header
    	1, // 6: proto.EchoTestService.Echo:input_type -> proto.EchoRequest
    	4, // 7: proto.EchoTestService.ForwardEcho:input_type -> proto.ForwardEchoRequest
    	2, // 8: proto.EchoTestService.Echo:output_type -> proto.EchoResponse
    	7, // 9: proto.EchoTestService.ForwardEcho:output_type -> proto.ForwardEchoResponse
    	8, // [8:10] is the sub-list for method output_type
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 02:27:10 UTC 2024
    - 33.3K bytes
    - Viewed (0)
Back to top