Displaying 20 results from an estimated 22504 matches for "plugins".
Did you mean:
plugin
2019 Aug 02
0
[nbdkit PATCH v2 10/17] plugins: Add .fork_safe field
Allow a plugin field to declare whether a parallel plugin can tolerate
windows where fds are not CLOEXEC, or must take precautions to avoid
leaking fds if the plugin may fork. For safety reasons, the flag
defaults to off, but many in-tree plugins can set it to on (most
commonly because they don't fork after .config_complete; for libvirt
because it is documented to clean up fds on fork so it is immune to
anything we might leak; for libnbd because we don't use the API that
forks). Note that I did not choose to set the new field for m...
2012 Sep 16
2
flash plugin
...es/tg/flash.pyo
Filename : /usr/lib/python2.6/site-packages/tg/flash.py
Filename : /usr/lib/python2.6/site-packages/tg/flash.pyc
Filename : /usr/lib/kde4/kipiplugin_flashexport.so
Other : kipiplugin_flashexport.so
Filename : /var/www/mambo/mambots/editors/tinymce/jscripts/tiny_mce/plugins/flash/images
Filename : /var/www/mambo/mambots/editors/tinymce/jscripts/tiny_mce/plugins/flash/images/flash.gif
Filename : /var/www/mambo/mambots/editors/tinymce/jscripts/tiny_mce/plugins/flash/editor_plugin.js
Filename : /var/www/mambo/mambots/editors/tinymce/jscripts/tiny_mce/plugins/fla...
2010 Jan 18
0
ggobi and plug-ins issues
...bi plug-ins in my Debian testing. In a R
--vanilla session I get a lot of error messages about being unable to
load the plug-ins (see at the end).
I understand that this issue has been previously addressed [1][2], and
the solution implemented in Debian:
liviu at debian-liv:~$ locate /usr/lib/ggobi/plugins
/usr/lib/ggobi/plugins
/usr/lib/ggobi/plugins/DataViewer
/usr/lib/ggobi/plugins/DescribeDisplay
/usr/lib/ggobi/plugins/GraphAction
/usr/lib/ggobi/plugins/GraphLayout
/usr/lib/ggobi/plugins/VarCloud
/usr/lib/ggobi/plugins/ggvis
/usr/lib/ggobi/plugins/DataViewer/plugin.so
/usr/lib/ggobi/plugins/DataV...
2017 Jan 31
3
[nbdkit PATCH 0/2] fix pod and other errors in recent patches
...;pod2man --stderr' does not do what we
want.
Eric Blake (2):
perl: Fix previous patches
build: Kill build on POD error
.gitignore | 2 ++
configure.ac | 10 +---------
docs/Makefile.am | 8 ++++++--
docs/nbdkit-plugin.pod | 2 +-
plugins/curl/Makefile.am | 4 +++-
plugins/example1/Makefile.am | 4 +++-
plugins/example2/Makefile.am | 4 +++-
plugins/example3/Makefile.am | 4 +++-
plugins/file/Makefile.am | 4 +++-
plugins/guestfs/Makefile.am | 4 +++-
plugins/gzip/Makefile.am | 4 +++-
plugins/libvirt/Make...
2018 Mar 08
0
[nbdkit PATCH v3 15/15] RFC: plugins: Add back-compat for new plugin with old nbdkit
If we bump NBDKIT_API_VERSION, we have forcefully made older
nbdkit reject all plugins that opt to the newer API:
$ nbdkit ./plugins/nbd/.libs/nbdkit-nbd-plugin.so --dump-plugin
nbdkit: ./plugins/nbd/.libs/nbdkit-nbd-plugin.so: plugin is incompatible with this version of nbdkit (_api_version = 2)
But with a bit of finesse, we can make opting in to FUA support
orthogonal to NBDKIT_A...
2017 Feb 06
3
[PATCH nbdkit 0/2] Change .errno_is_reliable function to .errno_is_preserved constant.
See patch 1 for rationale.
2011 Aug 23
1
Implementing a "plugin" paradigm with R methods
...Of course they could go ahead and write a whole new 'foo'
method including the features they'd like to see, but that's not really
necessary. Rather, they should be able to just write a new "plugin"
method for that part of 'foo' that I'd like to open for such plugins.
The way I chose below works, but generates warnings as my method has
signature arguments that don't correspond to formal classes (which is
totally fine). Of course I could go ahead and make sure that such
"dummy" classes exist, but I was wondering if there's a better way.
It...
2020 Aug 18
0
[PATCH nbdkit 2/9] build: On Windows only, link all plugins and filters with -lnbdkit.
...| 1 +
filters/retry/Makefile.am | 1 +
filters/stats/Makefile.am | 1 +
filters/swab/Makefile.am | 1 +
filters/tar/Makefile.am | 1 +
filters/tls-fallback/Makefile.am | 3 +++
filters/truncate/Makefile.am | 1 +
filters/xz/Makefile.am | 1 +
plugins/cc/Makefile.am | 1 +
plugins/cdi/Makefile.am | 1 +
plugins/curl/Makefile.am | 3 ++-
plugins/data/Makefile.am | 1 +
plugins/eval/Makefile.am | 1 +
plugins/example1/Makefile.am | 3 +++
plugins/example2/Makefile.am | 3 +++
plugins/exampl...
2019 Aug 15
2
[nbdkit PATCH] ocaml: Add support for dynamic .thread_model
We do not promise API stability for non-C languages; this is an API
break as follows: instead of calling 'NBDKit.register_plugin model
plugin' with a static model, you can now add .thread_model :(unit ->
thread_model) to plugin or default to PARALLEL.
Since all existing OCaml plugins will have already thought about
thread models, they can convert their existing model into the new
plugin field (and thus, I don't feel too bad making PARALLEL the
default, even if it is not always the safest).
Signed-off-by: Eric Blake <eblake@redhat.com>
---
I'm still looking at tw...
2004 Oct 14
2
compile errors
Hello there. I'm having trouble to compile flac on gentoo linux:
linux-2.6.8
gcc-3.3.4
glibc-2.3.4 nptl enabled
I would be happy if someone could help me with this error:
if ../../libtool-disable-static --mode=compile gcc -DHAVE_CONFIG_H -I.
-I. -I../.. -I../../src -I../.. -I./include -I../../include -O2
-DNDEBUG -funroll-loops -finline-functions -Wall -W -Winline
2019 Aug 16
7
[nbdkit PATCH 0/2] rust: Implement some missing v2 callbacks
...Rust plugin), and done because I want to
add fast_zero support to both languages as part of my upcoming fast
zero series.
Figuring out how to get extents working was hard enough that I punted
that, still.
Eric Blake (2):
rust: Implement can_cache
rust: Add support for dynamic .thread_model
plugins/rust/nbdkit-rust-plugin.pod | 29 ++++++++++++++++++++++++-----
plugins/rust/examples/ramdisk.rs | 8 ++++++--
plugins/rust/src/lib.rs | 23 ++++++++++++++++++++---
3 files changed, 50 insertions(+), 10 deletions(-)
--
2.20.1
2011 Apr 07
0
[LLVMdev] dragonegg-2.9 build fail
The dragonegg-2.9.tgz tarball is failing to build against either
patched gcc 4.5.2 or gcc 4.5.3svn on x86_64-apple-darwin10. The build
fails as...
GCC=/sw/lib/gcc4.5/bin/gcc-4 LLVM_CONFIG=/sw/bin/llvm-config make CPPFLAGS="-DENABLE_LTO -I/sw/include"
Compiling utils/TargetInfo.cpp
<command-line>: warning: "__STDC_LIMIT_MACROS" redefined
<command-line>: warning:
2006 Mar 25
2
Rails Plugins: How to copy artefacts to the public directory during install? When is install.rb executed anyway?
Hi,
I want to write a plugin that uses JavaScript and I am wondering how to put
the static content, i.e. the JavaScript, in place?
I read the documentation I found (
http://wiki.rubyonrails.org/rails/pages/Plugins and links) and looked at the
listed plugins.
One thing I found was that subversion seems to be a prerequisite for
providing or even installing plugins. Is that right?
The other thing was that there were two plugins that provided content. a)
Was providing a directory on the same level as the plugi...
2018 Jan 17
0
[PATCH 2/9] Refactor plugin_* functions into a backend struct.
...he backend method
‘backend->pwrite (backend, ...)’.
The change is largely mechanical. I was able to remove ‘assert (dl)’
statements throughout since we can now prove they will never be
called.
Note this does not lift the restriction of one plugin per server, and
it can *never* do that because plugins can use global variables.
---
src/connections.c | 40 +++--
src/internal.h | 55 +++---
src/locks.c | 8 +-
src/main.c | 31 ++--
src/plugins.c | 529 ++++++++++++++++++++++++++++++------------------------
5 files changed, 368 insertions(+), 295 deletions(-)
diff --git a/...
2018 Jan 16
0
[PATCH nbdkit v2 2/3] Refactor plugin_* functions into a backend struct.
...he backend method
‘backend->pwrite (backend, ...)’.
The change is largely mechanical. I was able to remove ‘assert (dl)’
statements throughout since we can now prove they will never be
called.
Note this does not lift the restriction of one plugin per server, and
it can *never* do that because plugins can use global variables.
---
src/connections.c | 40 +++--
src/internal.h | 55 +++---
src/locks.c | 8 +-
src/main.c | 31 ++--
src/plugins.c | 527 ++++++++++++++++++++++++++++++------------------------
5 files changed, 367 insertions(+), 294 deletions(-)
diff --git a/...
2019 Sep 28
0
[PATCH nbdkit v2 2/4] Rename nbdkit-reflection-plugin to nbdkit-info-plugin.
See commit 2a29634aa0589037b5625032097a3a2f7b1d5c7d and
https://www.redhat.com/archives/libguestfs/2019-September/msg00366.html
---
configure.ac | 4 +-
plugins/data/nbdkit-data-plugin.pod | 2 +-
plugins/{reflection => info}/Makefile.am | 20 ++++-----
.../{reflection/reflection.c => info/info.c} | 42 +++++++++----------
.../nbdkit-info-plugin.pod} | 38 ++++++++---------
plugins/memory/nbdkit-memory-plugin.pod...
2018 Jan 16
0
[PATCH nbdkit 2/3] Refactor plugin_* functions into a backend struct.
...he backend method
‘backend->pwrite (backend, ...)’.
The change is largely mechanical. I was able to remove ‘assert (dl)’
statements throughout since we can now prove they will never be
called.
Note this does not lift the restriction of one plugin per server, and
it can *never* do that because plugins can use global variables.
---
src/connections.c | 40 +++--
src/internal.h | 49 ++---
src/locks.c | 8 +-
src/main.c | 31 ++--
src/plugins.c | 523 ++++++++++++++++++++++++++++++------------------------
5 files changed, 360 insertions(+), 291 deletions(-)
diff --git a/s...
2010 Oct 13
1
Missing ACLOCAL_AMFLAGS ?
dovecot-2.0.5
autoreconf is failing with: [1]
$ autoreconf -f -i
[...]
src/plugins/acl/Makefile.am:11: `module_LTLIBRARIES' is used but
`moduledir' is undefined
[...]
autoreconf-2.65: automake failed with exit status: 1
Also,
$ ./configure --help | grep module
--with-nss Build with NSS module support (auto)
In other words, no moduledir output in configure...
2007 Apr 25
9
Running specs for a plugin - undefined method ''define'' for object
...running into a problem which I can''t get past it. I''ve got the same
specs setup in the main rails app, and everything works fine there, it''s
just running the plugin specs that I''m having a problem with. My setup is:
- edge rails
- edge rspec (in vendor/plugins/rspec)
- edge rspec_on_rails (in vendor/plugins/rspec_on_rails)
- I ran script/generate rspec
- plugin created with rspec_plugin (using script/generate rspec_plugin
audit_fu)
File contents of: vendor/plugins/audit_fu/spec/audit_fu_spec.rb
require File.dirname(__FILE__) + ''/s...
2017 Feb 06
0
[PATCH 1/2] Define .errno_is_preserved constant instead of a .errno_is_reliable callback.
...whole.
I changed the name to "errno_is_preserved", because it's not about the
reliability of errno, but about whether errno is preserved across
calls.
---
docs/nbdkit-plugin.pod | 37 +++++++++------------------------
include/nbdkit-plugin.h | 2 +-
plugins/ocaml/nbdkit-ocaml-plugin.pod | 11 ----------
plugins/ocaml/ocaml.c | 11 ----------
plugins/perl/nbdkit-perl-plugin.pod | 6 ------
plugins/perl/perl.c | 12 -----------
plugins/python/nbdkit-python-plugin.pod | 6 ------
plugins/python/python.c...