search for: alocated

Displaying 20 results from an estimated 47 matches for "alocated".

Did you mean: allocated
2005 Nov 07
3
R thread safe
Dear R-dev, I would like to accelerate my R computation by using parallel OpenMP compilers (e.g from Pathscale) on a 2-processor AMD server and I would like to know whether R is a tread safe library. The main kernel of the OpenMP parallelization is a C SEXP function that performs the computational routine in parallel with: ******************* SEXP example(SEXP list, SEXP expr, SEXP rho) {
2005 Nov 07
4
Time-measurement in milliseconds
Hi there I'm loking for a time-measurement to measure time-differences in milliseconds. On my search, I only found the following: - package "base": Sys.time() -> only second-accuracy - package "R.utils": System$currentTimeMillis() -> returns integer of milliseconds, but accuracy is only whole seconds too. At the moment I run every bit of code to measure
2008 Sep 03
3
mysql
I need to replicate MySQL DB of mulltiple server on SiteA to my DR-Site Site_B... all DB are alocated on RHEL,SuSE,Centos,Debian, FreeBSD servers. I need a script to take Multiple MySql DataBase Backup and then import to SiteB, the replica can be done as cold or hotbackup and cron it Thanks -- Madunix_at_Gmail Sysadmin "Computers are useless. They can only give you answers" - Pablo Pic...
2015 Jan 05
2
Don't use .local
Sending to you without the mailinglist is on the same level as proper administration of a network ? This is new to me and I'm sure to others too. What might be new to you is that Avahi runs on the domain it finds and not what it expects. That is how the protocol works, it searches, sees the domain of the protocol and goes on. So all Avahi users in a network will run on .alocal is you set the
2015 Jan 05
3
Don't use .local
I'm not missing the point, the point is that you actually cannot tell why .local should stay local always and forever. That's my point, you don't know either as you ask yourself already, "why should I config Avahi myself ?". Indeed stay in control of your network or stay out. 2015-01-05 13:02 GMT+01:00 Rowland Penny <rowlandpenny at googlemail.com>: > On 05/01/15
2015 Jan 05
5
Don't use .local
Micrososft changed this statement a several of times. The only reason they did is because people using Apple are complaining some services are not working "well" on their OSX and it's a pain to change the DNS name of your Business Server on Windows Server As said before, running on .alocal for Avahi works perfectly and mDNS is only for small networks, and setting up some proper DNS
2007 Aug 10
2
Cleaning up the memory
Hi, I have 4 huge tables on which i want to do a PCA analysis and a kmean clustering. If i run each table individually i have no problems, but if i want to run it in a for loop i exceed the memory alocation after the second table, even if i save the results as a csv table and i clean up all the big objects with rm command. To me it seems that even if i don't have the objects anymore, the
2006 May 16
2
Large database help
Hello all. I have a large .txt file whose variables are fixed-columns, ie, variable V1 goes from columns 1 to 7, V2 from 8 to 23 etc. This is a 60GB file with 90 variables and 60 million observations. I'm working with a Pentium 4, 1GB RAM, Windows XP Pro. I tried the following code just to see if I could work with 2 variables but it seems not possible: R : Copyright 2005, The R Foundation
2015 Jan 05
0
Don't use .local
On 05/01/15 11:51, Matt . wrote: > Sending to you without the mailinglist is on the same level as proper > administration of a network ? This is new to me and I'm sure to others > too. No of course it isn't, but it shows that it is very easy to make an error even when you are a super-duper sysadmin. :-) > > What might be new to you is that Avahi runs on the domain it finds
2010 Jan 23
5
authentication failure
I noticed that my server has a lot ca. 1000x auth failure from different alocated in China / Romania and Netherlands per day since 3 days It looks to me like somebody was trying to get into server by guessing my password by brute force. what would be the best to stop this attack and how? the server running apache mysql and ftp PORT STATE SERVICE 21/tcp open ftp 80/tcp o...
2015 Jan 05
0
Don't use .local
On 05/01/15 12:13, Matt . wrote: > I'm not missing the point, the point is that you actually cannot tell > why .local should stay local always and forever. That's my point, you > don't know either as you ask yourself already, "why should I config > Avahi myself ?". Indeed stay in control of your network or stay out. NO, I do not ask myself "why should I
2005 Oct 11
3
VPN through PPP
Hi all, This is probably not the right place for this question, but maybe someone can help me out. I am trying to setup a VPN between two private addresses, using iproute2 (which is my only excuse for mailing this list). The setup is as below : eth0 ppp0 Wireless ppp0 eth0
2015 Jan 05
2
Don't use .local
I'm not sure if I would not advise to use .local, sometimes it seems to be needed to make a proper location for a running domain where even .cityname cannot accomplish what you need. To be honest I don't run Avahi and will not either. Avahi and mdns are actually only designed because of of bad DNS management by system administrators and have (Apple) users use all their features, the same
2013 Aug 05
2
RemoteForward and dynamically allocated listen port
...s idea of a joke? Presumably not--there are some technical obstacles to reporting it to the remote process. I'd like to help solve that problem. The natural way to me would be to extend the syntax of RemoteForward to allow ENV_VAR:example.com:1234. This would set $ENV_VAR to the dynamically alocated port in the remote process. However, the protocol passes the listen port as a u_int. A hack might be to pack the env var name into the listen address and set the listen port to a special value to indicate this, but I don't know if this is playing too fast and loose. A cleaner solution would...
2015 Jan 05
0
Don't use .local
On 05/01/15 11:34, Matt . wrote: > Micrososft changed this statement a several of times. > > The only reason they did is because people using Apple are complaining > some services are not working "well" on their OSX and it's a pain to > change the DNS name of your Business Server on Windows Server > > As said before, running on .alocal for Avahi works perfectly
2015 Jan 05
0
Don't use .local
this is not just a MS change.. more info see : http://en.wikipedia.org/wiki/.local Louis >-----Oorspronkelijk bericht----- >Van: rowlandpenny at googlemail.com >[mailto:samba-bounces at lists.samba.org] Namens Rowland Penny >Verzonden: maandag 5 januari 2015 12:43 >Aan: Matt . >CC: samba at lists.samba.org >Onderwerp: Re: [Samba] Don't use .local > >On
2011 Jan 14
3
RSQLite - How to express(or save) a dataframe as an output?
Dear R helpers Suppose following is an output due to some R process. I wish to save it as a table in 'temp.db' df <- data.frame(x = c(5, 4, 3, 11), y = c(25, 16, 9, 121))     library(RSQLite)     write('** Initializing','')     drv <- dbDriver("SQLite", shared.cache = TRUE)     con <- dbConnect(drv, dbname = "temp.db",
2003 Oct 27
4
Need help with HTB
Hello, 1. I currently have a 128kbps cable link to the internet..and I''m sharing this connection with others. I''ve made the following script(for alocating bandwidth depending on the services used: browsing, squid, games like counter-strike, icmp, ssh), which unfortunately isn''t working very well as the response times I''m getting upon pinging the server
2009 Oct 07
1
Which is fastest for Xen disks: LVM, Qcow2 or Image-based VM?
Is there any benchmark or does anyone have tried which one is fastest? Regards, -- Thiago Vinhas de Moraes ________________________________________________________ SimpleWeb Tecnologia Inovativa Soluções em cloud computing e gerenciamento de TI Av. das Américas, 500 - Bloco 23 / Sala 215 - Rio de Janeiro - RJ Tel/Fax: 0800-8880-WEB / (21) 3002-0377 Celular: .(21)
2007 Jul 04
0
ANNOUNCEMENT : A2Billing (Asterisk2Billing) - V1.3.0 STABLE (Yellowjacket)
I am pleased to announce the new version of Asterisk2Billing, V1.3.0 STABLE (Yellowjacket) PROJECT URL : http://trac.asterisk2billing.org A2Billing has completely re-written some its modules such as : Invoicing, template management with Smarty, the call-back, added new methods of online payment integration with Moneybookers and Authorize.net in addition to Paypal. A2Billing have also improved the