Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 56 for topic (0.14 sec)

  1. internal/event/target/nsq.go

    const (
    	NSQAddress       = "nsqd_address"
    	NSQTopic         = "topic"
    	NSQTLS           = "tls"
    	NSQTLSSkipVerify = "tls_skip_verify"
    	NSQQueueDir      = "queue_dir"
    	NSQQueueLimit    = "queue_limit"
    
    	EnvNSQEnable        = "MINIO_NOTIFY_NSQ_ENABLE"
    	EnvNSQAddress       = "MINIO_NOTIFY_NSQ_NSQD_ADDRESS"
    	EnvNSQTopic         = "MINIO_NOTIFY_NSQ_TOPIC"
    	EnvNSQTLS           = "MINIO_NOTIFY_NSQ_TLS"
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sat Oct 07 15:07:38 GMT 2023
    - 7.1K bytes
    - Viewed (0)
  2. internal/event/target/nsq_test.go

    				Topic: "topic",
    			},
    			wantErr: false,
    		},
    		{
    			name: "test4_emptynsqdaddr",
    			fields: fields{
    				Enable:      true,
    				NSQDAddress: xnet.Host{},
    				Topic:       "topic",
    			},
    			wantErr: true,
    		},
    	}
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			n := NSQArgs{
    				Enable:      tt.fields.Enable,
    				NSQDAddress: tt.fields.NSQDAddress,
    				Topic:       tt.fields.Topic,
    			}
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Sep 04 19:57:37 GMT 2023
    - 2.2K bytes
    - Viewed (0)
  3. docs/logging/README.md

    ```
    mc admin config set myminio/ audit_kafka
    KEY:
    audit_kafka[:name]  send audit logs to kafka endpoints
    
    ARGS:
    brokers*         (csv)       comma separated list of Kafka broker addresses
    topic            (string)    Kafka topic used for bucket notifications
    sasl_username    (string)    username for SASL/PLAIN or SASL/SCRAM authentication
    sasl_password    (string)    password for SASL/PLAIN or SASL/SCRAM authentication
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Tue Aug 15 23:04:20 GMT 2023
    - 9.9K bytes
    - Viewed (0)
  4. pyproject.toml

        "Programming Language :: Python :: 3",
        "Programming Language :: Python",
        "Topic :: Internet",
        "Topic :: Software Development :: Libraries :: Application Frameworks",
        "Topic :: Software Development :: Libraries :: Python Modules",
        "Topic :: Software Development :: Libraries",
        "Topic :: Software Development",
        "Typing :: Typed",
        "Development Status :: 4 - Beta",
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Tue Apr 02 02:28:39 GMT 2024
    - 7K bytes
    - Viewed (0)
  5. build-logic/documentation/src/main/groovy/gradlebuild/docs/ReleaseNotesTransformer.java

            tocSection.append("<h2>Table Of Contents</h2>");
            Element toc = tocSection.append("<ul class='toc'/>").children().last();
    
            for (Element topic : document.body().select("h2")) {
                String name = topic.text();
                String anchor = topic.attr("id");
    Java
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Thu Jan 26 13:00:32 GMT 2023
    - 8.1K bytes
    - Viewed (0)
  6. internal/event/target/mqtt.go

    )
    
    // MQTTArgs - MQTT target arguments.
    type MQTTArgs struct {
    	Enable               bool           `json:"enable"`
    	Broker               xnet.URL       `json:"broker"`
    	Topic                string         `json:"topic"`
    	QoS                  byte           `json:"qos"`
    	User                 string         `json:"username"`
    	Password             string         `json:"password"`
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sat Oct 07 15:07:38 GMT 2023
    - 8.2K bytes
    - Viewed (0)
  7. docs/en/docs/external-links.md

    {% endfor %}
    {% endfor %}
    {% endfor %}
    
    ## Projects
    
    Latest GitHub projects with the topic `fastapi`:
    
    <div class="github-topic-projects">
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sun Oct 22 07:35:13 GMT 2023
    - 1K bytes
    - Viewed (0)
  8. docs/fr/docs/external-links.md

    {% endfor %}
    {% endfor %}
    {% endfor %}
    
    ## Projets
    
    Les projets Github avec le topic `fastapi` les plus récents :
    
    <div class="github-topic-projects">
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sun Oct 22 07:35:13 GMT 2023
    - 1.1K bytes
    - Viewed (0)
  9. internal/logger/target/kafka/kafka.go

    		h.kconfig.LogOnce(context.Background(), err, h.kconfig.Topic)
    	}
    }
    
    func (h *Target) send(entry interface{}) error {
    	if err := h.initKafkaOnce.Do(h.init); err != nil {
    		return err
    	}
    	logJSON, err := json.Marshal(&entry)
    	if err != nil {
    		return err
    	}
    	msg := sarama.ProducerMessage{
    		Topic: h.kconfig.Topic,
    		Value: sarama.ByteEncoder(logJSON),
    	}
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Feb 22 06:26:06 GMT 2024
    - 10.1K bytes
    - Viewed (1)
  10. internal/event/target/kafka.go

    	"zstd":   sarama.CompressionZSTD,
    }
    
    // KafkaArgs - Kafka target arguments.
    type KafkaArgs struct {
    	Enable     bool        `json:"enable"`
    	Brokers    []xnet.Host `json:"brokers"`
    	Topic      string      `json:"topic"`
    	QueueDir   string      `json:"queueDir"`
    	QueueLimit uint64      `json:"queueLimit"`
    	Version    string      `json:"version"`
    	BatchSize  uint32      `json:"batchSize"`
    	TLS        struct {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Tue Feb 20 08:16:35 GMT 2024
    - 13K bytes
    - Viewed (0)
Back to top