Home
last modified time | relevance | path

Searched refs:project (Results 1 – 25 of 27) sorted by relevance

12

/tonic/examples/src/gcp/
H A Dclient.rs20 let project = std::env::args() in main() localVariable
47 project: format!("projects/{0}", project), in main()
H A DREADME.md13 Once, you have this token you must fetch your GCP project id which can be found
18 GCP_AUTH_TOKEN="<access-token>" cargo run --bin gcp-client -- <project-id>
/tonic/
H A DSECURITY.md3 tonic (and related projects in hyperium) uses the same security policy as the [Tokio project][tokio…
7 The process for reporting an issue is the same as the [Tokio project][tokio-security]. This include…
H A DREADME.md75 :balloon: Thanks for your help improving the project! We are so happy to have
77 project.
83 This project is licensed under the [MIT license](LICENSE).
H A DCONTRIBUTING.md3 :balloon: Thanks for your help improving the project! We are so happy to have
18 Tonic is a part of the [Tokio][tokio] and [Hyperium][hyperium] project, and follows the project's
29 The `tonic` project adheres to the [Rust Code of Conduct][coc]. This describes
111 functional guidelines of the Tokio project.
318 Requests have a responsibility to both the project and the individual making the
363 the contributor to learn a bit more about the project.
397 Since the Tonic project consists of a number of crates, many of which depend on
/tonic/examples/proto/googleapis/google/api/
H A Dresource.proto61 // pattern: "projects/{project}/topics/{topic}"
63 // parent_name_extractor: "projects/{project}"
73 // - pattern: "projects/{project}/topics/{topic}"
75 // parent_name_extractor: "projects/{project}"
86 // pattern: "projects/{project}/logs/{log}"
88 // parent_name_extractor: "projects/{project}"
113 // - pattern: "projects/{project}/logs/{log}"
115 // parent_name_extractor: "projects/{project}"
211 // - "projects/{project}/topics/{topic}"
212 // - "projects/{project}/knowledgeBases/{knowledge_base}"
[all …]
/tonic/examples/proto/googleapis/google/pubsub/v1/
H A Dschema.proto61 // Lists schemas in a project.
100 pattern: "projects/{project}/schemas/{schema}"
116 // Format is `projects/{project}/schemas/{schema}`.
131 // Format is `projects/{project-id}`.
170 // Format is `projects/{project}/schemas/{schema}`.
184 // Required. The name of the project in which to list schemas.
185 // Format is `projects/{project-id}`.
220 // Format is `projects/{project}/schemas/{schema}`.
230 // Format is `projects/{project-id}`.
248 // Format is `projects/{project-id}`.
[all …]
H A Dpubsub.proto86 get: "/v1/{project=projects/*}/topics"
88 option (google.api.method_signature) = "project";
166 pattern: "projects/{project}/topics/{topic}"
289 // Format is `projects/{project-id}`.
290 string project = 1 [ field
556 get: "/v1/{project=projects/*}/snapshots"
724 // parent project (i.e.,
926 // Format is `projects/{project-id}`.
927 string project = 1 [ field
1245 // Format is `projects/{project-id}`.
[all …]
/tonic/tonic-types/proto/
H A Derror_details.proto56 // For example if a daily limit was exceeded for the calling project,
57 // a service could respond with a QuotaFailure detail containing the project
59 // calling project hasn't enabled the service in the developer console, then
60 // a service could respond with the project id and set `service_disabled`
70 // For example, "clientip:<ip address of client>" or "project:<Google
71 // developer project id>".
211 // For example, "user:<owner email>" or "project:<Google developer project
216 // For example, updating a cloud project may require the `writer` permission
217 // on the developer console project.
224 // project hasn't enabled the accessed service, this can contain a URL pointing
/tonic/tonic/src/service/
H A Dinterceptor.rs186 #[pin_project(project = KindProj)]
200 match self.project().kind.project() { in poll()
219 #[pin_project(project = ResponseBodyKindProj)]
248 match self.project().kind.project() { in poll_frame()
H A Drecover_error.rs93 match ready!(self.project().inner.poll(cx)) { in poll()
144 match self.project().inner.as_pin_mut() { in poll_frame()
/tonic/tonic-web/src/
H A Dcall.rs155 .decode(self.as_mut().project().buf.split_to(index)) in decode_chunk()
180 let this = self.as_mut().project(); in poll_decode()
208 .project() in poll_decode()
220 let this = self.as_mut().project(); in poll_encode()
269 .project() in poll_frame()
275 match me.as_mut().project().trailers { in poll_frame()
280 me.as_mut().project().trailers.replace(trailers); in poll_frame()
292 let buf = me.as_mut().project().decoded; in poll_frame()
300 me.as_mut().project().trailers.replace(trailers); in poll_frame()
308 } else if let Some(trailers) = me.as_mut().project().trailers.take() { in poll_frame()
H A Dclient.rs96 let res = ready!(self.project().inner.poll(cx)); in poll()
H A Dservice.rs128 #[pin_project(project = CaseProj)]
162 let this = self.project(); in poll()
164 match this.case.project() { in poll()
/tonic/tests/compression/
H A DCargo.toml15 pin-project = "1.0"
/tonic/tonic/src/transport/channel/service/
H A Dreconnect.rs181 #[pin_project(project = InnerProj)]
211 let me = self.project(); in poll()
212 match me.inner.project() { in poll()
/tonic/tests/compression/src/
H A Dutil.rs56 let this = self.project(); in poll_frame()
109 let frame = ready!(self.project().rx.poll_recv(cx)); in poll_frame()
/tonic/tonic-web/
H A DCargo.toml24 pin-project = "1"
/tonic/tonic/src/codec/
H A Dencode.rs21 #[pin_project(project = EncodedBytesProj)]
86 } = self.project(); in poll_next()
319 let self_proj = self.project(); in poll_frame()
/tonic/interop/proto/grpc/testing/
H A Dempty.proto20 // messages in your project. A typical example is to use it as argument or the
/tonic/tonic/src/transport/server/
H A Dio_stream.rs55 match ready!(self.as_mut().project().inner.poll_next(cx)) { in poll_next_without_tls()
84 let mut projected = self.as_mut().project(); in poll_next()
H A Dmod.rs1041 let this = self.project(); in poll()
1124 match self.as_mut().project().inner.as_pin_mut() { in poll()
1126 self.project().inner.set(None); in poll()
/tonic/examples/
H A Dhelloworld-tutorial.md17 For this tutorial, we will start by creating a new Rust project with Cargo:
34 [protocol buffers]. We will keep our `.proto` files in a directory in our project's root.
127 At the root of your project (not /src), create a `build.rs` file and add the following code:
136 This tells `tonic-build` to compile your protobufs when you build your Rust project. While you can …
318 …e a `proto/helloworld.proto` file, a `build.rs` file at the root of your project, and `src/server.…
/tonic/tonic/src/transport/service/
H A Dgrpc_timeout.rs81 let this = self.project(); in poll()
/tonic/tonic/
H A DCargo.toml69 pin-project = "1.0.11"

12