Home
last modified time | relevance | path

Searched refs:custom_payload (Results 1 – 19 of 19) sorted by relevance

/dports/databases/cassandra-cpp-driver/cpp-driver-2.16.0/tests/src/integration/tests/
H A Dtest_custom_payload.cpp58 CustomPayload custom_payload; in CASSANDRA_INTEGRATION_TEST_F() local
59 custom_payload.set("key1", Blob("value1")); in CASSANDRA_INTEGRATION_TEST_F()
60 custom_payload.set("key2", Blob("value2")); in CASSANDRA_INTEGRATION_TEST_F()
61 custom_payload.set("key3", Blob("value3")); in CASSANDRA_INTEGRATION_TEST_F()
65 statement.set_custom_payload(custom_payload); in CASSANDRA_INTEGRATION_TEST_F()
69 ASSERT_EQ(custom_payload.item_count(), result.custom_payload().item_count()); in CASSANDRA_INTEGRATION_TEST_F()
70 for (size_t i = 0; i < custom_payload.item_count(); i++) { in CASSANDRA_INTEGRATION_TEST_F()
71 std::pair<const std::string, Blob> expected_item = custom_payload.item(i); in CASSANDRA_INTEGRATION_TEST_F()
72 std::pair<const std::string, Blob> item = result.custom_payload().item(i); in CASSANDRA_INTEGRATION_TEST_F()
/dports/databases/py-cassandra-driver/cassandra-driver-3.18.0/cassandra/
H A Dquery.py257 custom_payload = None variable in Statement
290 if custom_payload is not None:
291 self.custom_payload = custom_payload
438 custom_payload = None variable in PreparedStatement
533 custom_payload=None): argument
545 self.custom_payload = prepared_statement.custom_payload
785 … serial_consistency_level=serial_consistency_level, custom_payload=custom_payload)
797 if self.custom_payload:
798 self.custom_payload.clear()
856 if statement.custom_payload:
[all …]
H A Dprotocol.py92 custom_payload = None variable in _MessageType
97 if not self.custom_payload:
98 self.custom_payload = {}
99 self.custom_payload.update(other)
100 if len(self.custom_payload) > 65535:
1070 if msg.custom_payload:
1074 write_bytesmap(body, msg.custom_payload)
1138 custom_payload = read_bytesmap(body)
1141 custom_payload = None
1152 msg.custom_payload = custom_payload
H A Dcluster.py2201 custom_payload=None, execution_profile=EXEC_PROFILE_DEFAULT, argument
2239 return self.execute_async(query, parameters, trace, custom_payload,
2242 def execute_async(self, query, parameters=None, trace=False, custom_payload=None, argument
2280 query, parameters, trace, custom_payload, timeout,
2287 def _create_response_future(self, query, parameters, trace, custom_payload, argument
2368 message.update_custom_payload(query.custom_payload)
2369 message.update_custom_payload(custom_payload)
2449 def prepare(self, query, custom_payload=None, keyspace=None): argument
2502 prepared_statement.custom_payload = future.custom_payload
3831 def custom_payload(self): member in ResponseFuture
/dports/databases/cassandra-cpp-driver/cpp-driver-2.16.0/src/
H A Dfuture.cpp141 return response->custom_payload().size(); in cass_future_custom_payload_item_count()
153 const CustomPayloadVec& custom_payload = response->custom_payload(); in cass_future_custom_payload_item() local
154 if (index >= custom_payload.size()) { in cass_future_custom_payload_item()
158 const CustomPayloadItem& item = custom_payload[index]; in cass_future_custom_payload_item()
H A Dresponse.hpp55 const CustomPayloadVec& custom_payload() const { return custom_payload_; } in custom_payload() function in datastax::internal::core::Response
H A Drequest.hpp154 const CustomPayload::ConstPtr& custom_payload() const { return custom_payload_; } in custom_payload() function in datastax::internal::core::Request
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/spec/factories/gitlab/
H A Djwt_token.rb11 custom_payload { {} }
15 evaluator.custom_payload.each do |key, value|
/dports/databases/cassandra-cpp-driver/cpp-driver-2.16.0/tests/src/integration/objects/
H A Dstatement.cpp22 void test::driver::Statement::set_custom_payload(CustomPayload custom_payload) { in set_custom_payload() argument
23 ASSERT_EQ(CASS_OK, cass_statement_set_custom_payload(get(), custom_payload.get())); in set_custom_payload()
H A Dresult.hpp189 CustomPayload custom_payload() { return custom_payload_; } in custom_payload() function in test::driver::Result
H A Dstatement.hpp157 void set_custom_payload(CustomPayload custom_payload);
/dports/graphics/shotwell/shotwell-0.30.14/plugins/common/
H A DRESTSupport.vala339 // set custom_payload to null to have this transaction send the default payload of
342 // image) to the endpoint, set the custom_payload parameter to a non-null value. If the
343 // custom_payload you specify is text data, then it's null terminated, and its length is just
344 // custom_payload.length, so you don't have to pass in a payload_length parameter in this case.
345 // If, however, custom_payload is binary data (such as a JEPG), then the caller must set
346 // payload_length to the byte length of the custom_payload buffer
347 protected void set_custom_payload(string? custom_payload, string payload_content_type,
351 if (custom_payload == null) {
356 ulong length = (payload_length > 0) ? payload_length : custom_payload.length;
357 … message.set_request(payload_content_type, Soup.MemoryUse.COPY, custom_payload.data[0:length]);
/dports/graphics/elementary-photos/photos-2.7.1/plugins/pantheon-photos-publishing-extras/
H A DRESTSupport.vala254 // set custom_payload to null to have this transaction send the default payload of
257 // image) to the endpoint, set the custom_payload parameter to a non-null value. If the
258 // custom_payload you specify is text data, then it's null terminated, and its length is just
259 // custom_payload.length, so you don't have to pass in a payload_length parameter in this case.
260 // If, however, custom_payload is binary data (such as a JEPG), then the caller must set
261 // payload_length to the byte length of the custom_payload buffer
262 protected void set_custom_payload (string? custom_payload, string payload_content_type,
266 if (custom_payload == null) {
271 ulong length = (payload_length > 0) ? payload_length : custom_payload.length;
272 … message.set_request (payload_content_type, Soup.MemoryUse.COPY, custom_payload.data[0:length]);
/dports/graphics/elementary-photos/photos-2.7.1/plugins/pantheon-photos-publishing/
H A DRESTSupport.vala254 // set custom_payload to null to have this transaction send the default payload of
257 // image) to the endpoint, set the custom_payload parameter to a non-null value. If the
258 // custom_payload you specify is text data, then it's null terminated, and its length is just
259 // custom_payload.length, so you don't have to pass in a payload_length parameter in this case.
260 // If, however, custom_payload is binary data (such as a JEPG), then the caller must set
261 // payload_length to the byte length of the custom_payload buffer
262 protected void set_custom_payload (string? custom_payload, string payload_content_type,
266 if (custom_payload == null) {
271 ulong length = (payload_length > 0) ? payload_length : custom_payload.length;
272 … message.set_request (payload_content_type, Soup.MemoryUse.COPY, custom_payload.data[0:length]);
/dports/www/nginx-prometheus-exporter/nginx-prometheus-exporter-0.10.0/vendor/github.com/nginxinc/nginx-plus-go-client/.github/workflows/
H A Dfossa.yml42 custom_payload: |
H A Dci.yml89 custom_payload: |
/dports/www/nginx-prometheus-exporter/nginx-prometheus-exporter-0.10.0/.github/workflows/
H A Dfossa.yml43 custom_payload: |
H A Dnotifications.yml38 custom_payload: |
/dports/www/jwt-cli/jwt-cli-5.0.0/src/
H A Dmain.rs436 let custom_payload = matches in encode_token() localVariable
478 maybe_payloads.append(&mut custom_payload.unwrap_or_default()); in encode_token()