search for: hl

Displaying 20 results from an estimated 15090 matches for "hl".

Did you mean: hlt
2011 Sep 17
8
apt-get --force-yes
...scribed to the Google Groups "Puppet Users" group. To post to this group, send email to puppet-users@googlegroups.com. To unsubscribe from this group, send email to puppet-users+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en.
2004 Jan 30
1
Able to Mount home, but getting failure errors in logs
Hi, I have a few users that are creating errors like below. These users have mapped a directory via Samba and also have it connected. They can access their home directory or other directory via Samba fine, but it is strange that every hour on the hour there is a failure put into the log (even though they are working). My server is joined to the Domain and it is using
2012 Apr 25
2
[LLVMdev] LLVM Backend for Z80. ADD -> replaced -> OR
...2 0, i32 2 store i8 -64, i8* %id3, align 1 ret void } And with llc -filetype=asm -march=z80 a get this .s file: .file "simple4.bc" .text .globl simple .type simple, at function simple: # @simple # BB#0: # %entry ld HL, 8 add HL,SP <--- problem line ld DE, 1 ld BC, 2 ld (SP+6), BC ld B, H ld C, L or BC, DE ld (SP+4), BC ld (HL),64 ld D, H ld E, L ld BC, (SP+6) or DE, BC ld BC, (SP+4) ld H, B ld L, C ld (HL),-128 ld H, D ld L, E ld (HL),-64 $tmp0: .size simple, ($tmp0...
2001 Oct 19
1
pc freezes when trying to load hl
hi there, i read a lot here, but i didn't found any answer for my prolem: my system is mandake 8.0 final i compiled the wine-20010305 using ./configure --enable-opengl --prefix=/usr then used make and after that make install. everything seems to work (i can run the hl-installer). so, now, when i mount my cdrom and then do wine SETUP.EXE in the cdrom-dir, first, the sierra logo appears and it goes up to 99% and ending with an empty error. now i switch to the console window i started SETUP.EXE with, press Ctrl+C and run wine SETUP.EXE again. now it goes like it h...
2007 Jun 05
2
biplot package
...te('V', 1:ncol(x), sep='') else colnames = colnames(x) s = svd(x) s2 = diag(sqrt(s$d[1:n.values])) #s2 = diag(s$d[1:n.values]) pca of pcurve is like this!? switch(match.arg(weight), equal = { g = s$u[,1:n.values] %*% s2 h = s2 %*% t(s$v[,1:n.values]) hl = t(h) }, samples = { g = s$u[,1:n.values] %*% s2 h = t(s$v[,1:n.values]) hl = t(h) }, variables = { g = s$u[,1:n.values] h = s2 %*% t(s$v[,1:n.values]) hl = t(h) }) gencolnames = paste('PC', 1:n.values, sep='') rowna...
2012 Apr 25
0
[LLVMdev] LLVM Backend for Z80. ADD -> replaced -> OR
...et void > } > > And with llc -filetype=asm -march=z80 a get this .s file: > > .file "simple4.bc" > .text > .globl simple > .type simple, at function > simple: # @simple > # BB#0: # %entry > ld HL, 8 > add HL,SP <--- problem line > ld DE, 1 > ld BC, 2 > ld (SP+6), BC > ld B, H > ld C, L > or BC, DE > ld (SP+4), BC > ld (HL),64 > ld D, H > ld E, L > ld BC, (SP+6) > or DE, BC > ld BC, (SP+4) > ld H, B > ld L, C > ld (...
2007 Jun 11
0
biplot package II
...'scatterplot3d') if(!all(necessary %in% installed.packages()[, 'Package'])) install.packages(c('rgl', 'scatterplot3d'), dep = T) # Plot 2d with 'graphics' packages plot.biplot.2d = function(scores, g, hl, lambda.ini, lambda.end, col.obj, col.var, var.factor, cex) { plot(scores, xlab=paste('PC', lambda.ini, sep=''...
2009 May 12
1
enum agi interesting problem
...y agi something like that: foreach my $resolver ("e164.arpa", "e164.info", "e164.org") { my @enums = get_enums($phone, $resolver); foreach my $enum (@enums) { $dialstring = $enum . "|90|HL(" . ($maxtime * 60 * 1000) . ":60000:30000)"; $res = $AGI->exec("DIAL $dialstring"); $answeredtime = $AGI->get_variable("ANSWEREDTIME"); $dialst...
2011 May 14
1
Summary.Formula: prmsd and test statistic
...I have a categorical variable and three continuous variables. I am analyzing my continuous variables on the basis of my categorical variables. radioanal <- function(a) { #Educational status first - pulling variables from my database. categorical is 13 = Edu. numerical is 48=Kyph, 50=Vert, 53=HL. a1= a[,c(13,48,50,53)] #make sure they are in numeric form a2= transform(a1, Kyph=as.numeric(as.character(Kyph)), Vert=as.numeric(as.character(Vert)), HL=as.numeric(as.character(HL))) #see boxplots of the individual variables boxplot(a2$Kyph~a2$Edu, main="Education vs Kyphosis angle",...
2018 Jul 25
2
Question about target instruction optimization
This is a question about optimizing the code generation in a (new) Z80 backend: The CPU has a couple of 8 bit physical registers, e.g. H, L, D and E, which are overlaid in 16 bit register pairs named HL and DE. It has also a native instruction to load a 16 bit immediate value into a 16 bit register pair (HL or DE), e.g.: LD HL,<imm16> Now when having a sequence of loading two 16 bit register pairs with the *same* immediate value, the simple approach is: LD HL,<imm16>...
2013 Feb 02
1
[LLVMdev] Trouble with instructions for lowering load/store.
...xPattern I'll have other problems - not all instruction can select in InstructionSelection pass. My work place here: https://github.com/earl1k/llvm-z80 Example of some load instructions for Z80 CPU with opcode: Opcode Instruction node pattern 0x46 LD $dst,(HL) (set GR8:$dst, (load HL)) 0x0A LD A,(BC) (set A, (load BC)) 0x1A LD A,(DE) (set A, (load DE)) 0x3A LD A,($src) (set A, (load i16imm:$src)) Target Description file: ... let canFoldAsLoad = 1, isReMaterializable = 1 in...
2012 Apr 25
1
[LLVMdev] LLVM Backend for Z80. ADD -> replaced -> OR
...h llc -filetype=asm -march=z80 a get this .s file: >> >> .file "simple4.bc" >> .text >> .globl simple >> .type simple, at function >> simple: # @simple >> # BB#0: # %entry >> ld HL, 8 >> add HL,SP <--- problem line >> ld DE, 1 >> ld BC, 2 >> ld (SP+6), BC >> ld B, H >> ld C, L >> or BC, DE >> ld (SP+4), BC >> ld (HL),64 >> ld D, H >> ld E, L >> ld BC, (SP+6) >> or DE, BC &g...
2002 Feb 22
2
Problems running HL with todays wine snapshot
Hi, I tried to get HL running with Wine, but some problems occured: With fresh HL-Installation it keeps asking me for the HL-CD even if I mounted it correctly. Drive setup of wine is correct (isn't complaining about a missing drive) I read that installing 1.1.0.8 helps, so I did, but with this patch HL is not even...
2013 Apr 26
7
passwordless ssh
...le Groups "Puppet Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-users+unsubscribe@googlegroups.com. To post to this group, send email to puppet-users@googlegroups.com. Visit this group at http://groups.google.com/group/puppet-users?hl=en. For more options, visit https://groups.google.com/groups/opt_out.
2011 Aug 08
12
Hash Interpolation inside double quotes?
...scribed to the Google Groups "Puppet Users" group. To post to this group, send email to puppet-users@googlegroups.com. To unsubscribe from this group, send email to puppet-users+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en.
2019 Nov 06
7
printer only prints one page, if anything
...e: > On Wed, 6 Nov 2019, Michael Hennebry wrote: > > >On Sun, 3 Nov 2019, Jon LaBadie wrote: > > > >>Have you tried adding the Brother CUPS and/or generic LPR software? > >> > >> https://support.brother.com/g/b/downloadtop.aspx?c=us&lang=en&prod=hll2360dw_us > > > >I've been trying to folow directions, but no go. > >The bad ELF interpreter really through me for a loop: > > > >[root at localhost drv]# rpm -ihv --nodeps ~hennebry/Downloads/*.rpm > >Preparing... > >################################# [...
2010 May 08
7
puppet and ubuntu 9.04
...scribed to the Google Groups "Puppet Users" group. To post to this group, send email to puppet-users@googlegroups.com. To unsubscribe from this group, send email to puppet-users+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en.
2001 Mar 25
1
Wine + HL(CS) + V3 = opengl mode not supported !?
K I finally got HL to start correctly by not using my installed win98 as base. Now when I try to join a game in Counterstrike I get an "selected opengl mode not supported by your hardware" error from HL. This is only the case when I select the 3DfxMiniGL Driver (as I got a voodoo3). With Default opengl...
2011 Aug 03
14
[root :to => "home#index"] not working
...group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
2013 Jan 29
10
Puppet service
...le Groups "Puppet Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-users+unsubscribe@googlegroups.com. To post to this group, send email to puppet-users@googlegroups.com. Visit this group at http://groups.google.com/group/puppet-users?hl=en. For more options, visit https://groups.google.com/groups/opt_out.