Displaying 18 results from an estimated 18 matches for "nnote".
Did you mean:
note
2001 Nov 19
1
Crash when pressing OK/Cancel in User Preferences - Lotus Notes RNext
...LL 'WINSPOOL.DRV' (0x40a78000)
No debug information in 32bit DLL 'COMDLG32.DLL' (0x40a21000)
No debug information in 32bit DLL 'WS2_32.DLL' (0x40a9e000)
No debug information in 32bit DLL 'WSOCK32.DLL' (0x40a8a000)
No debug information in 32bit DLL 'D:\LOTUS\NOTES\NNOTES.DLL' (0x014ce000)
No debug information in 32bit DLL 'D:\LOTUS\NOTES\LTOUIN22.DLL'
(0x18200000)
No debug information in 32bit DLL 'LZ32.DLL' (0x403a8000)
No debug information in 32bit DLL 'VERSION.DLL' (0x40ab0000)
No debug information in 32bit DLL 'D:\LOTUS\NOTES\N...
2009 Oct 05
2
Loop function/comparison operator problem
Hi There,
I have created the following function
format<- function(){
repeat {
form<-readline(paste("\nIn what format do you want to save these
plots?\nChoose from: wmf, emf, png, jpg, jpeg, bmp, tif, tiff, ps, eps, or
pdf.\nNote: eps is the suggested format for publication quality plots.\nPlot
format --> "));
cat("\nI'm sorry, I don't know what that format is.\nPlease try
again\nPress ENTER...");readline()}
if (form == c("wmf", "emf", "png", "jpg", "j...
2024 Feb 23
0
Data consideration in executing pca
...and the other columns contain the values of four
variables X_1,X_2,X_3 and X_4. I read it with R from its location and
called it data. I'd like to do a normalized principal component analysis. I
started by calculating the correlation matrix:
cor(data)
I got the following message:
Error in cor(nnotes) : 'x' must be numeric.
I eliminated the first column of names, then read the modified data and
then added the names of individuals with rownames. I was able to run PCA
and obtain graphical representations of the variables, their coordinates,
contributions and cos2. However, when I used fv...
2009 Aug 23
1
ggplot2 and mtext question
Hi,
In R base graphics, the function mtext can be used to add text to the
margins of a plot. This is very useful for adding notes (such as data
source, sample size, etc.) to the bottom of a graph. How can such notes
be added to the bottom of a graph when using ggplot2?
Thanks,
Walt
--
________________________
Walter R. Paczkowski, Ph.D.
Data Analytics Corp.
44 Hamilton Lane
2001 Nov 19
1
Lotus Notes under WinNT 4.0
...odule \\
'C:\WINNT\SYSTEM\OLEAUT32.dll' : builtin
fixme:win32:ELF_FindExportedFunction function BindMoniker not found:
/usr/local/lib/libwine.so: undefined symbol: BindMoniker
err:win32:PE_fixup_imports No implementation for ole32.dll.0(BindMoniker)
imported from C:\Programme\Lotus\Notes\nnotes.dll, setting to 0xdeadbeef
etc pp...
It also produces error messages like:
FIXME:pthread_rwlock_rdlock
Any ideas how I can run Lotus Notes? Don't blame me for using
this stuff, my company decided that, but I'd rather work under
linux. :-)
Thanks, Gaby
--
mailto: gaby@gabyhornik.de
2008 Apr 13
1
Lotus Notes with wine in opensuse 64 bit
...l %ebp
Modules:
Module Address Debug info Name (86 modules)
PE 400000- 50f000 Deferred nlnotes
PE 10000000-10314000 Deferred nxmlproc
PE 18200000-1822e000 Deferred ltouin22
PE 60000000-60ea1000 Deferred nnotes
PE 61680000-627f4000 Deferred nnotesws
PE 62b50000-62ba9000 Deferred js32
PE 62c50000-62d47000 Deferred nlsccstr
PE 62db0000-62dbb000 Deferred nplugins
PE 63460000-63466000 Deferred ndgts
ELF 7b800000-7b9...
2014 Sep 23
0
[PATCH 02/13] syntax-check: fix error_message_period check
...0644
--- a/src/fuse.c
+++ b/src/fuse.c
@@ -1065,7 +1065,7 @@ guestfs__mount_local_run (guestfs_h *g)
r = guestfs_exists (g, "/");
guestfs_pop_error_handler (g);
if (r == -1) {
- error (g, _("you must call 'guestfs_mount' first to mount a filesystem on '/'.\nNote: '%s' is still mounted. Use 'guestunmount %s' to clean up."),
+ error (g, _("you must call 'guestfs_mount' first to mount a filesystem on '/'.\nNote: '%s' is still mounted. Use 'guestunmount %s' to clean up"),
g->loc...
2008 Apr 14
3
[Fwd: Lotus Notes with wine in opensuse 64 bit]
...l %ebp
Modules:
Module Address Debug info Name (86 modules)
PE 400000- 50f000 Deferred nlnotes
PE 10000000-10314000 Deferred nxmlproc
PE 18200000-1822e000 Deferred ltouin22
PE 60000000-60ea1000 Deferred nnotes
PE 61680000-627f4000 Deferred nnotesws
PE 62b50000-62ba9000 Deferred js32
PE 62c50000-62d47000 Deferred nlsccstr
PE 62db0000-62dbb000 Deferred nplugins
PE 63460000-63466000 Deferred ndgts
ELF 7b800000-7b9...
2008 Feb 21
0
[LLVMdev] LLVM Win32 Issue
Hola Aaron,
Just having that code didn't work since the linker still stripped it
out, so I have that function called from the code in the system that
actually is being used by our app.
Kinda grubby, but I include:
#include "llvm/lib/Target/X86/X86TargetMachine.h"
Which is in the LLVM lib, not the LLVM inc directory. This little
maneuver made our Mac builds really unhappy, so
2006 Jun 19
3
can I call user-created functions without source() ?
Hi,
I have to R fairly recently from Matlab, where I have been used to
organising my own custom functions into directories which are adding to
the Matlab search path. This enables me to call them as I would one of
Matlab's built-in functions. I have not found a way of doing the same
thing in R. I have resorted to using source() on symlinks located in the
current directory. Not very
2008 Feb 21
3
[LLVMdev] LLVM Win32 Issue
Thanks for your response Chuck.
>From this and the other responses to my question, it looks like I'm
including all the right object files, so it must be something with
Visual Studio stripping "dead" code.
So, given your response Chuck, I have a few questions.
First, what exactly is the code that VStudio seems to be stripping? I
might be able to figure out how to prevent it
2006 Dec 20
5
writing R extension
I'd like to develop a simple library in R in which to save my
particular functions.
I have read the manual on "Writing R Extensions" but it's too
difficult. Someone could help me?
I want only save my personal function (recorded in R-code, not in C) in
"myLibrary" and I want to call it with:
>library (myLibrary).
After this, the functions should be available
2019 Oct 15
4
Splitting the large libguestfs repo
I got a little way into this. The two attached patches are
preliminary work.
My proposed split is:
libguestfs.git
common -> git submodule libguestfs-common.git
generator/
lib/
all language bindings
C based tools (eg. virt-df, virt-edit, guestfish)
guestfs-tools.git
common -> git submodule libguestfs-common.git
2016 Apr 04
0
[PATCH 2/2] Use 'error' function for fprintf followed by exit.
...ts = guestfs_inspect_os (g);
- if (roots == NULL) {
- fprintf (stderr, _("%s: no operating system could be detected inside this disk image.\n\nThis may be because the file is not a disk image, or is not a virtual machine\nimage, or because the OS type is not understood by libguestfs.\n\nNOTE for Red Hat Enterprise Linux 6 users: for Windows guest support you must\ninstall the separate libguestfs-winsupport package.\n\nIf you feel this is an error, please file a bug report including as much\ninformation about the disk image as possible.\n"),
- guestfs_int_program_name...
2016 Apr 04
2
[PATCH 1/2] Use 'error' function consistently throughout.
Wherever we had code which did:
if (something_bad) {
perror (...);
exit (EXIT_FAILURE);
}
replace this with use of the error(3) function:
if (something_bad)
error (EXIT_FAILURE, errno, ...);
The error(3) function is supplied by glibc, or by gnulib on platforms
which don't have it, and is much more flexible than perror(3). Since
we already use error(3), there seems to be
2017 Apr 04
1
[PATCH] Use Unicode single quotes ‘’ in place of short single quoted strings throughout.
...--- a/lib/fuse.c
+++ b/lib/fuse.c
@@ -1072,7 +1072,7 @@ guestfs_impl_mount_local_run (guestfs_h *g)
r = guestfs_exists (g, "/");
guestfs_pop_error_handler (g);
if (r == -1) {
- error (g, _("you must call 'guestfs_mount' first to mount a filesystem on '/'.\nNote: '%s' is still mounted. Use 'guestunmount %s' to clean up."),
+ error (g, _("you must call ‘guestfs_mount’ first to mount a filesystem on '/'.\nNote: ‘%s’ is still mounted. Use ‘guestunmount %s’ to clean up."),
g->localmountpoint, g->loc...
2014 Sep 23
27
[PATCH 00/13] syntax-check
Hi Rich,
This series includes patches to make `make syntax-check` pass.
Some of the fix require change to maint.mk, but the file is not in git
repo. Is it intended?
Thanks!
Hu Tao (13):
syntax-check: dirty hack to pass bindtextdomain check
syntax-check: fix error_message_period check
syntax-check: fix makefile_at_at_check
syntax-check: fix prohibit_assert_without_use check
2015 Feb 14
2
[PATCH 0/2] Change guestfs__*
libguestfs has used double and triple underscores in identifiers.
These aren't valid for global names in C++.
(http://stackoverflow.com/a/228797)
These large but completely mechanical patches change the illegal
identifiers to legal ones.
Rich.