Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for endMessage (0.17 sec)

  1. src/runtime/pprof/proto.go

    	b.pb.int64(tagValueType_Unit, b.stringIndex(unit))
    	b.pb.endMessage(tag, start)
    }
    
    // pbSample encodes a Sample message to b.pb.
    func (b *profileBuilder) pbSample(values []int64, locs []uint64, labels func()) {
    	start := b.pb.startMessage()
    	b.pb.int64s(tagSample_Value, values)
    	b.pb.uint64s(tagSample_Location, locs)
    	if labels != nil {
    		labels()
    	}
    	b.pb.endMessage(tagProfile_Sample, start)
    	b.flush()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 13 20:40:52 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  2. internal/logger/target/kafka/kafka.go

    	}
    	logJSON, err := json.Marshal(&entry)
    	if err != nil {
    		return err
    	}
    	msg := sarama.ProducerMessage{
    		Topic: h.kconfig.Topic,
    		Value: sarama.ByteEncoder(logJSON),
    	}
    	_, _, err = h.producer.SendMessage(&msg)
    	if err != nil {
    		atomic.StoreInt32(&h.status, statusOffline)
    	} else {
    		atomic.StoreInt32(&h.status, statusOnline)
    	}
    	return err
    }
    
    // Init initialize kafka target
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jun 02 03:03:39 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    //
    //   3. The parent process waits for the sub-process to terminate.
    //
    //   4. The parent process checks the exit code and error message of
    //   the sub-process.
    //
    // Examples:
    //
    //   ASSERT_DEATH(server.SendMessage(56, "Hello"), "Invalid port number");
    //   for (int i = 0; i < 5; i++) {
    //     EXPECT_DEATH(server.ProcessRequest(i),
    //                  "Invalid request .* in ProcessRequest()")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    //
    //   3. The parent process waits for the sub-process to terminate.
    //
    //   4. The parent process checks the exit code and error message of
    //   the sub-process.
    //
    // Examples:
    //
    //   ASSERT_DEATH(server.SendMessage(56, "Hello"), "Invalid port number");
    //   for (int i = 0; i < 5; i++) {
    //     EXPECT_DEATH(server.ProcessRequest(i),
    //                  "Invalid request .* in ProcessRequest()")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  5. internal/event/target/kafka.go

    	if target.producer == nil {
    		return store.ErrNotConnected
    	}
    	msg, err := target.toProducerMessage(eventData)
    	if err != nil {
    		return err
    	}
    	_, _, err = target.producer.SendMessage(msg)
    	return err
    }
    
    // SendFromStore - reads an event from store and sends it to Kafka.
    func (target *KafkaTarget) SendFromStore(key store.Key) error {
    	if err := target.init(); err != nil {
    		return err
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jun 01 15:02:59 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top