Displaying 3 results from an estimated 3 matches for "skip_list".
Did you mean:
  skip_line
  
2011 Oct 18
2
patch proposal: omindex library or daemon
...ime_map, store default options
session = new Omindex::Session(db_pathname)
    user threads use different sessions
session.index_files(list, options) // list & return value are vector of {
char * url, * file_path, * file_ext }
    perform a transaction for all files in list; create & return skip_list
session.index_directory(url, dir_name, options)
    perform a transaction for all files in a directory tree; return
skip_list
main() moves to omindex_main.cc
    process command line, call Omindex::init(), proceed normally
SWIG & Node.js bindings
Omindex daemon mode:
The initial directory p...
2020 Aug 06
0
[nbdkit PATCH v2 5/5] sh, eval: Add .list_exports support
...e that it doesn't regress.
+
+source ./functions.sh
+set -e
+set -x
+
+requires nbdsh -c 'print (h.get_list_export_description)'
+requires nbdinfo --help
+requires jq --version
+
+files="eval-exports.list eval-exports.out"
+rm -f $files
+cleanup_fn rm -f $files
+
+# do_nbdkit [skip_list] EXPOUT
+do_nbdkit ()
+{
+    # Hack: since we never pass args that would go through .config, we can
+    # define a dummy .config to avoid defining .list_export
+    hack=
+    if test $1 = skip_list; then
+        hack=config=
+        shift
+    else
+        cat eval-exports.list
+    fi
+    n...
2020 Aug 06
6
[nbdkit PATCH v2 0/5] .list_exports
Since v1:
- patch 1: check size limits
- patch 2: better handling of default export name canonicalization
- patch 3: support filters as well as plugins
- patch 4: new
- patch 5: rewrite sh parser, fix testsuite to actually work and
cover more cases (now that libnbd.git is fixed)
Eric Blake (4):
  server: Add exports list functions
  server: Prepare to use export list from plugin
  log: Add