search for: unsatisfying

Displaying 20 results from an estimated 151 matches for "unsatisfying".

Did you mean: satisfying
2010 Jan 18
1
A question about build R-2.10.0 on HP-UX ia64 server.
Hi R usrs, I want to build R-2.10.0 on HP-UX, but I got following error message: ld: Unsatisfied symbol "zgemm" in file CHOLMOD.a[cholmod_l_super_numeric.o] ld: Unsatisfied symbol "zgemv" in file CHOLMOD.a[cholmod_l_super_solve.o] ld: Unsatisfied symbol "zherk" in file CHOLMOD.a[cholmod_l_super_numeric.o] ld: Unsatisfied symbol "ztrsm" in file
2010 Jan 18
0
Build R-2.10.0 on HP-UX ia64 server
Hi All, I want to build R-2.10.0 on HP-UX, but I got following error message: ld: Unsatisfied symbol "zgemm" in file CHOLMOD.a[cholmod_l_super_numeric.o] ld: Unsatisfied symbol "zgemv" in file CHOLMOD.a[cholmod_l_super_solve.o] ld: Unsatisfied symbol "zherk" in file CHOLMOD.a[cholmod_l_super_numeric.o] ld: Unsatisfied symbol "ztrsm" in file
2004 Feb 02
0
problem building R on HPUX 11.23
When building the X11 modules under HPUX 11.23 I get the following errors ld: Unsatisfied symbol "Rf_isNull" in file dataentry.lo ld: Unsatisfied symbol "Rf_length" in file dataentry.lo ld: Unsatisfied symbol "Rf_warningcall" in file devX11.lo ld: Unsatisfied symbol "UNIMPLEMENTED" in file dataentry.lo ld: Unsatisfied symbol "R_alloc" in file
2013 Dec 27
1
CentOS6 CR repo - depsolving problem
All, Has anyone else had a problem with the CR repo on a 6.4 or 6.5 system? I have a test VM that has the CentOS6 CR repo enabled and it recently (well a week or so) started having dependency problems. It's choking on dependencies for ca-cerfificates. Obviously there aren't any CR packages yet for 6.5 so a zero package count and empty directory on the mirror [0] are legitimate. But
2010 Feb 22
2
ld: Unsatisfied symbol "options" in file ./libssh.a[hostfile.o]
Hi All, I have want to add a option in ssh_config to co-work with ldap.But when I am compiling , i was encountered a ld error, which says "cc -o ssh-keygen ssh-keygen.o -Wl,+nodefaultrpath -L. -Lopenbsd-compat/ -lssh -lopenbsd-compat -lz -lnsl -lxnet -lsec -lgssapi_krb5 -lkrb5 -lpthread ld: Unsatisfied symbol "options" in file ./libssh.a[hostfile.o] 1 errors." The following is
2014 Sep 27
2
r-cran-rgdal: dependency on libgdal1 unsatisfied in ubuntu 12.04?
Hi I am trying to install the rgdal package through r-cran-rgdal (I had added the ppa), and run into an error in Ubuntu 12.04: r-cran-rgdal : D?pend: libgdal1 (>= 1.9.0) mais il n'est pas installable in English, libgdal1 1.9 does not seem available in Ubuntu 12.04 (I think version 1.7) comes. And indeed, a: $sudo apt-get install libgdal1 Gives also an error message, saying libgdal1
2007 Mar 15
0
CentOS 5 Beta dual boot with FC7T2 (unsatisfying)
To test CentOS 5, I loaded from DVD adding it to a system at home running Fedora Core 7 T2. Partition Layout is: /dev/hda1 - / for the RH7T2 system /dev/hda2 - /home /dev/hda3 - swap /dev/hda4 - extended /dev/hda5 - / for CentOS 5 The system loaded cleanly and gave me the opportunity to tell grub about the other system. CentOS boots fine. Grub Stage 2 will show me both systems.
2020 Apr 08
3
samba 4.12 build on hp-ux unsupported system calls
Hi Team, We are having compile/linking time warning due unsatisfied system calls and macros. We have checked and confirm that these are not supported by hp-ux kernel and enabling them will require changes in VFS layer and physical filesystem. Unsatisfied system calls * renameat * symlinkat * linkat * unlinkat * readlinkat * mkdirat Undefined
2005 Feb 19
5
Routing: How do I use what is left from an URL
Hi, I have this scenario. I have the full path of a page stored in the database (column ''path''). I want to be able to have very short urls for retrieving the pages, so i have this route in my map map.connect ''-/:title'', :controller => ''page'', :action => ''view_by_title'', :title => nil so when I go to
2015 Feb 24
6
Current 6.8 git build issues on HP-UX
HP-UX 11.23/11.31 build failures OS Build_Target CC OpenSSL BUILD TEST ============== =========================== ================ ============= ====== ================= HP-UX 11.23 ia64-hp-hpux11.23 C/aC++ C.11.23.12 0.9.8zb *F1 HP-UX 11.23 ia64-hp-hpux11.23 gcc 4.3.1 0.9.8zb *F2 HP-UX 11.31 ia64-hp-hpux11.31
2006 Feb 15
1
configure can't find ldap_initialize on HP-UX 11i
I'm basically using the instructions found in the HP-UX readme with the exception that I am trying to use the version of openldap that is in iexpress instead of the one from hpux.cs.utah.edu. The recommendations listed in the doc are: HP-UX 11.00 and 11.11: OpenLdap 2.1.3 (http://hpux.cs.utah.edu) OpenSSL 0.9.7d (http://hpux.cs.utah.edu) HP-UX 11.23 only: ixOpenLdap
2018 Mar 15
1
[GSoC 2018] Integrate with Z3 SMT solver to reduce false positives.
Hi all, I am a fourth year EE bachelors student who is very interested in compilers. I have taken the only compilers course offered in my school and did an independent study with my CS professor. Although I'll begin to work in a couple of months, I definitely want to pursue my interest in compiler design and optimization as a PhD in the future. I am very interested in the z3 SMT solver
2001 Jul 27
3
style question: returning multiple arguments - structure or list
I have a question about what is considered good style in R. I have a function which returns several arguments, say [x,y,z]=f(), where sometimes I only care about the first few (so in Matlab, I can write e.g., [x,y] = f()). In R, there seem to be 2 ways to write this, both unsatisfying (to me): LIST f <- function() { ... list(x=x,y=y,z=z) } res <- f() x <- res$x; y <- res$y; z <- res$z STRUCTURE f <- function() { ... structure(x,y=y,z=z) } x <- f() y <- attr(x,"y"); z <- attr(x, "z") Which is considered better style, or...
2015 Feb 24
4
Current 6.8 git build issues on HP-UX
On Wed, Feb 25, 2015 at 09:04:57AM +1100, Darren Tucker wrote: > On Tue, Feb 24, 2015 at 12:11:16PM -0800, Kevin Brott wrote: > > ld: Unsatisfied symbol "xstrdup" in file > > openbsd-compat//libopenbsd-compat.a[bsd-misc.o] > > How about removing the dependency on xmalloc? eg (untested): Shoulda tested it. Now one that will compile: diff --git
2008 Feb 08
4
Subsetting a data.frame degenerates at one column?
Greetings. At the moment, I'm applying R to some AIX 'nmon' output, trying to get a handle on some disk performance metrics. In case anyone's interested: http://docs.osg.ufl.edu/tsm/pdf/ some of them are more edifying than others. (ahem) I'm trying to develop a somewhat general framework for plotting these measures, in the hopes that it's of some use to people other
2000 Mar 16
2
Need help compiling R
Hi, I am trying to compile R but it keeps failing. My platform is HP-UX 10.20 and I am having trouble getting pass the configure stage. It continues to fail at the warning "f90 and gcc disagree on int and double" Here is some output: + gcc -g -O2 -c conftest.c + 1>& 5 2>& 5 + gcc -o conftest conftest.o conftestf.o /usr/bin/ld: Unsatisfied symbols: FTN_DTOI$ (code)
2007 Jun 12
3
Appropriate regression model for categorical variables
Dear users, In my psychometric test i have applied logistic regression on my data. My data consists of 50 predictors (22 continuous and 28 categorical) plus a binary response. Using glm(), stepAIC() i didn't get satisfactory result as misclassification rate is too high. I think categorical variables are responsible for this debacle. Some of them have more than 6 level (one has 10 level).
2013 Nov 13
0
[LLVMdev] How to reduce the footprint of MDNodes? (About the comment you made at BOF LTO)
On Tue, Nov 12, 2013 at 4:31 PM, David Blaikie <dblaikie at gmail.com> wrote: > Where would the encoding schema be specified? >>> >> >> Same question applies to a string encoding. We have to define the schema >> somewhere clearly. I'm just lobbying for the textual IR and the APIs to >> both operate directly on N fields, and just make the memory
2009 Jun 11
2
Expand a contingency table based on the value in one column
Hi R-helpers, I have the following (dummy) dataframe: > test DATE LOCATION KIND CLASS COUNT 1 1 1 CAR A 2 2 1 1 TRUCK D 3 3 1 1 BUS E 4 4 1 2 CAR E 2 5 1 2 TRUCK A 7 6 1 2 BUS F 1 That I would like to turn into this: > test2 DATE LOCATION KIND CLASS 1 1 1
2004 Nov 21
2
TeXmacs and R 2.0.0
I have encountered an issue with TeXmacs and R 2.0.0, and I've found a somewhat unsatisfying workaround. My apologies if this is old news to the R-Devel list. TeXmacs has the ability to start up an R session and copy the session input and output into a working document. The way it does this involves starting R and executing > library(TeXmacs,lib.loc="/usr/share/TeXmacs/plugins/r/...