Home
last modified time | relevance | path

Searched refs:pulsar (Results 1 – 25 of 1443) sorted by relevance

12345678910>>...58

/dports/sysutils/vector/vector-0.10.0/.meta/sinks/
H A Dpulsar.toml.erb1 [sinks.pulsar]
8 [Pulsar][urls.pulsar] is a multi-tenant, high-performance solution for \
25 <%= render("_partials/fields/_component_options.toml", type: "sink", name: "pulsar") %>
28 namespace: "sinks.pulsar.options",
33 [sinks.pulsar.options.address]
36 examples = ["pulsar://127.0.0.1:6650"]
38 description = "A host and port pair that the pulsar client should connect to."
40 [sinks.pulsar.options.topic]
47 [sinks.pulsar.options.auth]
52 [sinks.pulsar.options.auth.children.name]
[all …]
/dports/astro/stellarium/stellarium-0.21.3/plugins/Pulsars/src/
H A DPulsars.cpp233 if (pulsar && pulsar->initialized) in draw()
234 pulsar->draw(core, &painter); in draw()
275 for (const auto& pulsar : psr) in searchAround() local
277 if (pulsar->initialized) in searchAround()
296 for (const auto& pulsar : psr) in searchByName() local
310 for (const auto& pulsar : psr) in searchByNameI18n() local
500 if (pulsar->initialized) in setPSRMap()
501 psr.append(pulsar); in setPSRMap()
560 for (const auto& pulsar : psr) in getByID() local
562 if (pulsar->initialized && pulsar->designation == id) in getByID()
[all …]
/dports/sysutils/vector/vector-0.10.0/cargo-crates/pulsar-1.0.0/
H A DREADME.md4 [Documentation](https://docs.rs/pulsar)
11 - URL based (`pulsar://` and `pulsar+ssl://`) connections with DNS lookup
23 pulsar = "1.0"
29 use pulsar::{
49 async fn main() -> Result<(), pulsar::Error> {
52 let addr = "pulsar://127.0.0.1:6650";
54 let mut producer = pulsar
88 use pulsar::{
107 async fn main() -> Result<(), pulsar::Error> {
110 let addr = "pulsar://127.0.0.1:6650";
[all …]
H A DCargo.toml.orig-cargo2 name = "pulsar"
13 repository = "https://github.com/wyyerd/pulsar-rs"
14 documentation = "https://docs.rs/pulsar"
16 keywords = ["pulsar", "api", "client"]
19 travis-ci = {repository = "wyyerd/pulsar-rs"}
H A DCargo.toml15 name = "pulsar"
19 documentation = "https://docs.rs/pulsar"
21 keywords = ["pulsar", "api", "client"]
23 repository = "https://github.com/wyyerd/pulsar-rs"
132 repository = "wyyerd/pulsar-rs"
/dports/comms/wsjtz/wsjtx/doc/common/
H A Dlinks.adoc61 :download: https://physics.princeton.edu/pulsar/K1JT/wsjtx.html[Download Page]
76 :homepage: https://physics.princeton.edu/pulsar/K1JT/[WSJT Home Page]
79 :jt65protocol: https://physics.princeton.edu/pulsar/K1JT/JT65.pdf[QEX]
83 :lunarEchoes: https://physics.princeton.edu/pulsar/K1JT/LunarEchoes_QEX.pdf[QEX]
84 :msk144: https://physics.princeton.edu/pulsar/k1jt/MSK144_Protocol_QEX.pdf[QEX]
101 :wsjtx: https://physics.princeton.edu/pulsar/K1JT/wsjtx.html[WSJT-X]
103 :wspr: https://physics.princeton.edu/pulsar/K1JT/wspr.html[WSPR Home Page]
110 :jtsdk_doc: https://physics.princeton.edu/pulsar/K1JT/JTSDK-DOC.exe[Download]
113 :jtsdk_py: https://physics.princeton.edu/pulsar/K1JT/JTSDK-PY.exe[Download]
114 :jtsdk_qt: https://physics.princeton.edu/pulsar/K1JT/JTSDK-QT.exe[Download]
[all …]
/dports/sysutils/vector/vector-0.10.0/website/highlights/
H A D2020-03-19-apache-pulsar-sink.md9 tags: ["type: new feature", "domain: sinks", "sink: pulsar"]
12 We have a new [`pulsar` sink][docs.sinks.pulsar]! This was a community
16 [docs.sinks.pulsar]: /docs/reference/sinks/pulsar/
H A D2020-04-17-new-sinks.md17 - [`pulsar` sink][docs.sinks.pulsar]
26 [docs.sinks.pulsar]: /docs/reference/sinks/pulsar/
/dports/sysutils/vector/vector-0.10.0/website/docs/reference/sinks/
H A Dpulsar.md10 sidebar_label: "pulsar|[\"log\"]"
22 The Vector `pulsar` sink
31 website/docs/reference/sinks/pulsar.md.erb
45 type = "pulsar" # required
47 address = "pulsar://127.0.0.1:6650" # required
61 type = "pulsar" # required
63 address = "pulsar://127.0.0.1:6650" # required
86 examples={["pulsar://127.0.0.1:6650"]}
100 A host and port pair that the pulsar client should connect to.
375 The `pulsar` sink streams data on a real-time
[all …]
/dports/sysutils/vector/vector-0.10.0/cargo-crates/pulsar-1.0.0/src/
H A Dlib.rs297 let pulsar: Pulsar<_> = Pulsar::builder(addr, TokioExecutor).build().await.unwrap(); in round_trip() localVariable
302 let mut producer = pulsar.producer().with_topic(&topic).build().await.unwrap(); in round_trip()
320 let mut consumer: Consumer<TestData, _> = pulsar in round_trip()
369 pulsar in unsized_data()
376 let mut consumer = pulsar in unsized_data()
407 pulsar in unsized_data()
414 let mut consumer = pulsar in unsized_data()
450 pulsar in redelivery()
457 let mut consumer: Consumer<String, _> = pulsar in redelivery()
496 let mut producer = pulsar.producer() in batching()
[all …]
/dports/sysutils/vector/vector-0.10.0/cargo-crates/pulsar-1.0.0/examples/
H A Dbatching.rs4 use pulsar::{
33 async fn main() -> Result<(), pulsar::Error> { in main()
37 let pulsar: Pulsar<_> = Pulsar::builder(addr, TokioExecutor).build().await?; in main() localVariable
38 let mut producer = pulsar in main()
84 let mut consumer: Consumer<TestData, _> = pulsar in main()
H A Dconsumer.rs4 use pulsar::{
23 async fn main() -> Result<(), pulsar::Error> { in main()
27 let pulsar: Pulsar<_> = Pulsar::builder(addr, TokioExecutor).build().await?; in main() localVariable
29 let mut consumer: Consumer<TestData, _> = pulsar in main()
H A Dproducer.rs3 use pulsar::{
23 async fn main() -> Result<(), pulsar::Error> { in main()
27 let pulsar: Pulsar<_> = Pulsar::builder(addr, TokioExecutor).build().await?; in main() localVariable
28 let mut producer = pulsar in main()
H A Dround_trip.rs4 use pulsar::{
33 async fn main() -> Result<(), pulsar::Error> { in main()
37 let pulsar: Pulsar<_> = Pulsar::builder(addr, TokioExecutor).build().await?; in main() localVariable
38 let mut producer = pulsar in main()
/dports/sysutils/vector/vector-0.10.0/cargo-crates/pulsar-1.0.0/.github/workflows/
H A Drust.yml16 #run: docker exec ${{ job.services.pulsar.id }} sh -c 'bin/pulsar standalone'
41 pulsar:
42 image: geal/pulsar-standalone:2.5.1
/dports/sysutils/file/file-5.39/magic/Magdir/
H A Dpulsar3 # $File: pulsar,v 1.5 2009/09/19 16:28:12 christos Exp $
4 # pulsar: file(1) magic for Pulsar POP3 daemon binary files
6 # http://pulsar.sourceforge.net
/dports/sysutils/sleuthkit/sleuthkit-4.7.0/framework/modules/c_FileTypeSigModule/file-5.08/magic/Magdir/
H A Dpulsar3 # $File: pulsar,v 1.5 2009/09/19 16:28:12 christos Exp $
4 # pulsar: file(1) magic for Pulsar POP3 daemon binary files
6 # http://pulsar.sourceforge.net
/dports/devel/py-magic/file-5.40/magic/Magdir/
H A Dpulsar3 # $File: pulsar,v 1.5 2009/09/19 16:28:12 christos Exp $
4 # pulsar: file(1) magic for Pulsar POP3 daemon binary files
6 # http://pulsar.sourceforge.net
/dports/sysutils/vector/vector-0.10.0/website/guides/integrate/sinks/
H A Dpulsar.md8 tags: ["type: tutorial","domain: sinks","sink: pulsar"]
26 Fear not! In this guide we'll show you how to send send logs to [Apache Pulsar][urls.pulsar]
35 website/guides/integrate/sinks/pulsar.md.erb
42 [Pulsar][urls.pulsar] is a multi-tenant, high-performance solution for server-to-server messaging. …
66 sinkName={"pulsar"} />
107 sinkName={"pulsar"} />
149 [urls.pulsar]: https://pulsar.apache.org/
/dports/sysutils/vector/vector-0.10.0/website/guides/integrate/sources/socket/
H A Dpulsar.md8 tags: ["type: tutorial","domain: sources","domain: sinks","source: socket","sink: pulsar"]
26 …how to send send logs from [a TCP, UDP, or UDS socket][urls.socket] to [Apache Pulsar][urls.pulsar]
35 website/guides/integrate/sources/socket/pulsar.md.erb
42 [Pulsar][urls.pulsar] is a multi-tenant, high-performance solution for server-to-server messaging. …
66 sinkName={"pulsar"} />
110 sinkName={"pulsar"} />
151 [urls.pulsar]: https://pulsar.apache.org/
/dports/sysutils/vector/vector-0.10.0/website/guides/integrate/sources/stdin/
H A Dpulsar.md8 tags: ["type: tutorial","domain: sources","domain: sinks","source: stdin","sink: pulsar"]
26 …guide we'll show you how to send send logs from [STDIN][urls.stdin] to [Apache Pulsar][urls.pulsar]
35 website/guides/integrate/sources/stdin/pulsar.md.erb
42 [Pulsar][urls.pulsar] is a multi-tenant, high-performance solution for server-to-server messaging. …
64 sinkName={"pulsar"} />
108 sinkName={"pulsar"} />
150 [urls.pulsar]: https://pulsar.apache.org/
/dports/sysutils/vector/vector-0.10.0/website/guides/integrate/sources/file/
H A Dpulsar.md8 tags: ["type: tutorial","domain: sources","domain: sinks","source: file","sink: pulsar"]
26 …guide we'll show you how to send send logs from [a file][urls.file] to [Apache Pulsar][urls.pulsar]
35 website/guides/integrate/sources/file/pulsar.md.erb
42 [Pulsar][urls.pulsar] is a multi-tenant, high-performance solution for server-to-server messaging. …
66 sinkName={"pulsar"} />
113 sinkName={"pulsar"} />
155 [urls.pulsar]: https://pulsar.apache.org/
/dports/sysutils/vector/vector-0.10.0/website/guides/integrate/sources/http/
H A Dpulsar.md8 tags: ["type: tutorial","domain: sources","domain: sinks","source: http","sink: pulsar"]
26 …s guide we'll show you how to send send logs from [HTTP][urls.http] to [Apache Pulsar][urls.pulsar]
35 website/guides/integrate/sources/http/pulsar.md.erb
42 [Pulsar][urls.pulsar] is a multi-tenant, high-performance solution for server-to-server messaging. …
66 sinkName={"pulsar"} />
111 sinkName={"pulsar"} />
153 [urls.pulsar]: https://pulsar.apache.org/
/dports/sysutils/vector/vector-0.10.0/website/guides/integrate/sources/splunk_hec/
H A Dpulsar.md8 tags: ["type: tutorial","domain: sources","domain: sinks","source: splunk_hec","sink: pulsar"]
26 …l show you how to send send logs from [Splunk HEC][urls.splunk_hec] to [Apache Pulsar][urls.pulsar]
35 website/guides/integrate/sources/splunk_hec/pulsar.md.erb
46 [Pulsar][urls.pulsar] is a multi-tenant, high-performance solution for server-to-server messaging. …
70 sinkName={"pulsar"} />
115 sinkName={"pulsar"} />
156 [urls.pulsar]: https://pulsar.apache.org/
/dports/sysutils/vector/vector-0.10.0/website/guides/integrate/sources/syslog/
H A Dpulsar.md8 tags: ["type: tutorial","domain: sources","domain: sinks","source: syslog","sink: pulsar"]
26 …ide we'll show you how to send send logs from [Syslog][urls.syslog] to [Apache Pulsar][urls.pulsar]
35 website/guides/integrate/sources/syslog/pulsar.md.erb
46 [Pulsar][urls.pulsar] is a multi-tenant, high-performance solution for server-to-server messaging. …
70 sinkName={"pulsar"} />
114 sinkName={"pulsar"} />
155 [urls.pulsar]: https://pulsar.apache.org/

12345678910>>...58