Displaying 20 results from an estimated 10000 matches similar to: "Uninitialized constant error"
2008 Oct 28
0
oracle_enhanced adapter 'uninitialized constant' error
Hi,
Can any one help me? I''m using Ubuntu and trying to connect to an oracle
database using oracle_enhanced adapter connection, but keeps getting
following error:
/usr/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.
rb:275:in `load_missing_constant'': uninitialized constant
ActiveRecord::Connecti
onAdapters::OracleEnhancedAdapter (NameError)
2006 Feb 01
2
Uninitialized constant ApplicationController?
Hello list,
I''m trying to start my Rails server after doing a long complex switch
from Postgres to MySQL, and I''m getting the following error:
=> Booting WEBrick...
/usr/lib/ruby/gems/1.8/gems/activesupport-1.2.5/lib/active_support/dependencies.rb:200:in
`const_missing'': uninitialized constant ApplicationController
(NameError)
from
2015 Nov 05
2
constant string as an assembly operand
Hello all,
how can one can describe a constant string as an operand in the assembly
instruction?
for example imagine this instruction:
xyz 14 ABC
where "xyz" is the operator, 14 is an immediate value, and because of
assembly dialect, there should be a constant string with the value of ABC
follow the immediate value. How is this possible?
What should be the dat describing the
2015 Nov 05
2
constant string as an assembly operand
Hi Tom,
Thanks.
It should be always ABC.
What should be the iops? just (ins i8imm:$val)? what would be the
placeholder for a constant string in "ins"?
On Thu, Nov 5, 2015 at 4:33 PM, Tom Stellard <tom at stellard.net> wrote:
> On Thu, Nov 05, 2015 at 03:20:45PM +0100, Sky Flyer via llvm-dev wrote:
> > Hello all,
> >
> > how can one can describe a constant
2014 Jan 01
2
[Bug 883] New: Uninitialized values in libnetfilter_log.c
https://bugzilla.netfilter.org/show_bug.cgi?id=883
Summary: Uninitialized values in libnetfilter_log.c
Product: libnetfilter_log
Version: unspecified
Platform: x86_64
OS/Version: Fedora
Status: NEW
Severity: major
Priority: P5
Component: libnetfilter_log
AssignedTo: netfilter-buglog at
2006 Jan 31
2
NameError/Unitialized Constant With PayPal Gem
I am trying to use the PayPal gem and having a little trouble.
I installed the gem w/o any trouble:
paypal (1.0.1)
Paypal IPN integration library for rails and other web applications
When I try to use it in my controller, as follows:
def paypal_ipn
notify = Paypal::Notification.new(request.raw_post)
...
end
I get a NameError:
uninitialized constant Paypal
This error occured
2009 Aug 07
1
Yaml for jqgrid
Anyone have a more extensive yaml file for jqgrid than the one that''s
shown with the example Jqgrid Demos page?
Also, I''ve been successful in just using the straight jQuery javascript
code, rather than invoking the yaml file to produce it), but sometimes
get an "unitialized class variable @@grid_name" error. I was doing this
because all the code I see on the web to
2006 Jul 28
2
gem install (Errno::EACCES)
I am finding it impossible to install a gem, and even more impossible to
find help.
Can anyone PLEASE help?
- - - - - - - - -
Mason-Kessingers-Computer:~/Desktop/rails/pygmalion masonkessinger$ gem
install login_generator
Attempting local installation of ''login_generator''
Local gem file not found: login_generator*.gem
Attempting remote installation of
2005 Apr 29
2
problem installing login generator on windows
Hi,
I had a non-fatal problem installing the login generator on Windows w/
rails 0.12.1. Has anyone else run into this or know what''s wrong?
c:\devel\ruby>gem install --source http://dist.leetsoft.com login_generator
c:\devel\ruby>"c:\devel\ruby\bin\ruby.exe" "c:\devel\ruby\bin\gem"
install --source http://dist.leetsoft.com login_generator
Attempting local
2020 Feb 24
2
Mac OS and interpretation of @ in a username. Ex user@mds.xyz doesn't work on Mac OS but does on Win 10
On 2/23/2020 2:54 PM, TomK via samba wrote:
> On 2/23/2020 11:44 AM, Rowland penny via samba wrote:
>> On 23/02/2020 16:05, TomK wrote:
>>> On 2/21/2020 9:18 PM, Andrew Bartlett via samba wrote:
>>>> On Fri, 2020-02-21 at 20:48 -0500, TomK wrote:
>>>>>
>>>>>
>>>>>>
>>>>>> "Sadly this really appears
2010 Aug 20
2
Determining the length of unique items in a vector
Dear all, let suppose I have following vector:
> dat1 <- c(rep("asd", 5), rep("xyz", 12), rep("erd", 17))
> dat1 <- dat1[sample(1:length(dat1), length(dat1), replace=F)]
> dat1
[1] "erd" "xyz" "erd" "asd" "asd" "erd" "xyz" "asd" "erd" "erd"
2005 Jun 10
4
data.frame to character
Hi,
Excuse me for this simple question.
How to convert as.data.frame to as.character?
?data.frame
> L3 <- LETTERS[1:3]
> L10 <- LETTERS[1:10]
> d <- data.frame(cbind(x=c("XYZ"), y=L10), fac=sample(L3, 10, repl=TRUE))
> d
x y fac
1 XYZ A A
2 XYZ B A
3 XYZ C A
4 XYZ D A
5 XYZ E B
6 XYZ F C
7 XYZ G A
8 XYZ H C
9 XYZ I B
10 XYZ
2012 Jul 18
2
How to have original (name) order after melt and cast command
Dear R helpers,
I have a data.frame as given below -
dat1 = data.frame(date = as.Date(c("3/30/12","3/29/12","3/28/12","3/27/12","3/26/12",
"3/23/12","3/22/12","3/21/12","3/20/12", "3/30/12","3/29/12","3/28/12","3/27/12",
2009 Jul 22
1
How do I delete a row from a data frame when varA == "TRUE"
I want to delete a row from a data frame XYZ where A == "TRUE". Let's assume
there are five variables in this data frame XYZ. My deletion is based on
the TRUE vs. FALSE value under variable A. How do I do this? Thanks!
My current code:
for (i in 1:length(XYZ$A)) if (XYZ$A == "FALSE") XYZ<-XYZ else XYZ<-
XYZ[-i,]
Error message is:
Error in if (XYZ$A ==
2011 Mar 28
1
Ordering data.frame based on class
Dear R helpers
Suppose I have a data.frame as given below -
my_dat = data.frame(class = c("XYZ", "XYZ", "XYZ", "XYZ", "XYZ","ABC", "ABC", "ABC", "ABC", "ABC" ), var1 = c(20, 14, 89, 81, 17, 44, 36, 41, 11, 36), var2 = c(1001, 250, 456, 740, 380, 641, 111, 209, 830, 920))
> my_dat
class
2018 Aug 06
2
Winbind issue after upgrading from 4.7.5 to 4.8.3
Hi guys
We recently upgraded our Samba clusters from 4.7.5 to 4.8.3 and noticed
a difference in behavior for winbind.
The situation is as follows
Assume we have a local Linux user XYZ (UID 519) as well as a AD user
object XYZ (UID 30001).
idmap config * : backend = tdb2
idmap config * : range = 30000-50000
In our share definitions we regularly use the "force user"
2006 Jan 23
0
gem install login_generator
I am trying to install a gem into my Dreamhost account:
http://wiki.dreamhost.com/index.php/Ruby_on_Rails#Using_gems_installed_in_your_home_directory
But it doesn''t work. I don''t quite understand the error message:
pico$ gem update --source http://gems.rubyonrails.com
Upgrading installed gems...
Updating Gem source index for: http://gems.rubyonrails.com
Gems: [] updated
pico$
2012 Oct 30
1
mapply instead for loop
Hi all!
My question in about using mapply instead for loop. Below is a example with for loop: Is it posible to give same results with mapply function?
Thanks for help!
OV
x <- 1:10
y <- 1:10
xyz <- data.frame(expand.grid(x,y)[1], expand.grid(x,y)[2], z = rnorm(100))
names(xyz) <- c("x", "y", "z")
head(xyz)
size <- 2
output <- NULL
### for
2020 Feb 21
3
Mac OS and interpretation of @ in a username. Ex user@mds.xyz doesn't work on Mac OS but does on Win 10
On 2/21/2020 2:24 PM, Rowland penny via samba wrote:
> On 21/02/2020 19:06, torch via samba wrote:
>> Am I missing something?? I don?t see where you are using the ?@?
>> symbol anywhere.
>> Mac is probably interpreting the parameters ?valid users? and ?write
>> list" (correctly, I think ;-) as a LIST of 3 users: joe, at, mds.xyz
>> or bob, at, mds.xyz.
2009 Sep 17
2
What is the best way to get a subset of a data.frame?
Hi,
I want to construct a data.frame 'y' by using x$x and x$y. I think
that there might be better ways to do it (because, for example, we can
use a_matrix[3:5,] to extract certain rows, where 'a_matrix' is a
matrix). Can somebody let know what the best way is?
> a=data.frame(x=1:10,y=rep("abc",10),z=rep("xyz",10))
> a
x y z
1 1 abc xyz
2 2