search for: dbservice

Displaying 10 results from an estimated 10 matches for "dbservice".

2010 Jul 29
1
[PATCH] Reflow logic to make it easier to follow
...lse-positive in the clang static analyzer, it can't know that !y and x are mutually exclusive. The result looks something like this: if (y) { ... } else { ppix = ... if (x) { use ppix for something } else { use ppix for something } } Signed-off-by: Tomas Carnecky <tom at dbservice.com> --- This patch actually compiles. There are still a couple clang warnings, but those are dead assignments and one dead initialization. If there is interest I can send patches for those as well. The clang results can be viewed at http://stuff.caurea.org/clang-static-analyzer/nouveau src/n...
2008 May 30
5
color management spec
As part of my GSoC project I have to work out a spec that covers how applications should communicate color management related properties between each other and the compositing manager. The main idea of the project is to let the compositing manager do the color management on behalf of the applications. But before that can happen, the applications have to tell the compositing manager how they want
2010 Oct 29
14
require service started at another node
Hello, Anybody now how make with puppet dependence on other service on another node? like : require => Service[dbnode:postgresql] I need ensure that the db is running on another node before start my appserver. Thank you. -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To post to this group, send email to
2008 Jun 03
0
Fragment program API documentation
There is none!! And there are not even comments in the source code. Just documenting the addXxxOpToFunctionData() would help immensely. I now understand the API a bit thanks to the use of it in some plugins, but there are still open questions anyway. What is addFetchOpToFunctionData() for? Does it fetch the color value from the window texture? tom
2008 Jun 03
0
[PATCH] PKG_CONFIG_PATH available at ./configure time may differ at runtime.
--- Without this patch, it's necessary to have PKG_CONFIG_PATH defined while compiling plugins (ie. export it for the whole shell). With this patch it's sufficient to set it only for ./configure. bcop.pc.in | 1 - src/bcop.in | 2 +- 2 files changed, 1 insertions(+), 2 deletions(-) -------------- next part -------------- A non-text attachment was scrubbed... Name:
2008 Jun 03
0
[PATCH] plugins-main: bcop.pc is in $PREFIX/share/pkgconfig
Make sure to find bcop.pc if the user selects a custom prefix. --- configure.ac | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) -------------- next part -------------- A non-text attachment was scrubbed... Name: 0f28cd6b3173c4e764ab7a51737403ad636b7aa1.diff Type: text/x-patch Size: 630 bytes Desc: not available Url :
2008 Jun 03
0
[PATCH] plugins-extra: bcop.pc is in $PREFIX/share/pkgconfig
Make sure to find it if the user selects a custom prefix. --- configure.ac | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) -------------- next part -------------- A non-text attachment was scrubbed... Name: 85b41f83774e7e1283ddc516f010a0d325be1ece.diff Type: text/x-patch Size: 630 bytes Desc: not available Url :
2006 Jun 01
0
Ghost Recon 3 -- status?
Did anyone get Ghost Recon 3 running under wine? Transgaming doesn't seem to support it. tom
2007 Oct 12
1
[PATCH] Make runCommand() work with multiple screens.
--- src/screen.c | 7 ++++++- 1 files changed, 6 insertions(+), 1 deletions(-) diff --git a/src/screen.c b/src/screen.c index 41f031e..9fa2a11 100644 --- a/src/screen.c +++ b/src/screen.c @@ -3282,8 +3282,13 @@ runCommand (CompScreen *s, if (fork () == 0) { + size_t len = strlen (s->display->displayString); + char displayString[len + 16]; + strcpy (displayString,
2007 Oct 12
1
[PATCH] Start window decorator on all screens.
--- plugins/decoration.c | 15 ++++----------- 1 files changed, 4 insertions(+), 11 deletions(-) diff --git a/plugins/decoration.c b/plugins/decoration.c index ef68ba8..39670ab 100644 --- a/plugins/decoration.c +++ b/plugins/decoration.c @@ -1145,21 +1145,14 @@ decorSetDisplayOption (CompPlugin *plugin, case DECOR_DISPLAY_OPTION_COMMAND: if (compSetStringOption (o, value)) { -