Home
last modified time | relevance | path

Searched refs:collaborators (Results 1 – 25 of 1100) sorted by relevance

12345678910>>...44

/dports/www/crp/CRP/Author/
H A DModifyPaper.php51 …IsSet($_REQUEST[abstract]) || !IsSet($_REQUEST[authorInfo]) || !IsSet($_REQUEST[collaborators]) ) {
68 $_REQUEST[collaborators] = addslashes($_REQUEST[collaborators]);
117 $_REQUEST[collaborators]=$row[5];
153 $_REQUEST[authorInfo],$_REQUEST[collaborators],
H A Dcopy_paperform2 function paperForm( $Conf, $title="", $abstract="", $authorInfo="", $collaborators="", $topics=arra…
28 affiliations) who are currently, or who have been collaborators or
30 and collaborators. Please list one person per line. This is
33 …<td valign="top"> <textarea rows=20 name="collaborators" cols=75><?php echo stripslashes($collabor…
H A DSubmitPaper2.php31 if ( !IsSet($_REQUEST[collaborators]) || $_REQUEST[collaborators] == "" ) {
59 $_REQUEST[collaborators] = addslashes(htmlspecialchars($_REQUEST[collaborators]));
H A DPaperTable.inc4 . " LENGTH(PaperStorage.paper) as size, PaperStorage.mimetype, Paper.collaborators "
25 $collaborators = $Conf->safeHtml($row['collaborators']);
46 <tr> <td> Collaborators: </td> <td> <?php echo $collaborators ?> </td> </tr>
H A Dcopy_submitpaper217 !IsSet($_REQUEST[collaborators]) || $_REQUEST[collaborators] == "" ||
28 $_REQUEST[collaborators] = addslashes(htmlspecialchars($_REQUEST[collaborators]));
43 . "collaborators='$_REQUEST[collaborators]', "
H A DPaperForm.inc3 function paperForm( $Conf, $title="", $abstract="", $authorInfo="", $collaborators="", $topics=arra…
30 affiliations) who are currently, or who have been collaborators or
32 and collaborators. Be sure to include PC members in that list of collaborators. Please list one pe…
35 …<td valign="top"> <textarea rows=20 name="collaborators" cols=75><?php echo stripslashes($collabor…
H A DDeletePaper.php47 $collaborators = $row['collaborators']; variable
57 <tr> <td> Collaborators: </td> <td> <?php echo $collaborators ?> </td> </tr>
/dports/devel/py-marshmallow/marshmallow-3.14.1/tests/
H A Dbase.py114 def __init__(self, title, user, collaborators=None, categories=None, id_=None): argument
117 self.collaborators = collaborators or [] # List/tuple of users
122 return item.name in [each.name for each in self.collaborators]
288 collaborators = fields.List(fields.Nested(UserSchema())) variable in BlogSchema
295 collaborators = fields.List(fields.Nested(UserMetaSchema())) variable in BlogUserMetaSchema
302 collaborators = fields.List(fields.Nested(UserSchema())) variable in BlogSchemaMeta
311 collaborators = fields.List(fields.Nested(UserSchema(only=("id",)))) variable in BlogOnlySchema
/dports/security/lego/lego-4.5.3/vendor/github.com/dnsimple/dnsimple-go/dnsimple/
H A Ddomains_collaborators_test.go45 collaborators := collaboratorsResponse.Data
46 if want, got := 2, len(collaborators); want != got {
50 if want, got := int64(100), collaborators[0].ID; want != got {
53 if want, got := "example.com", collaborators[0].DomainName; want != got {
56 if want, got := int64(999), collaborators[0].UserID; want != got {
59 if want, got := false, collaborators[0].Invitation; want != got {
/dports/devel/git-town/git-town-7.6.0/vendor/code.gitea.io/sdk/gitea/
H A Drepo_collaborator.go21 collaborators := make([]*User, 0, opt.PageSize)
22 return collaborators, c.getParsedResponse("GET",
24 nil, nil, &collaborators)
/dports/www/hotcrp/hotcrp-2.102/batch/
H A Dupdatecontactdb.php21 $collaborators = isset($arg["collaborators"]); variable
22 if (!$users && !$papers && !$collaborators)
100 if ($collaborators) {
/dports/math/clblas/clBLAS-2.10/
H A DCONTRIBUTING.md25 …/ ) and insert a link to the test results in the pull request so that collaborators can browse the…
26 …* if no test results are provided with the pull request, official collaborators will run the test …
30 …* if the collaborators feel the new tests do not provide sufficient coverage, feedback on the pull…
32collaborators that are assigned for the repository. Pull requests may be accepted, declined or a …
35 … to be official collaborators of the project. When an individual requests to be an official colla…
/dports/math/clfft/clFFT-2.12.2/
H A DCONTRIBUTING.md25 …/ ) and insert a link to the test results in the pull request so that collaborators can browse the…
26 …* if no test results are provided with the pull request, official collaborators will run the test …
30 …* if the collaborators feel the new tests do not provide sufficient coverage, feedback on the pull…
32collaborators that are assigned for the repository. Pull requests may be accepted, declined or a …
35 … to be official collaborators of the project. When an individual requests to be an official colla…
/dports/www/gitea/gitea-1.16.5/vendor/code.gitea.io/sdk/gitea/
H A Drepo_collaborator.go25 collaborators := make([]*User, 0, opt.PageSize)
28 nil, nil, &collaborators)
29 return collaborators, resp, err
/dports/devel/p5-Pithub/Pithub-0.01036/t/
H A Dmulti.t7 # collaborators/list.t
35 throws_ok { Pithub->new->repos->collaborators->list } qr{Missing key in parameters: user}, 'No para…
36 throws_ok { Pithub::Repos->new->collaborators->list } qr{Missing key in parameters: user}, 'No para…
62 throws_ok { Pithub->new->repos->collaborators->list( user => 'plu' ) } qr{Missing key in parameters…
63 throws_ok { Pithub::Repos->new->collaborators->list( user => 'plu' ) } qr{Missing key in parameters…
128 … return Pithub::Test::Factory->create( 'Pithub', %$c_args )->repos->collaborators->list(%$m_args);
130 path => '/repos/plu/Pithub/collaborators',
137 … return Pithub::Test::Factory->create( 'Pithub::Repos', %$c_args )->collaborators->list(%$m_args);
139 path => '/repos/plu/Pithub/collaborators',
148 path => '/repos/plu/Pithub/collaborators',
/dports/www/gitea/gitea-1.16.5/routers/api/v1/repo/
H A Dcollaborators.go58 collaborators, err := models.GetCollaborators(ctx.Repo.Repository.ID, utils.GetListOptions(ctx))
64 users := make([]*api.User, len(collaborators))
65 for i, collaborator := range collaborators {
/dports/www/osticket/upload/include/i18n/en_US/templates/email/
H A Dtask.activity.notice.yaml4 # Notice sent to collaborators on task activity e.g reply or message
8 Notice sent to collaborators on task activity e.g reply or message.
H A Dticket.activity.notice.yaml4 # Notice sent to collaborators on ticket activity e.g reply or message
8 Notice sent to collaborators on ticket activity e.g reply or message.
/dports/www/gitea/gitea-1.16.5/models/
H A Drepo_collaboration_test.go38 collaborators, err := GetCollaborators(repo.ID, db.ListOptions{})
42 assert.Len(t, collaborators, int(expectedLen))
43 for _, collaborator := range collaborators {
H A Drepo_collaboration.go98 collaborators := make([]*Collaborator, 0, len(collaborations))
109 collaborators = append(collaborators, &Collaborator{
114 return collaborators, nil
/dports/www/crp/CRP/Chair/
H A DListPC.php45 $collaborators = nl2br($row[$i++]); variable
51 print "<tr> <td colspan=4> Collaborators: <br> $collaborators </td></tr>";
/dports/security/vuls/vuls-0.13.7/vendor/github.com/Azure/azure-sdk-for-go/services/cognitiveservices/v2.0/luis/programmatic/
H A Dpermissions.go237 func (client PermissionsClient) Update(ctx context.Context, appID uuid.UUID, collaborators Collabor…
238 req, err := client.UpdatePreparer(ctx, appID, collaborators)
260 func (client PermissionsClient) UpdatePreparer(ctx context.Context, appID uuid.UUID, collaborators
274 autorest.WithJSON(collaborators))
/dports/net-mgmt/bosun/bosun-0.9.0-preview/vendor/github.com/Azure/azure-sdk-for-go/services/cognitiveservices/v2.0/luis/authoring/
H A Dpermissions.go237 func (client PermissionsClient) Update(ctx context.Context, appID uuid.UUID, collaborators Collabor…
238 req, err := client.UpdatePreparer(ctx, appID, collaborators)
260 func (client PermissionsClient) UpdatePreparer(ctx context.Context, appID uuid.UUID, collaborators
274 autorest.WithJSON(collaborators))
/dports/net-mgmt/bosun/bosun-0.9.0-preview/vendor/github.com/Azure/azure-sdk-for-go/services/cognitiveservices/v2.0/luis/programmatic/
H A Dpermissions.go237 func (client PermissionsClient) Update(ctx context.Context, appID uuid.UUID, collaborators Collabor…
238 req, err := client.UpdatePreparer(ctx, appID, collaborators)
260 func (client PermissionsClient) UpdatePreparer(ctx context.Context, appID uuid.UUID, collaborators
274 autorest.WithJSON(collaborators))
/dports/net-mgmt/thanos/thanos-0.11.0/vendor/github.com/Azure/azure-sdk-for-go/services/cognitiveservices/v2.0/luis/programmatic/
H A Dpermissions.go237 func (client PermissionsClient) Update(ctx context.Context, appID uuid.UUID, collaborators Collabor…
238 req, err := client.UpdatePreparer(ctx, appID, collaborators)
260 func (client PermissionsClient) UpdatePreparer(ctx context.Context, appID uuid.UUID, collaborators
274 autorest.WithJSON(collaborators))

12345678910>>...44