Home
last modified time | relevance | path

Searched refs:assignee (Results 1 – 25 of 1142) sorted by relevance

12345678910>>...46

/dports/sysutils/py-azure-cli/azure-cli-2.29.2/azure/cli/command_modules/synapse/operations/
H A Daccesscontrol.py18 if bool(assignee) and bool(assignee_object_id):
34 …object_id = _resolve_object_id(cmd, assignee, fallback_to_object_id=True) if resolve_assignee else…
88 if bool(assignee) == bool(assignee_object_id):
104 assignee=assignee, assignee_object_id=assignee_object_id,
110 if assignee is None:
122 result = _get_object_stubs(client, [assignee])
128 "with 'az ad sp create --id {assignee}'.".format(assignee=assignee))
133 .format(assignee=assignee))
137 if fallback_to_object_id and is_guid(assignee):
138 return assignee
[all …]
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/app/assets/javascripts/issuable/components/
H A Dissue_assignees.vue62 avatarUrlTitle(assignee) {
64 assigneeName: assignee.name,
70 webUrl(assignee) {
71 return assignee.web_url || assignee.webUrl;
73 avatarUrl(assignee) {
74 return assignee.avatar_url || assignee.avatarUrl;
83 :key="assignee.id"
84 :link-href="webUrl(assignee)"
87 :img-src="avatarUrl(assignee)"
93 <span class="js-assignee-tooltip">
[all …]
/dports/graphics/qgis/qgis-3.22.3/scripts/
H A Dlistpulls.pl18 my $assignee = $pull->{assignee}->{login};
19 $assignee = "" unless defined $assignee;
21 push @{ $assigned{$assignee} }, $pull->{number};
23 printf "%5d %-16s %s\n", $pull->{number}, $assignee || "", $pull->{title};
28 foreach my $assignee ( sort keys %assigned ) {
29 …printf "%-22s %s\n", $assignee || "unassigned", join( ", ", sort { $a <=> $b } @{ $assigned{$assig…
/dports/graphics/qgis-ltr/qgis-3.16.16/scripts/
H A Dlistpulls.pl18 my $assignee = $pull->{assignee}->{login};
19 $assignee = "" unless defined $assignee;
21 push @{ $assigned{$assignee} }, $pull->{number};
23 printf "%5d %-16s %s\n", $pull->{number}, $assignee || "", $pull->{title};
28 foreach my $assignee ( sort keys %assigned ) {
29 …printf "%-22s %s\n", $assignee || "unassigned", join( ", ", sort { $a <=> $b } @{ $assigned{$assig…
/dports/lang/rust/rustc-1.58.1-src/src/tools/clippy/clippy_lints/src/
H A Dassign_ops.rs89 hir::ExprKind::Assign(assignee, e, _) => { in check_expr()
92 let ty = cx.typeck_results().expr_ty(assignee); in check_expr()
125 assignee, in check_expr()
134 if eq_expr_value(cx, assignee, l) { in check_expr()
135 lint(assignee, r); in check_expr()
139 … if eq_expr_value(cx, assignee, r) && cx.typeck_results().expr_ty(assignee).is_primitive_ty() { in check_expr()
148 lint(assignee, l); in check_expr()
166 assignee: &hir::Expr<'_>, in lint_misrefactored_assign_op()
176 let a = &sugg::Sugg::hir(cx, assignee, ".."); in lint_misrefactored_assign_op()
215 assignee: &'a hir::Expr<'a>, field
[all …]
/dports/net-mgmt/bosun/bosun-0.9.0-preview/vendor/github.com/google/go-github/github/
H A Dissues_assignees_test.go50 assignee, _, err := client.Issues.IsAssignee("o", "r", "u")
54 if want := true; assignee != want {
55 t.Errorf("Issues.IsAssignee returned %+v, want %+v", assignee, want)
68 assignee, _, err := client.Issues.IsAssignee("o", "r", "u")
72 if want := false; assignee != want {
73 t.Errorf("Issues.IsAssignee returned %+v, want %+v", assignee, want)
86 assignee, _, err := client.Issues.IsAssignee("o", "r", "u")
90 if want := false; assignee != want {
91 t.Errorf("Issues.IsAssignee returned %+v, want %+v", assignee, want)
/dports/www/osticket/upload/include/
H A Dclass.task.php325 if ($assignee instanceof Staff)
326 $id = 's'.$assignee->getId();
488 $prompt = $assignee = '';
775 $evd['staff'] = array($assignee->getId(), $assignee->getName());
802 $this->onAssignment($assignee,
812 if (!is_object($assignee))
848 } elseif (($assignee instanceof Team) && $assignee->alertsEnabled()) {
988 $assignee = $this->getStaff();
996 'assignee' => $assignee
1022 $assignee = $this->getStaff();
[all …]
/dports/devel/fossology-nomos-standalone/fossology-3.11.0/src/www/ui/api/Models/
H A DUploadSummary.php62 private $assignee; variable in Fossology\\UI\\Api\\Models\\UploadSummary
107 $this->assignee = null;
128 "assignee" => $this->assignee,
182 * @param integer $assignee
184 public function setAssignee($assignee) argument
186 $this->assignee = $assignee == 1 ? null : intval($assignee);
H A DUpload.php64 private $assignee; variable in Fossology\\UI\\Api\\Models\\Upload
82 $uploadName, $uploadDate, $assignee, $hash) argument
90 $this->assignee = $assignee == 1 ? null : intval($assignee);
116 "assignee" => $this->assignee,
/dports/www/gitea/gitea-1.16.5/services/issue/
H A Dissue.go86 for _, assignee := range multipleAssignees {
87 if assignee == oneAssignee {
100 assignee, err := user_model.GetUserByName(assigneeName)
105 allNewAssignees = append(allNewAssignees, assignee)
117 for _, assignee := range allNewAssignees {
119 err = AddAssigneeIfNotAssigned(issue, doer, assignee.ID)
131 assignee, err := user_model.GetUserByID(assigneeID)
137 isAssigned, err := models.IsUserAssignedToIssue(issue, assignee)
146 valid, err := models.CanBeAssigned(assignee, issue.Repo, issue.IsPull)
/dports/www/owncloud/owncloud/apps/files_external/3rdparty/google/apiclient-services/src/Google/Service/BigQueryReservation/
H A DAssignment.php20 public $assignee; variable in Google_Service_BigQueryReservation_Assignment
25 public function setAssignee($assignee) argument
27 $this->assignee = $assignee;
31 return $this->assignee;
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/app/views/shared/issuable/form/
H A D_metadata_issuable_assignee.html.haml4 - issuable.assignees.each do |assignee|
5 …ignee_ids][]", assignee.id, id: nil, data: { meta: assignee.name, avatar_url: assignee.avatar_url,…
/dports/www/joomla3/joomla3-3.9.24/libraries/joomla/github/package/
H A Dissues.php39 …* @param string $assignee The login for the GitHub user that this issue should be assigned t…
48 …public function create($user, $repo, $title, $body = null, $assignee = null, $milestone = null, ar… argument
63 'assignee' => $assignee,
93 …* @param string $assignee The login for the GitHub user that this issue should be assigned t…
102 …public function edit($user, $repo, $issueId, $state = null, $title = null, $body = null, $assignee argument
129 if (isset($assignee))
131 $data->assignee = $assignee;
246 * @param string $assignee The assignee name, 'none', or *.
260 …public function getListByRepository($user, $repo, $milestone = null, $state = null, $assignee = nu… argument
278 if ($assignee)
[all …]
/dports/www/osticket/upload/include/staff/templates/
H A Drelease.tmpl.php42 <?php foreach($assignees as $assignee) { ?>
46 ($isStaff = $assignee instanceof Staff)
49 $assignee->getId(),
50 $assignee->getId()); ?>
53 <?php echo $assignee->getName(); ?>
/dports/www/owncloud/owncloud/apps/files_external/3rdparty/google/apiclient-services/src/Google/Service/AlertCenter/
H A DAlertMetadata.php21 public $assignee; variable in Google_Service_AlertCenter_AlertMetadata
36 public function setAssignee($assignee) argument
38 $this->assignee = $assignee;
42 return $this->assignee;
H A DGoogleAppsAlertcenterV1beta1AlertMetadata.php21 public $assignee; variable in Google_Service_AlertCenter_GoogleAppsAlertcenterV1beta1AlertMetadata
36 public function setAssignee($assignee) argument
38 $this->assignee = $assignee;
42 return $this->assignee;
/dports/security/vault/vault-1.8.2/vendor/github.com/google/go-github/github/
H A Dissues_assignees_test.go55 assignee, _, err := client.Issues.IsAssignee(context.Background(), "o", "r", "u")
59 if want := true; assignee != want {
60 t.Errorf("Issues.IsAssignee returned %+v, want %+v", assignee, want)
73 assignee, _, err := client.Issues.IsAssignee(context.Background(), "o", "r", "u")
77 if want := false; assignee != want {
78 t.Errorf("Issues.IsAssignee returned %+v, want %+v", assignee, want)
91 assignee, _, err := client.Issues.IsAssignee(context.Background(), "o", "r", "u")
95 if want := false; assignee != want {
96 t.Errorf("Issues.IsAssignee returned %+v, want %+v", assignee, want)
/dports/net/evans/evans-0.9.1/vendor/github.com/google/go-github/github/
H A Dissues_assignees_test.go55 assignee, _, err := client.Issues.IsAssignee(context.Background(), "o", "r", "u")
59 if want := true; assignee != want {
60 t.Errorf("Issues.IsAssignee returned %+v, want %+v", assignee, want)
73 assignee, _, err := client.Issues.IsAssignee(context.Background(), "o", "r", "u")
77 if want := false; assignee != want {
78 t.Errorf("Issues.IsAssignee returned %+v, want %+v", assignee, want)
91 assignee, _, err := client.Issues.IsAssignee(context.Background(), "o", "r", "u")
95 if want := false; assignee != want {
96 t.Errorf("Issues.IsAssignee returned %+v, want %+v", assignee, want)
/dports/deskutils/pet/pet-0.4.0/vendor/github.com/google/go-github/github/
H A Dissues_assignees_test.go55 assignee, _, err := client.Issues.IsAssignee(context.Background(), "o", "r", "u")
59 if want := true; assignee != want {
60 t.Errorf("Issues.IsAssignee returned %+v, want %+v", assignee, want)
73 assignee, _, err := client.Issues.IsAssignee(context.Background(), "o", "r", "u")
77 if want := false; assignee != want {
78 t.Errorf("Issues.IsAssignee returned %+v, want %+v", assignee, want)
91 assignee, _, err := client.Issues.IsAssignee(context.Background(), "o", "r", "u")
95 if want := false; assignee != want {
96 t.Errorf("Issues.IsAssignee returned %+v, want %+v", assignee, want)
/dports/devel/git-town/git-town-7.6.0/vendor/github.com/google/go-github/go-github-17.0.0/github/
H A Dissues_assignees_test.go55 assignee, _, err := client.Issues.IsAssignee(context.Background(), "o", "r", "u")
59 if want := true; assignee != want {
60 t.Errorf("Issues.IsAssignee returned %+v, want %+v", assignee, want)
73 assignee, _, err := client.Issues.IsAssignee(context.Background(), "o", "r", "u")
77 if want := false; assignee != want {
78 t.Errorf("Issues.IsAssignee returned %+v, want %+v", assignee, want)
91 assignee, _, err := client.Issues.IsAssignee(context.Background(), "o", "r", "u")
95 if want := false; assignee != want {
96 t.Errorf("Issues.IsAssignee returned %+v, want %+v", assignee, want)
/dports/www/beehive/beehive-0.4.0/vendor/github.com/google/go-github/github/
H A Dissues_assignees_test.go55 assignee, _, err := client.Issues.IsAssignee(context.Background(), "o", "r", "u")
59 if want := true; assignee != want {
60 t.Errorf("Issues.IsAssignee returned %+v, want %+v", assignee, want)
73 assignee, _, err := client.Issues.IsAssignee(context.Background(), "o", "r", "u")
77 if want := false; assignee != want {
78 t.Errorf("Issues.IsAssignee returned %+v, want %+v", assignee, want)
91 assignee, _, err := client.Issues.IsAssignee(context.Background(), "o", "r", "u")
95 if want := false; assignee != want {
96 t.Errorf("Issues.IsAssignee returned %+v, want %+v", assignee, want)
/dports/security/vuls/vuls-0.13.7/vendor/github.com/google/go-github/v28/github/
H A Dissues_assignees_test.go55 assignee, _, err := client.Issues.IsAssignee(context.Background(), "o", "r", "u")
59 if want := true; assignee != want {
60 t.Errorf("Issues.IsAssignee returned %+v, want %+v", assignee, want)
73 assignee, _, err := client.Issues.IsAssignee(context.Background(), "o", "r", "u")
77 if want := false; assignee != want {
78 t.Errorf("Issues.IsAssignee returned %+v, want %+v", assignee, want)
91 assignee, _, err := client.Issues.IsAssignee(context.Background(), "o", "r", "u")
95 if want := false; assignee != want {
96 t.Errorf("Issues.IsAssignee returned %+v, want %+v", assignee, want)
/dports/net-mgmt/semaphore/semaphore-2.6.8/vendor/github.com/google/go-github/github/
H A Dissues_assignees_test.go55 assignee, _, err := client.Issues.IsAssignee(context.Background(), "o", "r", "u")
59 if want := true; assignee != want {
60 t.Errorf("Issues.IsAssignee returned %+v, want %+v", assignee, want)
73 assignee, _, err := client.Issues.IsAssignee(context.Background(), "o", "r", "u")
77 if want := false; assignee != want {
78 t.Errorf("Issues.IsAssignee returned %+v, want %+v", assignee, want)
91 assignee, _, err := client.Issues.IsAssignee(context.Background(), "o", "r", "u")
95 if want := false; assignee != want {
96 t.Errorf("Issues.IsAssignee returned %+v, want %+v", assignee, want)
/dports/security/gopass/gopass-1.13.0/vendor/github.com/google/go-github/v33/github/
H A Dissues_assignees_test.go55 assignee, _, err := client.Issues.IsAssignee(context.Background(), "o", "r", "u")
59 if want := true; assignee != want {
60 t.Errorf("Issues.IsAssignee returned %+v, want %+v", assignee, want)
73 assignee, _, err := client.Issues.IsAssignee(context.Background(), "o", "r", "u")
77 if want := false; assignee != want {
78 t.Errorf("Issues.IsAssignee returned %+v, want %+v", assignee, want)
91 assignee, _, err := client.Issues.IsAssignee(context.Background(), "o", "r", "u")
95 if want := false; assignee != want {
96 t.Errorf("Issues.IsAssignee returned %+v, want %+v", assignee, want)
/dports/security/gopass/gopass-1.13.0/vendor/github.com/google/go-github/github/
H A Dissues_assignees_test.go55 assignee, _, err := client.Issues.IsAssignee(context.Background(), "o", "r", "u")
59 if want := true; assignee != want {
60 t.Errorf("Issues.IsAssignee returned %+v, want %+v", assignee, want)
73 assignee, _, err := client.Issues.IsAssignee(context.Background(), "o", "r", "u")
77 if want := false; assignee != want {
78 t.Errorf("Issues.IsAssignee returned %+v, want %+v", assignee, want)
91 assignee, _, err := client.Issues.IsAssignee(context.Background(), "o", "r", "u")
95 if want := false; assignee != want {
96 t.Errorf("Issues.IsAssignee returned %+v, want %+v", assignee, want)

12345678910>>...46