Home
last modified time | relevance | path

Searched refs:pushes (Results 1 – 25 of 3924) sorted by relevance

12345678910>>...157

/dports/lang/spidermonkey78/firefox-78.9.0/taskcluster/taskgraph/util/
H A Dhg.py23 pushes = response_json['pushes']
24 if len(pushes) != 1:
27 len(pushes), repository, revision, pushes
30 return pushes
37 pushes = retry(
41 pushid = pushes.keys()[0]
43 'pushdate': pushes[pushid]['date'],
45 'user': pushes[pushid]['user'],
/dports/net-mgmt/librenms/librenms-vendor-21.5.1/laravel/framework/src/Illuminate/View/Concerns/
H A DManagesStacks.php14 protected $pushes = []; variable
75 if (! isset($this->pushes[$section])) {
76 $this->pushes[$section] = [];
79 if (! isset($this->pushes[$section][$this->renderCount])) {
80 $this->pushes[$section][$this->renderCount] = $content;
82 $this->pushes[$section][$this->renderCount] .= $content;
151 if (! isset($this->pushes[$section]) && ! isset($this->prepends[$section])) {
161 if (isset($this->pushes[$section])) {
162 $output .= implode($this->pushes[$section]);
175 $this->pushes = [];
/dports/www/firefox-esr/firefox-91.8.0/taskcluster/taskgraph/util/
H A Dhg.py45 pushes = _query_pushlog(url)
47 if len(pushes) != 1:
50 len(pushes), repository, revision, pushes
54 pushid = list(pushes.keys())[0]
56 "pushdate": pushes[pushid]["date"],
58 "user": pushes[pushid]["user"],
71 pushes = _query_pushlog(url)
74 push_id: pushes[str(push_id)]
/dports/mail/thunderbird/thunderbird-91.8.0/taskcluster/taskgraph/util/
H A Dhg.py45 pushes = _query_pushlog(url)
47 if len(pushes) != 1:
50 len(pushes), repository, revision, pushes
54 pushid = list(pushes.keys())[0]
56 "pushdate": pushes[pushid]["date"],
58 "user": pushes[pushid]["user"],
71 pushes = _query_pushlog(url)
74 push_id: pushes[str(push_id)]
/dports/sysutils/istio/istio-1.6.7/pilot/pkg/proxy/envoy/v2/
H A Dmonitoring.go101 pushes = monitoring.NewSum( var
107 cdsPushes = pushes.With(typeTag.Value("cds"))
108 cdsSendErrPushes = pushes.With(typeTag.Value("cds_senderr"))
109 edsPushes = pushes.With(typeTag.Value("eds"))
110 edsSendErrPushes = pushes.With(typeTag.Value("eds_senderr"))
111 ldsPushes = pushes.With(typeTag.Value("lds"))
112 ldsSendErrPushes = pushes.With(typeTag.Value("lds_senderr"))
113 rdsPushes = pushes.With(typeTag.Value("rds"))
114 rdsSendErrPushes = pushes.With(typeTag.Value("rds_senderr"))
116 apiPushes = pushes.With(typeTag.Value("api"))
[all …]
H A Ddiscovery_test.go67 pushes := make(map[string]int)
78 pushes[proxy.ConID]++
96 for proxy, numPushes := range pushes {
113 pushes := make(map[string]int)
124 pushes[proxy.ConID]++
137 t.Fatalf("Expected 5 pushes but got %v", len(pushes))
146 if !reflect.DeepEqual(expected, pushes) {
147 t.Fatalf("Expected pushes %+v, got %+v", expected, pushes)
/dports/www/firefox/firefox-99.0/taskcluster/gecko_taskgraph/util/
H A Dhg.py41 pushes = _query_pushlog(url)
43 if len(pushes) != 1:
46 len(pushes), repository, revision, pushes
50 pushid = list(pushes.keys())[0]
52 "pushdate": pushes[pushid]["date"],
54 "user": pushes[pushid]["user"],
67 pushes = _query_pushlog(url)
70 push_id: pushes[str(push_id)]
/dports/benchmarks/ali/ali-0.7.5/vendor/github.com/mum4k/termdash/private/event/eventqueue/
H A Deventqueue_test.go29 pushes []terminalapi.Event
42 pushes: []terminalapi.Event{
61 for _, ev := range tc.pushes {
122 pushes []terminalapi.Event
135 pushes: []terminalapi.Event{
151 pushes: []terminalapi.Event{
167 pushes: []terminalapi.Event{
181 pushes: []terminalapi.Event{
198 pushes: []terminalapi.Event{
219 for _, ev := range tc.pushes {
/dports/games/sokoban/sokoban/
H A Dplay.c22 extern short rows, cols, level, moves, pushes, savepack, packets;
92 moves = pushes = 0; in play()
137 scorepushes = pushes; in play()
193 pushes++; break;
196 pushes++; savepack--; break;
199 savepack++; pushes++; break;
202 pushes++; break;
223 case PUSH: moves--; pushes--; break; in undomove()
226 case STOREPUSH: moves--; pushes--; break; in undomove()
242 tmp_pushes = pushes; in tmpsave()
[all …]
/dports/www/firefox/firefox-99.0/taskcluster/gecko_taskgraph/actions/
H A Dgecko_profile.py41 pushes = []
52 pushes = pushes + list(r.json()["pushes"].keys())
53 if len(pushes) >= depth:
61 pushes = sorted(pushes)[-depth:]
64 for push in pushes:
/dports/www/py-hyper/hyper-18b629b/
H A Dtest_release.py52 pushes = [p for i in stream_ids for p in c.get_pushes(i)]
53 for p in pushes:
62 assert all(map(lambda p: p.scheme == b'https', pushes))
63 assert all(map(lambda p: p.method.lower() == b'get', pushes))
87 pushes = c.get_pushes(stream_id)
88 responses.extend(p.get_response() for p in pushes)
93 assert all(map(lambda p: p.scheme == b'https', pushes))
94 assert all(map(lambda p: p.scheme == b'https', pushes))
/dports/lang/spidermonkey60/firefox-60.9.0/taskcluster/taskgraph/util/
H A Dhg.py29 pushes = r.json()['pushes']
30 if len(pushes) != 1:
33 repository, revision, pushes
36 pushid = pushes.keys()[0]
37 return {'pushdate': pushes[pushid]['date'], 'pushid': pushid}
/dports/www/firefox-esr/firefox-91.8.0/taskcluster/taskgraph/actions/
H A Dgecko_profile.py46 pushes = []
57 pushes = pushes + list(r.json()["pushes"].keys())
58 if len(pushes) >= depth:
66 pushes = sorted(pushes)[-depth:]
69 for push in pushes:
/dports/mail/thunderbird/thunderbird-91.8.0/taskcluster/taskgraph/actions/
H A Dgecko_profile.py46 pushes = []
57 pushes = pushes + list(r.json()["pushes"].keys())
58 if len(pushes) >= depth:
66 pushes = sorted(pushes)[-depth:]
69 for push in pushes:
/dports/lang/spidermonkey78/firefox-78.9.0/taskcluster/taskgraph/actions/
H A Dgecko_profile.py45 pushes = []
54 pushes = pushes + r.json()['pushes'].keys()
55 if len(pushes) >= depth:
63 pushes = sorted(pushes)[-depth:]
66 for push in pushes:
H A Dbackfill.py79 pushes = []
89 pushes = pushes + r.json()['pushes'].keys()
90 if len(pushes) >= depth:
98 pushes = sorted(pushes)[-depth:]
101 for push in pushes:
/dports/devel/lua-luacheck/luacheck-4e5774169fa/src/luacheck/stages/
H A Dparse_inline_options.lua254 local pushes = utils.Stack()
260 pushes:push(item)
266 if not pushes.top or (item.end_column and not pushes.top.end_column) then
272 while pushes.top and pushes.top.end_column do
273 chstate:warn_column_range("022", pushes.top)
274 pushes:pop()
279 pushes:pop()
329 while pushes.top do
330 chstate:warn_column_range("022", pushes:pop())
/dports/games/xsokoban/xsokoban/
H A Dsave.c32 pushes = htons(pushes); in SaveGame()
53 else if (write(savedbn, &pushes, 2) != 2) in SaveGame()
76 pushes = ntohs(pushes); in SaveGame()
117 else if (read(savedbn, &pushes, 2) != 2) in RestoreGame()
135 pushes = ntohs(pushes); in RestoreGame()
/dports/mail/roundcube/roundcubemail-1.5.1/vendor/masterminds/html5/src/HTML5/Parser/
H A DDOMTreeBuilder.php83 protected $pushes = array(); variable in Masterminds\\HTML5\\Parser\\DOMTreeBuilder
330 $pushes = 0;
336 ++$pushes;
347 ++$pushes;
352 ++$pushes;
394 $this->pushes[spl_object_hash($ele)] = array($pushes, $ele);
459 if ($pushes > 0 && Elements::isA($name, Elements::VOID_TAG)) {
461 for ($i = 0; $i < $pushes; ++$i) {
525 if (isset($this->pushes[$cid])) {
526 for ($i = 0; $i < $this->pushes[$cid][0]; ++$i) {
[all …]
/dports/www/typo3-9/typo3_src-9.5.31/vendor/masterminds/html5/src/HTML5/Parser/
H A DDOMTreeBuilder.php83 protected $pushes = array(); variable in Masterminds\\HTML5\\Parser\\DOMTreeBuilder
330 $pushes = 0;
336 ++$pushes;
347 ++$pushes;
352 ++$pushes;
394 $this->pushes[spl_object_hash($ele)] = array($pushes, $ele);
459 if ($pushes > 0 && Elements::isA($name, Elements::VOID_TAG)) {
461 for ($i = 0; $i < $pushes; ++$i) {
525 if (isset($this->pushes[$cid])) {
526 for ($i = 0; $i < $this->pushes[$cid][0]; ++$i) {
[all …]
/dports/www/drupal8/drupal-8.9.20/vendor/masterminds/html5/src/HTML5/Parser/
H A DDOMTreeBuilder.php81 protected $pushes = array(); variable in Masterminds\\HTML5\\Parser\\DOMTreeBuilder
320 $pushes = 0;
326 $pushes ++;
337 $pushes ++;
342 $pushes ++;
388 $this->pushes[spl_object_hash($ele)] = array($pushes, $ele);
450 if ($pushes > 0 && Elements::isA($name, Elements::VOID_TAG)) {
452 for ($i = 0; $i < $pushes; $i ++) {
515 if (isset($this->pushes[$cid])) {
516 for ($i = 0; $i < $this->pushes[$cid][0]; $i ++) {
[all …]
/dports/www/drupal9/drupal-9.2.10/vendor/masterminds/html5/src/HTML5/Parser/
H A DDOMTreeBuilder.php83 protected $pushes = array(); variable in Masterminds\\HTML5\\Parser\\DOMTreeBuilder
330 $pushes = 0;
336 ++$pushes;
347 ++$pushes;
352 ++$pushes;
394 $this->pushes[spl_object_hash($ele)] = array($pushes, $ele);
457 if ($pushes > 0 && Elements::isA($name, Elements::VOID_TAG)) {
459 for ($i = 0; $i < $pushes; ++$i) {
523 if (isset($this->pushes[$cid])) {
524 for ($i = 0; $i < $this->pushes[$cid][0]; ++$i) {
[all …]
/dports/www/typo3-10/typo3_src-10.4.25/vendor/masterminds/html5/src/HTML5/Parser/
H A DDOMTreeBuilder.php83 protected $pushes = array(); variable in Masterminds\\HTML5\\Parser\\DOMTreeBuilder
330 $pushes = 0;
336 ++$pushes;
347 ++$pushes;
352 ++$pushes;
394 $this->pushes[spl_object_hash($ele)] = array($pushes, $ele);
459 if ($pushes > 0 && Elements::isA($name, Elements::VOID_TAG)) {
461 for ($i = 0; $i < $pushes; ++$i) {
525 if (isset($this->pushes[$cid])) {
526 for ($i = 0; $i < $this->pushes[$cid][0]; ++$i) {
[all …]
/dports/www/typo3-11/typo3_src-11.5.7/vendor/masterminds/html5/src/HTML5/Parser/
H A DDOMTreeBuilder.php83 protected $pushes = array(); variable in Masterminds\\HTML5\\Parser\\DOMTreeBuilder
330 $pushes = 0;
336 ++$pushes;
347 ++$pushes;
352 ++$pushes;
394 $this->pushes[spl_object_hash($ele)] = array($pushes, $ele);
459 if ($pushes > 0 && Elements::isA($name, Elements::VOID_TAG)) {
461 for ($i = 0; $i < $pushes; ++$i) {
525 if (isset($this->pushes[$cid])) {
526 for ($i = 0; $i < $this->pushes[$cid][0]; ++$i) {
[all …]
/dports/lang/spidermonkey60/firefox-60.9.0/taskcluster/taskgraph/actions/
H A Dbackfill.py71 pushes = []
81 pushes = pushes + r.json()['pushes'].keys()
82 if len(pushes) >= depth:
90 pushes = sorted(pushes)[-depth:]
93 for push in pushes:

12345678910>>...157