Home
last modified time | relevance | path

Searched refs:docID (Results 1 – 25 of 363) sorted by relevance

12345678910>>...15

/dports/databases/cayley/cayley-0.7.5-2-gcf576ba/vendor/github.com/flimzy/kivik/
H A Ddb_test.go166 docID string
200 docID: "foo",
515 docID string
840 docID string
1116 if docID != test.docID || test.rev != test.rev {
1219 if db.docID != docID || db.rev != rev {
1251 if db.docID != docID || db.rev != rev {
1476 if docID != db.docID {
1501 if docID != db.docID {
1637 if docID != db.docID {
[all …]
H A Ddb.go169 if docID == "" {
181 return dbopt.PutOpts(ctx, docID, i, opts)
183 return db.driverDB.Put(ctx, docID, i)
188 if docID == "" {
198 return db.driverDB.Delete(ctx, docID, rev)
328 return r.Rev(ctx, docID)
330 row, err := db.Get(ctx, docID, nil)
384 if docID == "" {
402 if docID == "" {
435 if docID == "" {
[all …]
H A Dmock_test.go52 return db.GetFunc(ctx, docID, opts)
60 return db.PutFunc(ctx, docID, doc)
64 return db.DeleteFunc(ctx, docID, rev)
76 return db.CompactViewFunc(ctx, docID)
96 return db.PutAttachmentFunc(ctx, docID, rev, filename, cType, body)
100 return db.GetAttachmentFunc(ctx, docID, rev, filename)
104 return db.DeleteAttachmentFunc(ctx, docID, rev, filename)
128 return db.PutOptsFunc(ctx, docID, doc, options)
136 return db.DeleteOptsFunc(ctx, docID, rev, options)
144 return db.GetAttachmentOptsFunc(ctx, docID, rev, filename, options)
[all …]
/dports/databases/cayley/cayley-0.7.5-2-gcf576ba/vendor/github.com/go-kivik/kivik/mock/
H A Ddb.go40 return db.GetFunc(ctx, docID, opts)
50 return db.PutFunc(ctx, docID, doc, opts)
54 func (db *DB) Delete(ctx context.Context, docID, rev string, opts map[string]interface{}) (string, …
55 return db.DeleteFunc(ctx, docID, rev, opts)
69 func (db *DB) CompactView(ctx context.Context, docID string) error {
70 return db.CompactViewFunc(ctx, docID)
95 return db.PutAttachmentFunc(ctx, docID, rev, att, opts)
100 return db.GetAttachmentFunc(ctx, docID, rev, filename, opts)
105 return db.DeleteAttachmentFunc(ctx, docID, rev, filename, opts)
173 return db.GetMetaFunc(ctx, docID, opts)
[all …]
/dports/databases/cayley/cayley-0.7.5-2-gcf576ba/vendor/github.com/go-kivik/kivik/
H A Ddb_test.go167 docID string
204 docID: "foo",
234 docID: "foo",
521 docID string
593 docID: "foo",
616 docID: "foo",
639 docID: "foo",
909 docID string
1156 if docID != test.docID || test.rev != test.rev {
1243 docID: "foo",
[all …]
H A Ddb.go110 doc, err := db.driverDB.Get(ctx, docID, opts)
133 return r.GetMeta(ctx, docID, opts)
135 row := db.Get(ctx, docID, nil)
233 if docID == "" {
244 return db.driverDB.Put(ctx, docID, i, opts)
249 if docID == "" {
256 return db.driverDB.Delete(ctx, docID, rev, opts)
383 if docID == "" {
399 if docID == "" {
429 if docID == "" {
[all …]
/dports/textproc/htdig/htdig-3.2.0b6/htcommon/
H A DDocumentDB.cc221 int docID = doc.DocID(); in Add() local
227 String key((char *) &docID, sizeof docID); in Add()
262 String key((char *) &docID, sizeof docID); in ReadExcerpt()
280 String key((char *) &docID, sizeof docID); in operator []()
324 String key((char *) &docID, sizeof docID); in Exists()
333 String key((char*) &docID, sizeof docID); in Delete()
388 int docID; in DumpDB() local
389 memcpy(&docID, strkey, sizeof docID); in DumpDB()
392 docKey.append((char *) &docID, sizeof docID); in DumpDB()
612 int docID; in DocIDs() local
[all …]
/dports/databases/cayley/cayley-0.7.5-2-gcf576ba/vendor/github.com/go-kivik/kiviktest/db/
H A Dputattachment.go45 var docID, rev string
56 _, err = db.PutAttachment(context.Background(), docID, rev, att)
63 docID := ctx.TestDBName()
66 _, err := db.PutAttachment(context.Background(), docID, "", att)
73 var docID string
91 docID := "_design/" + ctx.TestDBName()
93 "_id": docID,
98 rev, err = adb.Put(context.Background(), docID, doc)
106 _, err = db.PutAttachment(context.Background(), docID, rev, att)
113 docID := "_design/" + ctx.TestDBName()
[all …]
/dports/databases/cayley/cayley-0.7.5-2-gcf576ba/vendor/github.com/flimzy/kivik/driver/
H A Ddriver.go137 Get(ctx context.Context, docID string, options map[string]interface{}) (json.RawMessage, error)
139 CreateDoc(ctx context.Context, doc interface{}) (docID, rev string, err error)
141 Put(ctx context.Context, docID string, doc interface{}) (rev string, err error)
143 Delete(ctx context.Context, docID, rev string) (newRev string, err error) argument
161 …PutAttachment(ctx context.Context, docID, rev, filename, contentType string, body io.Reader) (newR… argument
167 DeleteAttachment(ctx context.Context, docID, rev, filename string) (newRev string, err error) argument
177 …CreateDocOpts(ctx context.Context, doc interface{}, options map[string]interface{}) (docID, rev st…
179 …PutOpts(ctx context.Context, docID string, doc interface{}, options map[string]interface{}) (rev s…
181 …DeleteOpts(ctx context.Context, docID, rev string, options map[string]interface{}) (newRev string,… argument
265 …GetAttachmentMeta(ctx context.Context, docID, rev, filename string) (contentType string, md5sum MD… argument
[all …]
/dports/databases/cayley/cayley-0.7.5-2-gcf576ba/vendor/github.com/go-kivik/couchdb/
H A Dattachments.go13 func (d *db) PutAttachment(ctx context.Context, docID, rev string, att *driver.Attachment, options … argument
14 if docID == "" {
50 …_, err = d.Client.DoJSON(ctx, kivik.MethodPut, d.path(chttp.EncodeDocID(docID)+"/"+att.Filename, q…
57 func (d *db) GetAttachmentMeta(ctx context.Context, docID, rev, filename string, options map[string… argument
58 resp, err := d.fetchAttachment(ctx, kivik.MethodHead, docID, rev, filename, options)
66 func (d *db) GetAttachment(ctx context.Context, docID, rev, filename string, options map[string]int… argument
67 resp, err := d.fetchAttachment(ctx, kivik.MethodGet, docID, rev, filename, options)
78 if docID == "" {
100 …resp, err := d.Client.DoReq(ctx, method, d.path(chttp.EncodeDocID(docID)+"/"+filename, query), opt…
142 if docID == "" {
[all …]
/dports/audio/pms-devel/pms-c94e3c6/vendor/github.com/blevesearch/bleve/cmd/bleve/cmd/
H A Dindex.go45 docID := file.filename
47 _, docID = filepath.Split(docID)
50 ext := filepath.Ext(docID)
51 docID = docID[0 : len(docID)-len(ext)]
61 fmt.Printf("Indexing: %s\n", docID)
62 err = idx.Index(docID, doc)
/dports/devel/hadoop/hadoop-1.2.1/src/contrib/index/src/java/org/apache/hadoop/contrib/index/mapred/
H A DDocumentID.java32 private final Text docID; field in DocumentID
38 docID = new Text(); in DocumentID()
46 return docID; in getText()
56 return docID.compareTo(((DocumentID) obj).docID); in compareTo()
64 return docID.hashCode(); in hashCode()
71 return this.getClass().getName() + "[" + docID + "]"; in toString()
/dports/textproc/luceneplusplus/LucenePlusPlus-rel_3.0.8/src/core/index/
H A DFreqProxTermsWriterPerField.cpp95 newPostingList->lastDocID = docState->docID; in newTerm()
97 newPostingList->lastDocCode = docState->docID; in newTerm()
99 newPostingList->lastDocCode = docState->docID << 1; in newTerm()
114 if (docState->docID != addPostingList->lastDocID) { in addTerm()
115 BOOST_ASSERT(docState->docID > addPostingList->lastDocID); in addTerm()
117 addPostingList->lastDocCode = docState->docID - addPostingList->lastDocID; in addTerm()
118 addPostingList->lastDocID = docState->docID; in addTerm()
121 if (docState->docID != addPostingList->lastDocID) { in addTerm()
122 BOOST_ASSERT(docState->docID > addPostingList->lastDocID); in addTerm()
134 addPostingList->lastDocCode = (docState->docID - addPostingList->lastDocID) << 1; in addTerm()
[all …]
H A DDocFieldConsumersPerThread.cpp56 both->docID = docState->docID; in finishDocument()
57 BOOST_ASSERT(oneDoc->docID == docState->docID); in finishDocument()
58 BOOST_ASSERT(twoDoc->docID == docState->docID); in finishDocument()
/dports/lang/mono/mono-5.10.1.57/external/api-doc-tools/external/Lucene.Net.Light/src/core/Index/
H A DFreqProxTermsWriterPerField.cs130 p.lastDocID = docState.docID; in NewTerm()
133 p.lastDocCode = docState.docID; in NewTerm()
137 p.lastDocCode = docState.docID << 1; in NewTerm()
154 if (docState.docID != p.lastDocID) in AddTerm()
156 System.Diagnostics.Debug.Assert(docState.docID > p.lastDocID); in AddTerm()
158 p.lastDocCode = docState.docID - p.lastDocID; in AddTerm()
159 p.lastDocID = docState.docID; in AddTerm()
164 if (docState.docID != p.lastDocID) in AddTerm()
166 System.Diagnostics.Debug.Assert(docState.docID > p.lastDocID); in AddTerm()
180 p.lastDocCode = (docState.docID - p.lastDocID) << 1; in AddTerm()
[all …]
H A DDocFieldConsumersPerThread.cs68 both.docID = docState.docID; in FinishDocument()
69 System.Diagnostics.Debug.Assert(oneDoc.docID == docState.docID); in FinishDocument()
70 System.Diagnostics.Debug.Assert(twoDoc.docID == docState.docID); in FinishDocument()
/dports/textproc/luceneplusplus/LucenePlusPlus-rel_3.0.8/src/core/search/
H A DDisjunctionMaxScorer.cpp32 while (subScorers[0]->docID() == doc) { in nextDoc()
44 doc = subScorers[0]->docID(); in nextDoc()
48 int32_t DisjunctionMaxScorer::docID() { in docID() function in Lucene::DisjunctionMaxScorer
53 int32_t doc = subScorers[0]->docID(); in score()
63 if (root < size && subScorers[root]->docID() == doc) { in scoreAll()
77 while (subScorers[0]->docID() < target) { in advance()
88 doc = subScorers[0]->docID(); in advance()
100 int32_t doc = scorer->docID(); in heapAdjust()
105 int32_t ldoc = lscorer->docID(); in heapAdjust()
111 rdoc = rscorer->docID(); in heapAdjust()
H A DConjunctionScorer.cpp15 return (first->docID() < second->docID()); in operator ()()
69 int32_t doc = scorers[scorers.size() - 1]->docID(); in doNext()
71 while ((firstScorer = scorers[first])->docID() < doc) { in doNext()
81 } else if (scorers[(scorers.size() - 1)]->docID() < target) { in advance()
88 int32_t ConjunctionScorer::docID() { in docID() function in Lucene::ConjunctionScorer
96 lastDoc = scorers[scorers.size() - 1]->docID(); in nextDoc()
/dports/audio/pms-devel/pms-c94e3c6/vendor/github.com/blevesearch/bleve/http/
H A Ddoc_get.go53 var docID string
55 docID = h.DocIDLookup(req)
57 if docID == "" {
62 doc, err := index.Document(docID)
64 showError(w, req, fmt.Sprintf("error deleting document '%s': %v", docID, err), 500)
68 showError(w, req, fmt.Sprintf("no such document '%s'", docID), 404)
76 ID: docID,
/dports/lang/spidermonkey60/firefox-60.9.0/mobile/android/base/java/org/mozilla/gecko/telemetry/
H A DTelemetryLocalPing.java18 private final String docID; field in TelemetryLocalPing
20 public TelemetryLocalPing(final ExtendedJSONObject payload, final String docID) { in TelemetryLocalPing() argument
22 this.docID = docID; in TelemetryLocalPing()
26 public String getDocID() { return docID; } in getDocID()
H A DTelemetryOutgoingPing.java22 private final String docID; field in TelemetryOutgoingPing
25 …TelemetryOutgoingPing(final String urlPath, final ExtendedJSONObject payload, final String docID) { in TelemetryOutgoingPing() argument
27 this.docID = docID; in TelemetryOutgoingPing()
40 return docID; in getDocID()
/dports/www/firefox-legacy/firefox-52.8.0esr/mobile/android/base/java/org/mozilla/gecko/telemetry/
H A DTelemetryPing.java23 private final String docID; field in TelemetryPing
25 … public TelemetryPing(final String urlPath, final ExtendedJSONObject payload, final String docID) { in TelemetryPing() argument
28 this.docID = docID; in TelemetryPing()
33 public String getDocID() { return docID; } in getDocID()
/dports/www/firefox-legacy/firefox-52.8.0esr/mobile/android/base/java/org/mozilla/gecko/telemetry/pingbuilders/
H A DTelemetryPingBuilder.java30 private final String docID; field in TelemetryPingBuilder
33 docID = UUID.randomUUID().toString(); in TelemetryPingBuilder()
34 serverPath = getTelemetryServerPath(getDocType(), docID); in TelemetryPingBuilder()
51 return new TelemetryPing(serverPath, payload, docID); in build()
71 private static String getTelemetryServerPath(final String docType, final String docID) { in getTelemetryServerPath() argument
80 docID + '/' + in getTelemetryServerPath()
/dports/databases/cayley/cayley-0.7.5-2-gcf576ba/vendor/github.com/go-kivik/pouchdb/
H A Dattachments.go17 func (d *db) PutAttachment(ctx context.Context, docID, rev string, att *driver.Attachment, _ map[st… argument
18 result, err := d.db.PutAttachment(ctx, docID, att.Filename, rev, att.Content, att.ContentType)
25 func (d *db) GetAttachment(ctx context.Context, docID, rev, filename string, _ map[string]interface… argument
26 result, err := d.fetchAttachment(ctx, docID, rev, filename)
33 func (d *db) fetchAttachment(ctx context.Context, docID, rev, filename string) (*js.Object, error) { argument
38 return d.db.GetAttachment(ctx, docID, filename, opts)
98 func (d *db) DeleteAttachment(ctx context.Context, docID, rev, filename string, _ map[string]interf… argument
99 result, err := d.db.RemoveAttachment(ctx, docID, filename, rev)
/dports/lang/spidermonkey60/firefox-60.9.0/mobile/android/base/java/org/mozilla/gecko/telemetry/pingbuilders/
H A DTelemetryPingBuilder.java36 protected final String docID; field in TelemetryPingBuilder
43 docID = UUID.randomUUID().toString(); in TelemetryPingBuilder()
44 serverPath = getTelemetryServerPath(getDocType(), docID, version); in TelemetryPingBuilder()
61 return new TelemetryOutgoingPing(serverPath, payload, docID); in build()
83 …private static String getTelemetryServerPath(final String docType, final String docID, int version… in getTelemetryServerPath() argument
92 docID + '/' + in getTelemetryServerPath()

12345678910>>...15