Home
last modified time | relevance | path

Searched refs:contentRef (Results 1 – 25 of 59) sorted by relevance

123

/dports/misc/perkeep/perkeep-0.11/pkg/server/
H A Dshare_test.go156 contentRef := blob.RefFromString(content)
162 ]}`, contentRef, len(content))
181 st.testGet(fmt.Sprintf("%s?via=%s", contentRef, shareRef()), shareTargetInvalid)
198 st.putRaw(contentRef, content)
217 contentRef := blob.RefFromString(content)
220 evilClaim := fmt.Sprintf("Some payload containing the ref: %v", contentRef)
231 st.putRaw(contentRef, content)
389 contentRef := blob.RefFromString(content)
395 ]}`, contentRef, len(content))
397 st.putRaw(contentRef, content)
[all …]
/dports/misc/perkeep/perkeep-0.11/app/publisher/js/
H A Dfile.go122 contentRef blob.Ref member
219 contentRef := blob.MustParse(camliContent)
220 cdes := meta[contentRef.String()]
234 contentRef: contentRef,
410 contentRef := blob.MustParse(camliContent)
411 cdes := meta[contentRef.String()]
425 contentRef: contentRef,
546 …fit.thumb = fmt.Sprintf("%s/h%s/=i/%s/?mw=%d&mh=%d", fic.basePath, fit.contentRef.DigestPrefix(10)…
554 …fit.download = fmt.Sprintf("%s/h%s/=f/%s", fic.basePath, fit.contentRef.DigestPrefix(10), url.Quer…
557 …Sprintf("%s/h%s/h%s/=f/%s", fic.basePath, fit.pn.DigestPrefix(10), fit.contentRef.DigestPrefix(10)…
[all …]
H A Dmembers.go232 contentRef := blob.MustParse(camliContent)
233 item.contentRef = contentRef
234 cdes, ok := meta[contentRef.String()]
366 contentRef blob.Ref member
397 …("%s/h%s/h%s/=i/%s/?mw=%d&mh=%d", basePath, bi.pn.DigestPrefix(10), bi.contentRef.DigestPrefix(10)…
/dports/net-mgmt/pnp/pnp4nagios-0.6.26/share/pnp/application/vendor/fpdf/
H A Dfpdi_pdf_parser.php168 * @param array $contentRef
171 protected function _getPageContent($contentRef) argument
175 if ($contentRef[0] == pdf_parser::TYPE_OBJREF) {
176 $content = $this->resolveObject($contentRef);
182 } else if ($contentRef[0] == pdf_parser::TYPE_ARRAY) {
183 foreach ($contentRef[1] AS $tmp_content_ref) {
/dports/www/fusionpbx/fusionpbx-4.4.1/resources/fpdi/
H A Dfpdi_pdf_parser.php175 * @param array $contentRef
178 protected function _getPageContent($contentRef) argument
182 if ($contentRef[0] == pdf_parser::TYPE_OBJREF) {
183 $content = $this->resolveObject($contentRef);
189 } else if ($contentRef[0] == pdf_parser::TYPE_ARRAY) {
190 foreach ($contentRef[1] AS $tmp_content_ref) {
/dports/net-mgmt/pnp-icinga2/pnp4nagios-0.6.26/share/pnp/application/vendor/fpdf/
H A Dfpdi_pdf_parser.php168 * @param array $contentRef
171 protected function _getPageContent($contentRef) argument
175 if ($contentRef[0] == pdf_parser::TYPE_OBJREF) {
176 $content = $this->resolveObject($contentRef);
182 } else if ($contentRef[0] == pdf_parser::TYPE_ARRAY) {
183 foreach ($contentRef[1] AS $tmp_content_ref) {
/dports/www/osticket/upload/include/mpdf/vendor/setasign/fpdi/
H A Dfpdi_pdf_parser.php172 * @param array $contentRef
175 protected function _getPageContent($contentRef) argument
179 if ($contentRef[0] == pdf_parser::TYPE_OBJREF) {
180 $content = $this->resolveObject($contentRef);
186 } else if ($contentRef[0] == pdf_parser::TYPE_ARRAY) {
187 foreach ($contentRef[1] AS $tmp_content_ref) {
/dports/misc/perkeep/perkeep-0.11/cmd/pk/
H A Dmakestatic.go107 contentRef := res.Meta[fileRefStr].Permanode.Attr.Get("camliContent")
108 if contentRef == "" {
111 if camliType(contentRef) == "file" {
112 memberRefs = append(memberRefs, blob.MustParse(contentRef))
/dports/devel/kf5-kconfig/kconfig-5.89.0/autotests/kconfig_compiler/
H A Dkconfigcompiler_test.cpp148 const QByteArray contentRef = fileRef.readAll(); in testBaselineComparison() local
150 if (content != contentRef) { in testBaselineComparison()
154 QVERIFY(content == contentRef); in testBaselineComparison()
/dports/misc/perkeep/perkeep-0.11/app/scanningcabinet/
H A Ddatastore.go115 func (h *handler) searchScanByContent(contentRef blob.Ref) (*search.SearchResult, error) {
128 Value: contentRef.String(),
170 contentRef: content,
204 func (h *handler) fetchScanByContent(contentRef blob.Ref) (mediaObject, error) {
205 return h.fetchScanFunc(contentRef, h.searchScanByContent)
317 if err := h.setAttribute(ctx, pn, nodeattr.CamliContent, mo.contentRef.String()); err != nil {
339 if new.contentRef.Valid() && old.contentRef != new.contentRef {
340 if err := h.setAttribute(ctx, pn, "camliContent", new.contentRef.String()); err != nil {
H A Dmodels.go40 contentRef blob.Ref member
H A Dhandler.go387 contentRef: br,
458 ih.ServeHTTP(w, r, mediaObject.contentRef)
/dports/misc/perkeep/perkeep-0.11/pkg/search/
H A Ddescribe.go343 if contentRef := b.Permanode.Attr.Get("camliContent"); contentRef != "" {
344 if cdes := b.Request.DescribedBlobStr(contentRef); cdes != nil && cdes.File != nil {
359 if contentRef := b.Permanode.Attr.Get("camliContent"); contentRef != "" {
360 if cdes := b.Request.DescribedBlobStr(contentRef); cdes != nil && cdes.Dir != nil {
382 if contentRef := b.Permanode.Attr.Get("camliContent"); contentRef != "" {
383 return b.Request.DescribedBlobStr(contentRef).Title()
/dports/misc/perkeep/perkeep-0.11/pkg/fs/
H A Dro.go144 } else if contentRef := child.Permanode.Attr.Get("camliContent"); contentRef != "" {
146 content := res.Meta[contentRef]
160 content: blob.ParseOrZero(contentRef),
H A Drover.go143 } else if contentRef := child.Permanode.Attr.Get("camliContent"); contentRef != "" {
145 content := res.Meta[contentRef]
H A Dmut.go191 } else if contentRef := child.Permanode.Attr.Get("camliContent"); contentRef != "" {
193 content := res.Meta[contentRef]
211 content: blob.ParseOrZero(contentRef),
/dports/misc/perkeep/perkeep-0.11/app/publisher/
H A Dzip.go302 contentRef := described.Permanode.Attr.Get("camliContent")
303 if contentRef == "" {
306 if cdes := peers[contentRef]; cdes != nil && cdes.Dir != nil {
H A Dmain.go851 contentRef := described.Permanode.Attr.Get("camliContent")
852 if contentRef == "" {
855 if cdes := peers[contentRef]; cdes != nil && cdes.File != nil {
1021 if contentRef := described.Permanode.Attr.Get("camliContent"); contentRef != "" {
1022 if cdes := peers[contentRef]; cdes != nil {
1039 contentRef, ok := subdes.ContentRef()
1043 fileDes, err := pr.ph.describe(contentRef)
1052 path := []blob.Ref{pr.subject, contentRef}
1066 DomID: contentRef.DomID(),
/dports/textproc/opensearch-dashboards/opensearch-dashboards-1.2.0-linux-x64/plugins/observabilityDashboards/node_modules/@blueprintjs/core/lib/cjs/components/tree/
H A DtreeNode.d.ts56 contentRef?: (node: TreeNode<T>, element: HTMLDivElement | null) => void; property
/dports/textproc/opensearch-dashboards/opensearch-dashboards-1.2.0-linux-x64/plugins/observabilityDashboards/node_modules/@blueprintjs/core/lib/esnext/components/tree/
H A DtreeNode.d.ts56 contentRef?: (node: TreeNode<T>, element: HTMLDivElement | null) => void; property
/dports/textproc/opensearch-dashboards/opensearch-dashboards-1.2.0-linux-x64/plugins/observabilityDashboards/node_modules/@blueprintjs/core/lib/esm/components/tree/
H A DtreeNode.d.ts56 contentRef?: (node: TreeNode<T>, element: HTMLDivElement | null) => void; property
/dports/textproc/opensearch-dashboards/opensearch-dashboards-1.2.0-linux-x64/plugins/observabilityDashboards/node_modules/@blueprintjs/core/src/components/tree/
H A DtreeNode.tsx91 contentRef?: (node: TreeNode<T>, element: HTMLDivElement | null) => void;
192 this.props.contentRef?.(this, element);
H A Dtree.tsx127 contentRef={this.handleContentRef}
/dports/devel/codeblocks/codeblocks-20.03/src/plugins/contrib/source_exporter/wxPdfDocument/include/wx/
H A Dpdfparser.h220 void GetPageContent(wxPdfObject* contentRef, wxArrayPtrVoid& contents);
/dports/devel/codeblocks/codeblocks-20.03/src/plugins/contrib/source_exporter/wxPdfDocument/src/
H A Dpdfparser.cpp517 wxPdfParser::GetPageContent(wxPdfObject* contentRef, wxArrayPtrVoid& contents) in GetPageContent() argument
519 int type = contentRef->GetType(); in GetPageContent()
522 wxPdfObject* content = ResolveObject(contentRef); in GetPageContent()
535 wxPdfArray* contentArray = (wxPdfArray*) contentRef; in GetPageContent()

123