/dports/databases/mantis/mantisbt-2.25.2/ |
H A D | bug_update.php | 121 $t_reporter_id = gpc_get_int( 'reporter_id', $t_existing_bug->reporter_id ); 125 if( $t_reporter_id != $t_existing_bug->reporter_id ) { 141 $t_updated_bug->reporter_id = $t_reporter_id; 251 $t_existing_bug->reporter_id == $t_current_user_id && 258 $t_existing_bug->reporter_id == $t_current_user_id && 437 $t_updated_bug->reporter_id == $t_current_user_id 478 if( user_exists( $t_existing_bug->reporter_id ) ) { 479 bug_monitor( $t_updated_bug->duplicate_id, $t_existing_bug->reporter_id );
|
H A D | bug_view_inc.php | 1112 if( ( $p_bug->handler_id != $p_bug->reporter_id ) 1113 && user_exists( $p_bug->reporter_id ) 1114 && access_has_bug_level( config_get( 'handle_bug_threshold' ), $p_bug->id, $p_bug->reporter_id ) 1117 $p_bug->reporter_id, 1122 $t_default_assign_to = $p_bug->reporter_id;
|
H A D | issues_rss.php | 215 $t_author_name = user_get_name( $t_bug->reporter_id ); 216 $t_author_email = user_get_field( $t_bug->reporter_id, 'email' );
|
H A D | bug_update_page.php | 289 echo string_attribute( user_get_name( $t_bug->reporter_id ) ); 293 print_reporter_option_list( $t_bug->reporter_id, $t_bug->project_id ); 296 echo string_attribute( user_get_name( $t_bug->reporter_id ) );
|
H A D | print_all_bug_page_word.php | 244 <?php print_user( $t_bug->reporter_id, false ) ?> 539 <?php print_user( $t_bugnote->reporter_id, false ) ?>   
|
/dports/devel/py-graphene-sqlalchemy/graphene-sqlalchemy-2.3.0/graphene_sqlalchemy/tests/ |
H A D | test_query.py | 287 reporter_id = graphene.ID() variable in test_mutation.CreateArticle.Arguments 292 def mutate(self, info, headline, reporter_id): argument 293 new_article = Article(headline=headline, reporter_id=reporter_id)
|
H A D | models.py | 41 reporter_id = Column(Integer(), ForeignKey("reporters.id")) variable in Pet 84 reporter_id = Column(Integer(), ForeignKey("reporters.id")) variable in Article
|
/dports/databases/mantis/mantisbt-2.25.2/plugins/XmlImportExport/ImportXml/ |
H A D | Issue.php | 93 $this->newbug_->reporter_id = $this->get_user_id( $t_reader->value, $t_user_id ); 193 $t_bugnotes[$i]->reporter_id = $this->get_user_id( $t_reader->value, $t_user_id ); 267 $t_bugnote->reporter_id,
|
/dports/science/lammps/lammps-stable_29Sep2021/lib/kokkos/containers/src/ |
H A D | Kokkos_ErrorReporter.hpp | 93 bool add_report(int reporter_id, report_type report) const { in add_report() argument 97 m_reporters.d_view(idx) = reporter_id; in add_report()
|
/dports/devel/kokkos/kokkos-3.4.01/containers/src/ |
H A D | Kokkos_ErrorReporter.hpp | 93 bool add_report(int reporter_id, report_type report) const { in add_report() argument 97 m_reporters.d_view(idx) = reporter_id; in add_report()
|
/dports/science/sparta/sparta-20Oct2021/lib/kokkos/containers/src/ |
H A D | Kokkos_ErrorReporter.hpp | 93 bool add_report(int reporter_id, report_type report) const { in add_report() argument 97 m_reporters.d_view(idx) = reporter_id; in add_report()
|
/dports/databases/mantis/mantisbt-2.25.2/core/ |
H A D | bug_api.php | 128 protected $reporter_id = 0; 581 …db_query( $t_query, array( $this->project_id, $this->reporter_id, $this->handler_id, $this->duplic… 686 $this->project_id, $this->reporter_id, 724 …history_log_event_direct( $c_bug_id, 'reporter_id', $t_old_data->reporter_id, $this->reporter_id ); 775 …bug_revision_add( $c_bug_id, $t_old_data->reporter_id, REV_DESCRIPTION, $t_old_data->description, … 783 …bug_revision_add( $c_bug_id, $t_old_data->reporter_id, REV_STEPS_TO_REPRODUCE, $t_old_data->steps_… 791 …bug_revision_add( $c_bug_id, $t_old_data->reporter_id, REV_ADDITIONAL_INFO, $t_old_data->additiona… 1240 $t_bug_data->reporter_id = auth_get_current_user_id(); 2289 $t_user_ids[] = (int)$t_bug->reporter_id;
|
H A D | bugnote_api.php | 91 public $reporter_id; variable in BugnoteData 489 …if( $t_private_bugnote_visible || $t_bugnote->reporter_id == $t_user_id || ( VS_PUBLIC == $t_bugno… 529 $t_note_string = '@' . user_get_name( $t_note->reporter_id ); 570 $t_bugnote->reporter_id = (int)$p_row['reporter_id'];
|
/dports/databases/mantis/mantisbt-2.25.2/plugins/XmlImportExport/pages/ |
H A D | export.php | 188 $t_writer->writeAttribute( 'id', $t_bugnote->reporter_id ); 189 $t_writer->text( user_get_name( $t_bugnote->reporter_id ) );
|
/dports/databases/mantis/mantisbt-2.25.2/plugins/CustomReporter/ |
H A D | CustomReporter.php | 82 $p_bug_data->reporter_id = gpc_get_int( 'reporter_id', auth_get_current_user_id() );
|
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/spec/fixtures/gitlab/database/ |
H A D | structure_example_cleaned.sql | 5 reporter_id integer, field
|
H A D | structure_example.sql | 36 reporter_id integer, field
|
/dports/databases/mantis/mantisbt-2.25.2/core/commands/ |
H A D | IssueAddCommand.php | 240 $this->issue->reporter_id = $t_reporter_id; 303 $t_row = user_get_profile_row( $this->issue->reporter_id, $this->issue->profile_id ); 404 $t_parent_bugnote->reporter_id,
|
/dports/databases/mantis/mantisbt-2.25.2/plugins/Snippets/ |
H A D | Snippets.API.php | 154 user_cache_array_rows(array($bug->reporter_id, $bug->handler_id, $current_user)); 156 $reporter = user_get_username($bug->reporter_id);
|
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/app/services/users/ |
H A D | migrate_to_ghost_user_service.rb | 77 user.reported_abuse_reports.update_all(reporter_id: ghost_user.id)
|
/dports/databases/mantis/mantisbt-2.25.2/plugins/Activity/core/ |
H A D | activity_api.php | 47 $t_bugnote->reporter_id = $row['reporter_id'];
|
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/workhorse/vendor/github.com/lightstep/lightstep-tracer-common/ |
H A D | collector.proto | 60 uint64 reporter_id = 1 [jstype=JS_STRING]; field
|
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/workhorse/vendor/github.com/lightstep/lightstep-tracer-common/golang/protobuf/collectorpb/ |
H A D | collector.proto | 61 uint64 reporter_id = 1 [jstype=JS_STRING]; field
|
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/workhorse/vendor/github.com/lightstep/lightstep-tracer-common/golang/gogo/collectorpb/ |
H A D | collector.proto | 61 uint64 reporter_id = 1 [jstype=JS_STRING]; field
|
/dports/net-mgmt/thanos/thanos-0.11.0/vendor/github.com/lightstep/lightstep-tracer-common/golang/protobuf/collectorpb/ |
H A D | collector.proto | 61 uint64 reporter_id = 1 [jstype=JS_STRING]; field
|