Home
last modified time | relevance | path

Searched refs:is_new (Results 1 – 25 of 1756) sorted by relevance

12345678910>>...71

/dports/benchmarks/phoronix-test-suite/phoronix-test-suite-10.6.1/pts-core/phoromatic/pages/
H A Dphoromatic_sched.php43 $is_new = true;
54 $is_new = false;
83 $$context = $is_new ? null : $e_schedule[$i];
104 if($is_new)
147 phoromatic_add_activity_stream_event('schedule', $schedule_id, ($is_new ? 'added' : 'modified'));
156 $main = '<h2>' . ($is_new ? 'Create' : 'Edit') . ' A Schedule</h2>
161 …<p><input type="text" name="schedule_title" value="' . (!$is_new ? $e_schedule['Title'] : null) . …
178 if(!$is_new)
227 if(!$is_new)
236 …$main .= '<option value="' . $i_f . '"' . (!$is_new && $run_at[0] == $i ? 'selected="selected" ' :…
[all …]
H A Dphoromatic_benchmark.php43 $is_new = true;
287 if($is_new)
327 phoromatic_add_activity_stream_event('benchmark', $ticket_id, ($is_new ? 'added' : 'modified'));
336 <h2>' . ($is_new ? 'Create' : 'Edit') . ' A Benchmark</h2>
350 …<p><input type="text" name="benchmark_title" value="' . (!$is_new ? $e_schedule['Title'] : null) .…
353 …<p><input type="text" name="benchmark_identifier" value="' . (!$is_new ? $e_schedule['Identifier']…
366 …chmark_description" id="benchmark_description" cols="50" rows="3">' . (!$is_new ? $e_schedule['Des…
376 if(!$is_new)
387 …heckbox" name="run_on_systems[]" value="' . $row['SystemID'] . '" ' . (!$is_new && in_array($row['…
402 …heckbox" name="run_on_groups[]" value="' . $row['GroupName'] . '" ' . (!$is_new && in_array($row['…
[all …]
/dports/finance/gnucash/gnucash-4.9/bindings/python/
H A Ddeprecation.py39 def deprecated_args_session(ignore_lock_or_mode=None, is_new=None, argument
43 deprecated_args = (ignore_lock, is_new, force_new)
68 is_new = False if is_new is None else is_new
70 mode = SessionOpenMode((ignore_lock << 2) + (is_new << 1) + force_new)
77 def new_function(self, book_uri=None, ignore_lock_or_mode=None, is_new=None, argument
80 mode = deprecated_args_session(ignore_lock_or_mode, is_new, force_new, mode, ignore_lock)
87 def new_function(self, new_uri=None, ignore_lock_or_mode=None, is_new=None, argument
89 mode = deprecated_args_session(ignore_lock_or_mode, is_new, force_new, mode, ignore_lock)
/dports/net/sems/sems-f89581a/core/sip/
H A Dexclusive_file.cpp34 exclusive_file* get(const string& name, bool& is_new) {
45 is_new = false;
50 if(fp->open(is_new) < 0) {
59 if(is_new) fp->lock();
113 int exclusive_file::open(bool& is_new)
128 is_new = false;
131 is_new = true;
166 bool& is_new)
168 excl_fp = excl_file_reg::instance()->get(filename,is_new);
/dports/www/p5-CGI-Session/CGI-Session-4.48/t/
H A Dis_new.t11 eval { $ses->is_new() };
12 is ($@,'', "session has is_new() method");
14 ok( $ses->is_new(), "a brand new session is_new" );
20 ok( ! $ses2->is_new(), "a session that has been closed and re-opened is not new");
/dports/archivers/arj/arj-3.10.22/
H A Dtoday.c27 int is_new=0; in main() local
60 is_new=1; in main()
64 is_new=1; in main()
66 is_new=1; in main()
68 is_new=1; in main()
71 if(is_new) in main()
/dports/math/polymake/polymake-4.5/apps/polytope/src/
H A Dsplits.cc41 bool is_new=true; in splits() local
44 for (auto j=entire(rows(splits)); is_new && !j.at_end(); ++j) in splits()
45 if (is_zero(h*(*j))) is_new=false; in splits()
46 for (auto j=entire(rows(facets)); is_new && !j.at_end(); ++j) in splits()
47 if (is_zero(h*(*j))) is_new=false; in splits()
49 if (is_new) { in splits()
/dports/devel/monotone/monotone-1.1/src/
H A Dinterner.hh38 bool is_new; in intern() local
39 return intern(s, is_new); in intern()
41 T intern(std::string const & s, bool & is_new) in intern()
47 is_new = res.second; in intern()
48 if (is_new) in intern()
/dports/net/shadowsocks-libev/shadowsocks-libev-3.3.5/libcork/tests/
H A Dtest-hash-table.c145 bool is_new; in START_TEST() local
171 &is_new, &v_key, &v_value)); in START_TEST()
172 fail_unless(is_new, "Couldn't append {0=>32} to hash table"); in START_TEST()
185 (table, &key, &is_new)); in START_TEST()
186 fail_if(is_new, "Shouldn't create new {0=>X} entry"); in START_TEST()
196 (table, &key, &is_new)); in START_TEST()
197 fail_unless(is_new, "Should create new {1=>X} entry"); in START_TEST()
243 &is_new, &v_key, &v_value)); in START_TEST()
244 fail_unless(is_new, "Couldn't append {0=>32} to hash table"); in START_TEST()
254 &is_new, &v_key, &v_value)); in START_TEST()
[all …]
/dports/biology/stringtie/stringtie-2.1.1/SuperReads_RNA/global-1/jellyfish/include/jellyfish/
H A Dhash_counter.hpp98 void add(const Key& k, uint64_t v, bool* is_new, size_t* id) { in add() argument
100 bool* is_new_ptr = is_new; in add()
127 bool is_new; in add() local
129 add(k, v, &is_new, &id); in add()
137 bool is_new; in set() local
139 set(k, &is_new, &id); in set()
146 void set(const Key& k, bool* is_new, size_t* id) { in set() argument
147 while(!ary_->set(k, is_new, id)) in set()
/dports/biology/jellyfish/jellyfish-2.3.0/include/jellyfish/
H A Dhash_counter.hpp91 void add(const Key& k, uint64_t v, bool* is_new, size_t* id) { in add() argument
93 bool* is_new_ptr = is_new; in add()
123 bool is_new; in add() local
125 add(k, v, &is_new, &id); in add()
133 bool is_new; in set() local
135 set(k, &is_new, &id); in set()
142 void set(const Key& k, bool* is_new, size_t* id) { in set() argument
143 while(!ary_->set(k, is_new, id)) in set()
/dports/games/uhexen2/hexen2source-1.5.9/libs/xdelta3/
H A Dxdelta3-blkcache.h202 main_blklru** blrup, int *is_new) in main_getblk_lru() argument
207 (*is_new) = 0; in main_getblk_lru()
226 (*is_new) = 1; in main_getblk_lru()
239 int is_new; in main_read_seek_source() local
297 & blru, & is_new))) in main_read_seek_source()
302 XD3_ASSERT (is_new); in main_read_seek_source()
345 int is_new; in main_getblk_func() local
349 if ((ret = main_getblk_lru (source, blkno, & blru, & is_new))) in main_getblk_func()
354 if (!is_new) in main_getblk_func()
380 (ret = main_getblk_lru (source, blkno, & blru, & is_new))) in main_getblk_func()
/dports/textproc/p5-Plagger/Plagger-0.7.17/lib/Plagger/Rule/
H A DDeduped.pm36 my $is_new = $self->{deduper}->is_new($args->{entry});
37 $self->{deduper}->add($args->{entry}) if $is_new;
39 return $is_new;
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/hotspot/share/opto/
H A Descape.hpp479 bool is_new = from->add_edge(to); in add_edge() local
481 if (is_new) { // New edge? in add_edge()
483 is_new = to->add_use(from); in add_edge()
484 assert(is_new, "use should be also new"); in add_edge()
486 return is_new; in add_edge()
498 bool is_new = from->add_base(to); in add_base() local
500 if (is_new) { // New edge? in add_base()
505 is_new = to->add_edge(from); in add_base()
507 is_new = to->add_base_use(from); in add_base()
509 assert(is_new, "use should be also new"); in add_base()
[all …]
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/hotspot/share/opto/
H A Descape.hpp479 bool is_new = from->add_edge(to); in add_edge() local
481 if (is_new) { // New edge? in add_edge()
483 is_new = to->add_use(from); in add_edge()
484 assert(is_new, "use should be also new"); in add_edge()
486 return is_new; in add_edge()
498 bool is_new = from->add_base(to); in add_base() local
500 if (is_new) { // New edge? in add_base()
505 is_new = to->add_edge(from); in add_base()
507 is_new = to->add_base_use(from); in add_base()
509 assert(is_new, "use should be also new"); in add_base()
[all …]
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/hotspot/share/opto/
H A Descape.hpp477 bool is_new = from->add_edge(to); in add_edge() local
479 if (is_new) { // New edge? in add_edge()
481 is_new = to->add_use(from); in add_edge()
482 assert(is_new, "use should be also new"); in add_edge()
484 return is_new; in add_edge()
496 bool is_new = from->add_base(to); in add_base() local
498 if (is_new) { // New edge? in add_base()
503 is_new = to->add_edge(from); in add_base()
505 is_new = to->add_base_use(from); in add_base()
507 assert(is_new, "use should be also new"); in add_base()
[all …]
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/hotspot/share/opto/
H A Descape.hpp477 bool is_new = from->add_edge(to); in add_edge() local
479 if (is_new) { // New edge? in add_edge()
481 is_new = to->add_use(from); in add_edge()
482 assert(is_new, "use should be also new"); in add_edge()
484 return is_new; in add_edge()
496 bool is_new = from->add_base(to); in add_base() local
498 if (is_new) { // New edge? in add_base()
503 is_new = to->add_edge(from); in add_base()
505 is_new = to->add_base_use(from); in add_base()
507 assert(is_new, "use should be also new"); in add_base()
[all …]
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/hotspot/share/opto/
H A Descape.hpp474 bool is_new = from->add_edge(to); in add_edge() local
476 if (is_new) { // New edge? in add_edge()
478 is_new = to->add_use(from); in add_edge()
479 assert(is_new, "use should be also new"); in add_edge()
481 return is_new; in add_edge()
493 bool is_new = from->add_base(to); in add_base() local
495 if (is_new) { // New edge? in add_base()
500 is_new = to->add_edge(from); in add_base()
502 is_new = to->add_base_use(from); in add_base()
504 assert(is_new, "use should be also new"); in add_base()
[all …]
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/src/hotspot/share/opto/
H A Descape.hpp479 bool is_new = from->add_edge(to); in add_edge() local
481 if (is_new) { // New edge? in add_edge()
483 is_new = to->add_use(from); in add_edge()
484 assert(is_new, "use should be also new"); in add_edge()
486 return is_new; in add_edge()
498 bool is_new = from->add_base(to); in add_base() local
500 if (is_new) { // New edge? in add_base()
506 is_new = to->add_edge(from); in add_base()
508 is_new = to->add_base_use(from); in add_base()
510 assert(is_new, "use should be also new"); in add_base()
[all …]
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/hotspot/share/opto/
H A Descape.hpp474 bool is_new = from->add_edge(to); in add_edge() local
476 if (is_new) { // New edge? in add_edge()
478 is_new = to->add_use(from); in add_edge()
479 assert(is_new, "use should be also new"); in add_edge()
481 return is_new; in add_edge()
493 bool is_new = from->add_base(to); in add_base() local
495 if (is_new) { // New edge? in add_base()
500 is_new = to->add_edge(from); in add_base()
502 is_new = to->add_base_use(from); in add_base()
504 assert(is_new, "use should be also new"); in add_base()
[all …]
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/src/hotspot/share/opto/
H A Descape.hpp474 bool is_new = from->add_edge(to); in add_edge() local
476 if (is_new) { // New edge? in add_edge()
478 is_new = to->add_use(from); in add_edge()
479 assert(is_new, "use should be also new"); in add_edge()
481 return is_new; in add_edge()
493 bool is_new = from->add_base(to); in add_base() local
495 if (is_new) { // New edge? in add_base()
500 is_new = to->add_edge(from); in add_base()
502 is_new = to->add_base_use(from); in add_base()
504 assert(is_new, "use should be also new"); in add_base()
[all …]
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/hotspot/src/share/vm/opto/
H A Descape.hpp479 bool is_new = from->add_edge(to); in add_edge() local
481 if (is_new) { // New edge? in add_edge()
483 is_new = to->add_use(from); in add_edge()
484 assert(is_new, "use should be also new"); in add_edge()
486 return is_new; in add_edge()
498 bool is_new = from->add_base(to); in add_base() local
500 if (is_new) { // New edge? in add_base()
505 is_new = to->add_edge(from); in add_base()
507 is_new = to->add_base_use(from); in add_base()
509 assert(is_new, "use should be also new"); in add_base()
[all …]
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/hotspot/src/share/vm/opto/
H A Descape.hpp479 bool is_new = from->add_edge(to); in add_edge() local
481 if (is_new) { // New edge? in add_edge()
483 is_new = to->add_use(from); in add_edge()
484 assert(is_new, "use should be also new"); in add_edge()
486 return is_new; in add_edge()
498 bool is_new = from->add_base(to); in add_base() local
500 if (is_new) { // New edge? in add_base()
505 is_new = to->add_edge(from); in add_base()
507 is_new = to->add_base_use(from); in add_base()
509 assert(is_new, "use should be also new"); in add_base()
[all …]
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/app/models/concerns/
H A Dhas_wiki_page_meta_attributes.rb128 def insert_slugs(strings, is_new, canonical_slug) argument
132 slug_attributes(slug, canonical_slug, is_new, creation)
134 slugs.insert_all(slug_attrs) unless !is_new && slug_attrs.size == 1
136 …@canonical_slug = canonical_slug if is_new || strings.size == 1 # rubocop:disable Gitlab/ModuleWit…
139 def slug_attributes(slug, canonical_slug, is_new, creation) argument
142 canonical: (is_new && slug == canonical_slug),
/dports/math/z3/z3-z3-4.8.13/src/model/
H A Dvalue_factory.h115 app * mk_value(Number const & val, sort * s, bool & is_new) { in mk_value() argument
118 is_new = false; in mk_value()
122 is_new = true; in mk_value()
180 bool is_new = false; in get_fresh_value() local
193 while (!is_new) { in get_fresh_value()
194 result = mk_value(next, s, is_new); in get_fresh_value()
214 bool is_new; in mk_value() local
215 return mk_value(val, s, is_new); in mk_value()

12345678910>>...71