search for: alreays

Displaying 20 results from an estimated 29 matches for "alreays".

Did you mean: alreay
2006 Jul 27
1
Flex and Rails
Hello everyone. Sorry if this was posted alreay. I tried to search the forum, but the search feature doesn''t appear to work. I was looking for articles about building RoR/Flex applications and found the following URL: http://www.liverail.net/articles/2006/05/06/rubyonrails-1-1-and-flex-2-0-pt-2 The problem is most of the website doesn''t appear to work now. Does anyone
2006 Jun 21
3
commonly used nomenclature
Hello I wonder what the commonly used nomenclature is within the field of emulators for a) The software that constitutes the emulator itself b) The software that runs on top of the emulator I hoped to find a single noun, so I don't have to use the rather long sentences as above everywhere I want to refer to one of the two softwares. Greetings Flo
2009 Jul 15
1
Security Policy.
Hello everyone, I'm actually sharing using samba three folders with some important content inside of it. I would like to know if it's possible to log every file read, write, delete, etc. I've been looking on the web and found that SELinux maybe is the answer, I've already installed everything but I have no clue on how to work with this. Does anybody alreay have
1999 Dec 01
2
R and XML -- a near perfect combination?
Please ignore my ignorance, I'm new to R, but starting a longish project that will use R a lot. (a computer scientist learning about stats at the same time). Did anybody alreay write a XML parser for R? XML, as we will have tons of data-interchange with all sorts of other programs and XML is good for giving meaning to raw data. I checked the FAQs and the documentation, but didn't find
2009 Aug 16
3
userdel without -r switch
Hi how do I tell with user type to use userdel with -r short of using exec type? i have a user account called `foo'' so i created a test puppet file local to the system called test.pp # cat test.pp user {"foo": ensure => absent, managehome => true, } when I apply it on solaris or linux the userdel does not use the `-r'' switch
2004 Sep 10
1
Using Samba over VPN - shares disconnect on Windows clients
I am running Poptop 1.1.4 VPN server, Samba 3.0.6, RH 9 (2.4.20-8 patched for mppe-mppc). When the end user connects via VPN, they can create a share to the samba shared folder that was created. When they clost the explorer window, then reopen the shared drive from the "My Computer" view, the share can not be re-opened with the error that the mapped drive is alreay in use. I have
2018 Jun 06
2
[RFC][SVE] Supporting SIMD instruction sets with variable vector lengths
Hi David, >>> The name "getSizeExpressionInBits" makes me think that a Value >>> expression will be returned (something like a ConstantExpr that uses >>> vscale). I would be surprised to get a pair of integers back. Do >>> clients actually need constant integer values or would a ConstantExpr >>> sufffice? We could add a ConstantVScale or
2007 Oct 20
2
OggPCM family
In one of the last monthly meetings it was decided that OggPCM is ready and all it needs is an implementation (for instance, in ogg123). The problem is that nobody seems available to do it. If either Martin or Sampo would like to work on it, I believe nobody will oppose. CMML and Skeleton implementations are far more urgent right now, though. I have changed the main page in the XiphWiki to
2008 Jul 09
0
Help navigating documentation for descriptive statistics
I am still trying to get used to R, and apparently haven't found the right place in the documentation to see how to do what I want in R. If I were to do this in C++, there'd be no problem: I'd write it all myself, but I want to learn R well enough it can save me a lot of coding time. Here is the first task I set for myself. I have a datasource (a vector of values). I want to
2006 Apr 18
0
configure sys/audit.h WARNING
...than that, it appears to be working. The lack of a prototype in scope for the emulated strerror() function causes a lot of warnings over printf formats. Fortunately, sizeof(char *) == sizeof(int), so it ends up working anyway, but you may want to fix that. I did have one problem with strtonum() alreays returning "too small", even if the input value is in range or ridiculously too large. E.g. ssh-keygen -b 99999 prints "Bits has bad value 99999 (too small)". I suspect this is a GCC long long bug; I'm using a truly ancient version of gcc. Changing strtonum() to use "lo...
2007 Oct 03
0
[ wxruby-Patches-14416 ] Patch for Bug [#12747] Crash on exit
Patches item #14416, was opened at 2007-10-03 15:59 You can respond by visiting: http://rubyforge.org/tracker/?func=detail&atid=220&aid=14416&group_id=35 Category: None Group: None Status: Open Resolution: None Priority: 3 Submitted By: Christopher Bludau (count_cb) Assigned to: Nobody (None) Summary: Patch for Bug [#12747] Crash on exit Initial Comment: Patch for the bug [#12747]
2006 Jun 17
1
1.0 beta 9 problems
Two problems with this new beta not found in beta 8. 1. mbox_from_create error This is the configure string I use, and I paste the make error message below. I have to use "--with-storages=maildir,mbox" to get around the error. ./configure \ --prefix=/opt1/dovecot \ --localstatedir=/var \ --without-shadow \ --without-cyrus-sasl2 \ --without-pop3d \ --without-gssapi \ --disable-ipv6 \
2020 Feb 15
0
improve MTU probe performance
Hi all I try to use tinc within my network, but I find almost all mtu probe take 30 times to fix, it's never really fix at all. after read code, i think the problem case by function receive_udppacket(); and line : origin -= MTU / 64 + 20; here , MTU / 64 + 20 =43, this means, every time we send a mtu probe packet, we get a reply smaller then what we send. review the commit log, the line
2017 Jun 12
1
Accented letters in shared USB drive (was: Share USB pendrive in ADSL router)
Hi Rodolfo (sorry for dup email), Rodolfo Medina via samba <samba at lists.samba.org> writes: > ...For example, when I copy the ~/università to /mnt/shared, I get: > > universit\ �/ > > Or, if in /mnt/shared I do: `touch affinché', I get: > > affinch\ � > > I've never had this problem before, in my Linux home directory. Please suggest > whoever can
2007 Nov 06
4
help on helper module inclusion/extension
I want to include helper methods included to my Camping App from by requiring an external file but I can''t seem to include helpers from another module. module CampingHelpers def self.included(base) base::Helpers.send(:include, Helpers) end module Helpers def show_test p "test" end end end Camping.goes :CampingApp ... module
2011 Mar 31
3
[PATCH 1/3] VFS/ioctl: Add punching-hole support to ioctl().
We're currently support two paths from VFS to preallocate unwritten extents(from FS_IOC_RESVSP, or fallocate()), likewise, behavior of punching-hole should be treated as the same, this patch tries to teach file_ioctl() to handle FS_IOC_UNRESVSP, underlying filesystem like ocfs2 is wise enough to do the rest of work;-) Signed-off-by: Tristan Ye <tristan.ye at oracle.com> --- fs/ioctl.c
2011 Mar 31
3
[PATCH 1/3] VFS/ioctl: Add punching-hole support to ioctl().
We're currently support two paths from VFS to preallocate unwritten extents(from FS_IOC_RESVSP, or fallocate()), likewise, behavior of punching-hole should be treated as the same, this patch tries to teach file_ioctl() to handle FS_IOC_UNRESVSP, underlying filesystem like ocfs2 is wise enough to do the rest of work;-) Signed-off-by: Tristan Ye <tristan.ye at oracle.com> --- fs/ioctl.c
2003 Oct 24
6
AGI questions..
Hi, First off, can AGI scripts be created using PHP??.. This is where our skills are and since PHP can be run from a command line it would be easier to create and maintain.. I understand that AGI works using STDIN and STDOUT, so does that mean that I would simply "echo" the standard Asterisk commands that I wanted Asterisk to execute and it would process them? Are any call
2018 Jun 05
3
[RFC][SVE] Supporting SIMD instruction sets with variable vector lengths
Hi David, Thanks for taking a look. > On 5 Jun 2018, at 16:23, dag at cray.com wrote: > > Hi Graham, > > Just a few initial comments. > > Graham Hunter <Graham.Hunter at arm.com> writes: > >> ``<scalable x 4 x i32>`` and ``<scalable x 8 x i16>`` have the same number of >> bytes. > > "scalable" instead of "scalable
2006 May 28
6
Problems to find a usefull wine configuration
Dear good wine people, I wanted to use cedga or wine so i downloaded all the required packages (mesa, SDL, freetype, etc) and downloaded wineCVs.sh and runned it. I tryied downloading two profiles and compiling them and got two different results. Profile 1: cedega --------------------- I compiled and installed without problem I configured cedega to include its own virutal disc, i copied all the