Home
last modified time | relevance | path

Searched refs:Attachments (Results 151 – 175 of 7250) sorted by relevance

12345678910>>...290

/dports/sysutils/docker-registry/distribution-2.7.1/vendor/google.golang.org/appengine/appengine-1.4.0/mail/
H A Dmail.go51 Attachments []Attachment member
94 if len(msg.Attachments) > 0 {
95 req.Attachment = make([]*pb.MailAttachment, len(msg.Attachments))
96 for i, att := range msg.Attachments {
/dports/databases/cayley/cayley-0.7.5-2-gcf576ba/vendor/google.golang.org/appengine/mail/
H A Dmail.go51 Attachments []Attachment member
94 if len(msg.Attachments) > 0 {
95 req.Attachment = make([]*pb.MailAttachment, len(msg.Attachments))
96 for i, att := range msg.Attachments {
/dports/sysutils/chaoskube/chaoskube-0.22.0/vendor/google.golang.org/appengine/mail/
H A Dmail.go51 Attachments []Attachment member
94 if len(msg.Attachments) > 0 {
95 req.Attachment = make([]*pb.MailAttachment, len(msg.Attachments))
96 for i, att := range msg.Attachments {
/dports/audio/visp-go/visp-2585747/vendor/google.golang.org/appengine/mail/
H A Dmail.go51 Attachments []Attachment member
94 if len(msg.Attachments) > 0 {
95 req.Attachment = make([]*pb.MailAttachment, len(msg.Attachments))
96 for i, att := range msg.Attachments {
/dports/www/tusd/tusd-1.8.0/vendor/google.golang.org/appengine/mail/
H A Dmail.go51 Attachments []Attachment member
94 if len(msg.Attachments) > 0 {
95 req.Attachment = make([]*pb.MailAttachment, len(msg.Attachments))
96 for i, att := range msg.Attachments {
/dports/www/tusc/tusc-0.4.7/vendor/github.com/tus/tusd/vendor/google.golang.org/appengine/mail/
H A Dmail.go51 Attachments []Attachment member
94 if len(msg.Attachments) > 0 {
95 req.Attachment = make([]*pb.MailAttachment, len(msg.Attachments))
96 for i, att := range msg.Attachments {
/dports/sysutils/istio/istio-1.6.7/vendor/google.golang.org/appengine/mail/
H A Dmail.go51 Attachments []Attachment member
94 if len(msg.Attachments) > 0 {
95 req.Attachment = make([]*pb.MailAttachment, len(msg.Attachments))
96 for i, att := range msg.Attachments {
/dports/databases/litestream/litestream-0.3.6/vendor/google.golang.org/appengine/mail/
H A Dmail.go51 Attachments []Attachment
94 if len(msg.Attachments) > 0 {
95 req.Attachment = make([]*pb.MailAttachment, len(msg.Attachments))
96 for i, att := range msg.Attachments {
/dports/www/otrs/otrs-rel-6_0_29/Kernel/Modules/
H A DAjaxAttachment.pm65 my @Attachments = $UploadCacheObject->FormIDGetAllFilesMeta(
72 for my $Attachment (@Attachments) {
113 my @Attachments = $UploadCacheObject->FormIDGetAllFilesMeta(
120 for my $Attachment (@Attachments) {
/dports/sysutils/terraform/terraform-1.0.11/vendor/google.golang.org/appengine/mail/
H A Dmail.go51 Attachments []Attachment member
94 if len(msg.Attachments) > 0 {
95 req.Attachment = make([]*pb.MailAttachment, len(msg.Attachments))
96 for i, att := range msg.Attachments {
/dports/net-mgmt/bosun/bosun-0.9.0-preview/vendor/google.golang.org/appengine/mail/
H A Dmail.go51 Attachments []Attachment member
94 if len(msg.Attachments) > 0 {
95 req.Attachment = make([]*pb.MailAttachment, len(msg.Attachments))
96 for i, att := range msg.Attachments {
/dports/net/grpcurl/grpcurl-1.8.5/vendor/google.golang.org/appengine/mail/
H A Dmail.go51 Attachments []Attachment member
94 if len(msg.Attachments) > 0 {
95 req.Attachment = make([]*pb.MailAttachment, len(msg.Attachments))
96 for i, att := range msg.Attachments {
/dports/www/gitea/gitea-1.16.5/services/release/
H A Drelease_test.go250 assert.Len(t, release.Attachments, 1)
251 assert.EqualValues(t, attach.UUID, release.Attachments[0].UUID)
252 assert.EqualValues(t, release.ID, release.Attachments[0].ReleaseID)
253 assert.EqualValues(t, attach.Name, release.Attachments[0].Name)
259 release.Attachments = nil
261 assert.Len(t, release.Attachments, 1)
262 assert.EqualValues(t, attach.UUID, release.Attachments[0].UUID)
263 assert.EqualValues(t, release.ID, release.Attachments[0].ReleaseID)
264 assert.EqualValues(t, "test2.txt", release.Attachments[0].Name)
268 release.Attachments = nil
[all …]
/dports/www/otrs/otrs-rel-6_0_29/Kernel/GenericInterface/Operation/Ticket/
H A DTicketGet.pm318 my $Attachments = $Param{Data}->{Attachments} || 0;
455 next ARTICLE if !$Attachments;
465 my @Attachments;
487 push @Attachments, {%Attachment};
491 $Article->{Attachment} = \@Attachments;
/dports/www/otrs/otrs-rel-6_0_29/Kernel/System/PostMaster/Filter/
H A DDetectAttachment.pm50 my @Attachments = $Self->{ParserObject}->GetAttachments();
53 for my $Attachment (@Attachments) {
63 … if ( grep { $_->{Content} =~ m{<img.*src=.*['|"]cid:\Q$ImageID\E['|"].*>}ixms } @Attachments ) {
/dports/www/rt50/rt-5.0.2/lib/RT/REST2/Resource/
H A DTicket.pm96 if ( defined $data->{Content} || defined $data->{Attachments} ) {
103 if ( defined $data->{Attachments} ) {
104 … return (\400, "Attachments must be an array") unless ref($data->{Attachments}) eq 'ARRAY';
105 foreach my $attachment (@{$data->{Attachments}}) {
115 delete $data->{Attachments};
H A DAttachments.pm49 package RT::REST2::Resource::Attachments;
70 return { collection => $txn->Attachments };
92 my $attachments = RT::Attachments->new($req->env->{"rt.current_user"});
/dports/www/otrs/otrs-rel-6_0_29/scripts/test/EmailParser/
H A DMultipartMixed.t28 Attachments => [
70 Attachments => [
139 Attachments => [
185 Attachments => [
245 my @Attachments = $EmailParserObject->GetAttachments();
255 for my $Attachment (@Attachments) {
262 \@Attachments,
263 $Test->{Attachments},
/dports/emulators/dolphin-emu/dolphin-3152428/Source/Core/InputCommon/ControllerEmu/
H A DControllerEmu.cpp62 if (ctrlGroup->type == GroupType::Attachments) in UpdateReferences()
64 auto* const attachments = static_cast<Attachments*>(ctrlGroup.get()); in UpdateReferences()
105 if (ctrlGroup->type == GroupType::Attachments) in SetDefaultDevice()
107 for (auto& ai : static_cast<Attachments*>(ctrlGroup.get())->GetAttachmentList()) in SetDefaultDevice()
/dports/www/rt44/rt-4.4.5/share/html/Elements/
H A DShowTransaction88 $Attachments => undef
140 if ( $ShowBody && !$Attachments ) {
141 $ARGS{'Attachments'} = $Attachments = {};
143 my $attachments = $Transaction->Attachments( WithHeaders => 1 );
144 push @{ $Attachments->{ $_->Parent || 0 } ||= [] }, $_
157 .'&Attachment='. ( $Attachments->{0}[0] && $Attachments->{0}[0]->id ),
164 elsif ( %$Attachments && $ShowActions ) {
/dports/www/otrs/otrs-rel-6_0_29/scripts/test/GenericAgent/
H A DMailForward.pm72 my @Attachments;
80 push @Attachments, \%Attachment;
90 Attachment => \@Attachments,
/dports/multimedia/aegisub/aegisub-3.2.2/src/
H A Ddialog_attachments.cpp114 for (auto& attach : ass->Attachments) { in UpdateList()
169 ass->Attachments[i].GetFileName(), in OnExtract()
178 auto& attach = ass->Attachments[i]; in OnExtract()
187 ass->Attachments.erase(ass->Attachments.begin() + i - removed++); in OnDelete()
/dports/devel/py-apptools/apptools-4.5.0/apptools/logger/agent/tests/
H A Dtest_attachments.py15 from apptools.logger.agent.attachments import Attachments
36 attachments = Attachments(
56 attachments = Attachments(
/dports/misc/chrono/chrono-1.1.0-4-g70cda7f/vendor/github.com/magefile/mage/site/themes/learn/exampleSite/content/shortcodes/
H A Dattachments.en.md2 title: Attachments
3 description : "The Attachments shortcode displays a list of files attached to a page."
6 The Attachments shortcode displays a list of files attached to a page.
40 | title | "Attachments" | List's title |
/dports/www/gohugo/hugo-0.91.2/vendor/github.com/magefile/mage/site/themes/learn/exampleSite/content/shortcodes/
H A Dattachments.en.md2 title: Attachments
3 description : "The Attachments shortcode displays a list of files attached to a page."
6 The Attachments shortcode displays a list of files attached to a page.
40 | title | "Attachments" | List's title |

12345678910>>...290