Displaying 20 results from an estimated 766 matches for "consequentially".
Did you mean:
consequential
2011 Jul 19
4
Samba Share Access denied on Solaris
Hi
I have reinstalled the Solaris 10 server with update 9 and now runs
samba 3.5.5. I can log into the share but cannot open it. It says
permissions denied . I modified the permissions on OS but still face the
same error. Any kind of help will be appreciated.
Kind Regards
Dee
DISCLAIMER:
This message and any attachments are confidential and intended solely for the addressee. If
2003 Jun 26
3
Request for option for use on an unreliable connection
I have been using rsync for the last year or so. Generally I am very
pleased with the performance and features, but I am forced to use a
rather unreliable link to one of my mirrors. Consequentially rsync often
bails out with a protocol error in the middle of a large session due to
transient misbehaviour on the link. This appears to abort the whole
transfer. One solution would appear to be an option to log the error
then attempt the next file in the set. Is there a patch to allow this?
Ha...
2020 Aug 20
0
[PATCH nbdkit 01/13] common/replacements: Replace missing functions using LIBOBJS.
Especially on Windows, some common functions are missing. Use the
autoconf LIBOBJS mechanism to replace these functions.
This includes replacement functions for:
Function names Implementation Origin
getdelim, getline general purpose NetBSD under a compatible license
openlog, syslog, Win32 written by me
vsyslog
realpath Win32 written by me
2020 Aug 18
0
[PATCH nbdkit 3/9] server: Add general replacements for missing functions using LIBOBJS.
Especially on Windows, some common functions are missing. Use the
autoconf LIBOBJS mechanism to replace these functions.
This includes replacement functions for:
Function names Implementation Origin
getdelim, getline general purpose NetBSD under a compatible license
openlog, syslog, Win32 written by me
vsyslog
realpath Win32 written by me
2004 May 06
3
[LLVMdev] Plea for help
Chris Lattner wrote:
>I think that we should switch to C constants in this case. Can you try
>#include <math.h> and use HUGE_VAL instead?
>
It works:
[finna at coplin11 ~/test]$ cat tst.cpp
#include <limits>
#include <iostream>
#include <math.h>
int main() {
std::cerr << std::numeric_limits<float>::infinity() << "\n";
std::cerr
2013 Feb 17
4
why are qemu-img and vhd-util created files incompatible?
I was wondering if someone can shed some light on why vhd files
created with qemu-img don''t really work right with vhd-util and
consequentially blktap in general. To validate the incompatiblity its
simple enough to do
qemu-img create -f vpc test.vhd 40g
vhd-util snapshot -n child.vhd -p test.vhd
Which will show the below and then the headers don''t display the BATMAP summary:
primary footer invalid: creation time in future
test...
2018 Aug 01
2
Re: [PATCH v2 nbdkit 4/6] common: Add a directory for common code shared by plugins and filters.
On Wed, Aug 1, 2018 at 2:14 PM Richard W.M. Jones <rjones@redhat.com> wrote:
> Currently this adds two useful header files containing functions which
> will be consumed by filters in later commits.
> ---
> Makefile.am | 5 +++-
> common/include/Makefile.am | 39 ++++++++++++++++++++++++
> common/include/ispowerof2.h | 50 +++++++++++++++++++++++++++++++
2020 Apr 10
0
[PATCH nbdkit UNFINISHED] Add the ability to write plugins in golang.
Similar to C, OCaml and Rust, this is not a plugin per se. Instead
it's more of a method and set of tests around writing plugins in
golang. They are standalone programs that compile into shared objects
that nbdkit can then load (so there is no "go plugin" between nbdkit
and the user plugin, unlike in scripting languages like Perl).
---
plugins/golang/nbdkit-golang-plugin.pod
2015 Jul 02
6
boot... round 2
Hi,
hpa wrote:
> On PowerPC (I think) "unsigned char" is the default.
In any case it seems a good idea to interpret the character
more explicitely. To my experience, one signdness change causes
a little tree of consequential signedness changes or questionable
cast operations.
How about the following instead ?
if ((c >= 0 && c <= ' ') || c == '\x7f')
2006 Dec 23
4
AltGr not working in R GUI Script Editor (PR#9430)
...duced by pressing key
combinations AltGr+F, AltGr+G, AltGr+B and AltGr+N, respectively. These
combinations generally work in all Windows programs and also in R Console.
However, R Script editor produces behaves wrongly and causes:
AltGr+F to open Find dialog box,
AltGr+N to open new Script window.
Consequentially, it is not possible to type ] and } brackets using slovenian
input settings in script editor. Meanwhile, AltGr+G and AltGr+B work fine.
2020 Apr 21
2
[PATCH nbdkit v2] Add the ability to write plugins in golang.
Thanks: Dan Berrangé
XXX UNFINISHED:
- Is using uintptr for the handle a good idea? Plugins must return
something != 0. In other languages we would allow plugins to
return an arbitrary object here, but this is not possible in golang
because of lack of GC roots.
- Default can_* methods are hard to implement. Ideally we would be
able to test if a user plugin implements a
2004 Jun 18
5
Lag on network using Samba
I am using Samba for a file server and get a lag when accessing files
across the network, I assume it is due to inactivity, because the first
file I access takes the longest to access, and then other files I access
immediatly after are much faster. If I do not access any files for a
while I get the problem again. It all works well, but I would really
like to get rid of this Lag when opening a
2005 May 18
1
loop
Rather than using a loop, how can I remove all consequentially
repeated values as in this example?
I am guessing using diff would help but not quite sure how.
> get
> s
date f
1 1999-01-01 1
2 1999-01-02 1
3 1999-01-03 1
4 1999-01-04 2
5 1999-01-05 2
> v <- s[1,'f']; for (i in 2:nrow(s)) { if (s[i,'f'] == v) s[i...
2003 Jun 02
2
R 1.7.1 beta is out
I've wrapped up the first beta release of 1.7.1. It is available on
http://cran.us.r-project.org/src/base/
Things are set up so that a new version should be generated every
morning at 7am local time (Wisconsin), until the day of the final
release. (And consequentially, although it will propagate to the rest
of CRAN, it will most likely be out of date by then, so do get it from
the above address.)
--
O__ ---- Peter Dalgaard Blegdamsvej 3
c/ /'_ --- Dept. of Biostatistics 2200 Cph. N
(*) \(*) -- University of Copenhagen Denmark...
2004 May 06
0
[LLVMdev] Plea for help
On Thu, May 06, 2004 at 04:06:27PM +0200, Finn S Andersen wrote:
> Chris Lattner wrote:
>
> >I think that we should switch to C constants in this case. Can you try
> >#include <math.h> and use HUGE_VAL instead?
> >
> It works:
>
> [finna at coplin11 ~/test]$ cat tst.cpp
> #include <limits>
> #include <iostream>
> #include
2018 Aug 01
0
[PATCH v2 nbdkit 4/6] common: Add a directory for common code shared by plugins and filters.
Currently this adds two useful header files containing functions which
will be consumed by filters in later commits.
---
Makefile.am | 5 +++-
common/include/Makefile.am | 39 ++++++++++++++++++++++++
common/include/ispowerof2.h | 50 +++++++++++++++++++++++++++++++
common/include/iszero.h | 60 +++++++++++++++++++++++++++++++++++++
configure.ac | 1 +
5
2018 Aug 01
0
Re: [PATCH v2 nbdkit 4/6] common: Add a directory for common code shared by plugins and filters.
On Wed, Aug 01, 2018 at 04:24:58PM +0300, Nir Soffer wrote:
> On Wed, Aug 1, 2018 at 2:14 PM Richard W.M. Jones <rjones at redhat.com> wrote:
>
> > Currently this adds two useful header files containing functions which
> > will be consumed by filters in later commits.
> > ---
> > Makefile.am | 5 +++-
> > common/include/Makefile.am | 39
2020 Mar 26
0
[PATCH nbdkit 5/9 patch split 1/5] Create libnbdkit.so.
Currently it does nothing.
---
configure.ac | 1 +
Makefile.am | 1 +
lib/Makefile.am | 71 ++++++++++++++++++++++++++++++++++++++++++++++
server/Makefile.am | 3 ++
server/internal.h | 1 +
lib/lib.h | 48 +++++++++++++++++++++++++++++++
lib/init.c | 53 ++++++++++++++++++++++++++++++++++
wrapper.c | 18 ++++++++----
lib/libnbdkit.syms | 47
2020 Apr 10
3
[PATCH nbdkit UNFINISHED] Add the ability to write plugins in golang.
Sorry Dan, but I really do dislike golang with a passion :-)
Here is a patch that allows you to write nbdkit plugins in golang. As
with C, OCaml and Rust, you can write a plugin in Go which compiles
directly to a .so file that can be loaded into golang, so in that
sense it works completely differently from scripting language plugins
like Perl and Python where there's an
2019 Sep 28
0
[PATCH nbdkit v2 4/4] info: Add tests for time, uptime and conntime modes.
---
tests/Makefile.am | 6 ++++
tests/test-info-conntime.sh | 65 +++++++++++++++++++++++++++++++++++
tests/test-info-time.sh | 68 +++++++++++++++++++++++++++++++++++++
tests/test-info-uptime.sh | 65 +++++++++++++++++++++++++++++++++++
4 files changed, 204 insertions(+)
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 5a65db7..abcce94 100644
--- a/tests/Makefile.am
+++