search for: followng

Displaying 19 results from an estimated 19 matches for "followng".

Did you mean: following
2013 Jan 02
2
loop correction needed
...i have a data frame with 16 lists in it. each list has variable number of lines. i want to create a loop which will start deleting every 32nd line in each list, till the end of each list. more precisely if a list has 200 rows i want to delete row number 32, 64, 96 and so on...for that i created the followng loop. >e<-lapply(seq(1),function(i) rbind(r[[i]][1:31,],(r[[i]][32:nrow(r[[i]]),][-seq(i,nrow(r[[i]]),32),]))) but this loop executes the desired operation on the list at the top and doesnt do anything to the remaining 16 lists. any help?thanks in advance eliza [[alternative HTML...
2008 Sep 08
3
Problem with install Boardcom driver
Hi, I have to install Broadcom driver because the Dell Optiplex 330 running Centos 5.2 is not able to connect to the network. I am trying to install a Broadcom driver, but I get the followng error: [root at localhost tg3-3.85l]# [root at localhost tg3-3.85l]# make make -C /lib/modules/2.6.18-92.el5/build SUBDIRS=/usr/src/Server/Linux/Driver/tg3-3.85l modules make[1]: Entering directory `/usr/src/kernels/2.6.18-92.el5-x86_64' CC [M] /usr/src/Server/Linux/Driver/tg3-3.85l/tg3.o I...
2009 Mar 03
2
openldap 2.4.11 ......unable to start on reboot
Hi I had upgraed my opneldap rpm frm 2.3.27 to 2.4.11 with ehelp of the followng link http://staff.osuosl.org/~jeff/openldap/ I had then rebooted my machine and now whne i am starting ldap [root at system-test40 ldap]# /etc/init.d/ldap start Checking configuration files for slapd: bdb_db_open: database "o=netserv_ldap": unclean shutdown detected; attempting recover...
2017 Nov 20
2
Samba4 server is not accessible for logon from Windows 2008R2 SP1.
...ntlm_check.c:437(ntlm_password_check) ntlm_password_check: NEITHER LanMan nor NT password supplied for user <username> It tell us that Samba4 doesn't wany to accept NTLMv1 authentication. So, it is easy to solve (as was in my case) . You should put to smb.conf to [general] section the followng line: ntlm auth = yes also I set max protocol = SMB3 but I think that it is not important for this case. After changing smb.conf restarting of Samba4 services are necessary. So I can mark the topic as Solved ! 2017-11-19 17:47 GMT+03:00 CpServiceSPb . <cpservicespb at gmail.com>: &g...
2005 Sep 06
1
Can get IAX connection but no SIP connection?
Ok I have a box with 2 nics, one "outside" and one "inside" (192.168.8.x) I want to get connections for sip and iax on the outside connection I have a firewall on the box but have opened the followng ports pbx 5060-5070 udp + tcp pbx 4569 udp pbx 5036 tcp pbx 2727 udp pbx 10000-20000 udp pbx 69 udp This allows me to connect with iax but sip fails registration with a 408. I watch the console and don't see a registration reuqest come in. I also made an entry in sip.conf to for bindaddr = m...
2008 Mar 04
0
[LLVMdev] llvm-gcc 4.2 building failed on x86-64
Hi Sheng Am Dienstag, 4. März 2008 schrieb Zhou Sheng: > Current llvm-gcc 4.2 building failed on X86-64, here is the dump I am not followng head closely but may it be that the current head still doesn't support amd64 proper: gcc README.LLVM: "When targeting non-darwin X86-64/AMD-64/EM64-T, configure with --disable-shared. The LLVM X86-64 backend doesn't support PIC codegen on non-darwin systems yet. If you get a build...
2009 Dec 26
1
if else does not return right value
...n. The following illustrates the problem > x <- as.matrix(read.table("test.txt")) > x V1 V2 V3 [1,] 47 1 43 [2,] 83 2 42 [3,] 1 3 41 [4,] 39 4 40 [5,] 23 5 39 [6,] 23 6 38 [7,] 39 7 37 [8,] 32 8 36 [9,] 73 9 35 [10,] 124 10 34 Specifying the followng condition, if ( x <20){ y <- x +100 } else { y <- x -100 } > y V1 V2 V3 [1,] -53 -99 -57 [2,] -17 -98 -58 [3,] -99 -97 -59 [4,] -61 -96 -60 [5,] -77 -95 -61 [6,] -77 -94 -62 [7,] -61 -93 -63 [8,] -68 -92 -64 [9,] -27 -91 -65 [10,] 24 -90 -66 The output generated co...
2001 Sep 25
1
blues in c
G'Day, I'm a little confused why the c function has the followng effect on classes - is this a feature ? My workround [ class(cc) <- c("POSIXt", "POSIXct") ] seems to do the job. Many thanks Bernie McConnell "R version 1.3.1, 2001-08-31" on NT > aa <- as.POSIXct("2001-09-23") > bb <- as.POSIXct("2...
2005 Jun 04
1
can R do Fixed-effects (within) regression (panel data)?
...876 -.271718 .3188907 -------------+---------------------------------------------------------------- sigma_u | .32460315 sigma_e | .35099001 rho | .46100216 (fraction of variance due to u_i) 2) can R do Fixed-effects (within) regression as Stata's xtreg? the followng example is from "Introductory Econometrics: A Modern Approach" by Jeffrey M. Wooldridge Chapter 14 - Advanced Panel Data Methods use http://fmwww.bc.edu/ec-p/data/wooldridge/JTRAIN iis fcode tis year xtreg lscrap d88 d89 grant grant_1, fe Fixed-effects (within) regression...
2003 Dec 14
3
Problem with data conversion
Hi All: I came across the following problem while working with a dataset, and wondered if there could be a solution I sought here. My dataset consists of information on 402 individuals with the followng five variables (age,sex, status = a binary variable with levels "case" or "control", mma, dma). During data check, I found that in the raw data, the data entry operator had mistakenly put a "0" for one participant, so now, the levels show > levels(status) [1...
2008 Mar 04
3
[LLVMdev] llvm-gcc 4.2 building failed on x86-64
Current llvm-gcc 4.2 building failed on X86-64, here is the dump information: xgcc -B/home/zsth/projects/llvm.org/build/cfe4.2obj/./prev-gcc/ -B/home/zsth/projects/llvm.org/install/x86_64-unknown-linux-gnu/bin/ -I../../../cfe4.2/libcpp -I. -I../../../cfe4.2/libcpp/../include -I../../../cfe4.2/libcpp/include -DENABLE_LLVM -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes
2007 Jun 21
0
config file questions
...168.1.* :order: deny allow I have this config file on 2 app servers running rails. The 2 servers are running behind a load balancer. I''m starting the backgroundrb server on the one server with the ip of 192.168.1.101. Each time I try to call an action that uses backgroundrb I get the followng error. If I''m using druby, why do I get the following error message? drbunix:///tmp/backgroundrbunix_localhost_2000 - # Doesn''t the error tell me that I''m using drbunix? I''ll also post my backgroundrb_sever.log. I''m stumped and very confused on what...
2017 Nov 20
0
Samba4 server is not accessible for logon from Windows 2008R2 SP1.
...t; ntlm_password_check: NEITHER LanMan nor NT password supplied for > user <username> > > It tell us that Samba4 doesn't wany to accept NTLMv1 authentication. > > So, it is easy to solve (as was in my case) . > You should put to smb.conf to > [general] section the followng line: > ntlm auth = yes > > > also I set max protocol = SMB3 > but I think that it is not important for this case. > > After changing smb.conf restarting of Samba4 services are necessary. > > So I can mark the topic as Solved ! The correct cure is to make your 2008R2...
2009 Jul 13
2
Quicken 2009 (german) and wine 1.1.25
Hello all, I'm a Wine newbie who tried to get Quicken 2009 (german) installed on a openSUSE 11.1 box. This is what I did according to the guy who succeeded in getting it up and running: 1) Start with a fresh Wine Profile 2) Follow the Gecko trick (not sure if needed was done for another app) http://wiki.winehq.org/Gecko 3) From winetricks install corefonts and vcrun6 4) From winetricks
2010 May 07
0
Dovecot version mismatch - after restart
Getting the followng error when managesieve is enabled. Any other post I've read says this problem is because the service hasn't restarted after upgrade. I've restarted dovecot & postfix many times, reboot machine too. Still get the error. Racking my brains on this!! May 7 13:21:19 drizzle dovecot: do...
2004 Dec 28
14
DHCP
Good day to all. I don''t like to Post unless I am really stuck. Guess what? Redhat with Shorewall. Been using this for years. I have a new client that we have setup with Redhat and Shorewall. The problem is that his outside address (ETH0 = NET) is dynamic (i.e. DHCP enabled). All the rules work fine when we use a STATIC address on Eth0, so we know the rules, filters, tos etc work fine
2009 Mar 31
9
Hwo to disable the polling function of mac_srs
In crossbow, each mac_srs has a kernel thread called "mac_rx_srs_poll_ring" to poll the hardware and crossbow will wakeup this thread to poll packets from the hardware automatically. Does crossbow provide any method to disable the polling mechanism, for example disabling the this kernel thread? Thanks Zhihui -------------- next part -------------- An HTML attachment was scrubbed... URL:
1997 Oct 03
67
SAMBA
On Fri, 3 Oct 1997, Daniel Feenberg wrote: > Gosh, you are doing well at a project that I gave up on about a year > ago. I only wish you were close enough to do some consulting for us. I guess so do I ;-) Using the new approach I posted to samba-list earlier today, it is not really all that tricky any more. Watch for my reports on the list, you may be able to implement what I've done
2003 Oct 27
92
Help
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 dragen@pbsi.org ?rta: | I am hacing trouble. I can see my linux box from my windows box, I can connect | and browse but I cant delete or modify files. Do I have something wrong? | | The is my smb.conf | | [global] | netbios name = dragenlinux | server string = "DragenLinux" | workgroup = WORKGROUP | security = share | log file =