Home
last modified time | relevance | path

Searched refs:header_result (Results 1 – 16 of 16) sorted by relevance

/dports/devel/glib20/glib-2.70.4/gobject/tests/
H A Dgenmarshal.py234 .format(**header_result.subs),
235 header_result.out.strip(),
281 .format(**header_result.subs),
282 header_result.out.strip(),
334 .format(**header_result.subs),
335 header_result.out.strip(),
435 .format(**header_result.subs),
436 header_result.out.strip(),
577 .format(**header_result.subs),
578 header_result.out.strip(),
[all …]
/dports/net/py-softlayer/SoftLayer-5.9.7/tests/CLI/modules/
H A Dcdn_tests.py102 header_result = json.loads(result.output)
103 self.assertEqual('www.test.com', header_result['Header'])
108 header_result = json.loads(result.output)
109 self.assertEqual(83, header_result['Http Port'])
114 header_result = json.loads(result.output)
115 self.assertEqual(True, header_result['Respect Headers'])
121 header_result = json.loads(result.output)
122 self.assertEqual('include: test', header_result['Cache key optimization'])
127 header_result = json.loads(result.output)
128 self.assertEqual('include: test', header_result['Cache key optimization'])
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/blink/renderer/core/exported/
H A Dweb_frame_serializer_test_helper.cc53 WebThreadSafeData header_result = WebFrameSerializer::GenerateMHTMLHeader( in GenerateMHTMLHelper() local
55 mhtml.Append(header_result.Data(), header_result.size()); in GenerateMHTMLHelper()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/blink/renderer/core/exported/
H A Dweb_frame_serializer_test_helper.cc53 WebThreadSafeData header_result = WebFrameSerializer::GenerateMHTMLHeader( in GenerateMHTMLHelper() local
55 mhtml.Append(header_result.Data(), header_result.size()); in GenerateMHTMLHelper()
/dports/cad/uranium/Uranium-3ed9c4de/UM/
H A DFastConfigParser.py21 header_result = self.header_regex.findall(data)
25 for header, content in header_result:
/dports/lang/ruby26/ruby-2.6.9/ext/etc/
H A Dmkconstants.rb102 header_result = erb_new.call(<<'EOS', nil, '%').result(binding)
132 f << header_result
135 result = header_result + result
/dports/devel/py-celery/celery-4.4.7/celery/backends/
H A Dcache.py133 def _apply_chord_incr(self, header_result, body, **kwargs): argument
134 chord_key = self.get_key_for_chord(header_result.id)
137 header_result, body, **kwargs)
H A Dbase.py601 def fallback_chord_unlock(self, header_result, body, countdown=1, argument
603 kwargs['result'] = [r.as_tuple() for r in header_result]
607 (header_result.id, body,), kwargs,
616 def apply_chord(self, header_result, body, **kwargs): argument
618 self.fallback_chord_unlock(header_result, body, **kwargs)
895 def _apply_chord_incr(self, header_result, body, **kwargs): argument
897 header_result.save(backend=self)
H A Dredis.py404 def apply_chord(self, header_result, body, **kwargs): argument
/dports/net/zsync/zsync-0.6.2/
H A Dhttp.c1001 int header_result; in get_range_block() local
1021 header_result = range_fetch_read_http_headers(rf); in get_range_block()
1028 if (newconn && header_result == 0) { in get_range_block()
1034 if (header_result <= 0) in get_range_block()
1035 return header_result ? -1 : 0; in get_range_block()
1038 if (header_result >= 300 && header_result < 400) { in get_range_block()
/dports/multimedia/gstreamer1-plugins-rust/flavors-ceb65b8ce94e183c4cf4011da0a40e3a4892c2c0/fuzz/fuzzers/
H A Dheader.rs9 let header_result = header(data); in go() localVariable
/dports/devel/py-celery/celery-4.4.7/t/unit/backends/
H A Dtest_base.py198 header_result = self.app.GroupResult(
202 self.b.apply_chord(header_result, self.callback.s())
207 header_result = self.app.GroupResult(
213 self.b.apply_chord(header_result, body)
217 self.b.apply_chord(header_result, body.set(queue='test_queue'))
225 self.b.apply_chord(header_result, callback_queue.s())
873 header_result = self.app.GroupResult(
878 header_result, 'body', foo=1,
881 header_result, 'body', foo=1,
H A Dtest_redis.py544 header_result = self.app.GroupResult(
548 self.b.apply_chord(header_result, None)
/dports/devel/py-celery/celery-4.4.7/celery/
H A Dcanvas.py1326 header_result = self.tasks.freeze(
1341 node.parent = header_result
1420 header_result = header.freeze(group_id=group_id, chord=body, root_id=root_id)
1422 if len(header_result) > 0:
1424 header_result,
1430 header_result = header(*partial_args, task_id=group_id, **options)
1437 bodyres.parent = header_result
/dports/lang/ruby26/ruby-2.6.9/ext/socket/
H A Dmkconstants.rb329 header_result = erb_new.call(<<'EOS', nil, '%').result(binding)
338 f << header_result
341 result = header_result + result
/dports/lang/v8/v8-9.6.180.12/test/unittests/objects/
H A Dvalue-serializer-unittest.cc226 Maybe<bool> header_result = deserializer.ReadHeader(context); in InvalidDecodeTest() local
227 if (header_result.IsNothing()) { in InvalidDecodeTest()
231 CHECK(header_result.ToChecked()); in InvalidDecodeTest()