search for: osn

Displaying 20 results from an estimated 21 matches for "osn".

Did you mean: on
2008 Mar 08
0
Failed to Set UID Error and Can't become connected user Error
...008/03/07 10:32:10, 0] lib/fault.c:dump_core(181) dumping core in /var/log/samba/cores/smbd [2008/03/07 10:32:10, 0] smbd/service.c:make_connection_snum(928) Can't become connected user! [2008/03/07 10:32:12, 1] smbd/service.c:make_connection_snum(1033) drn (10.200.0.8) connect to service osnopen initially as user smbuser (uid=508, gid=508) (pid 834) [2008/03/07 10:32:27, 1] smbd/service.c:make_connection_snum(1033) drn (10.200.0.8) connect to service OSN initially as user drn (uid=502, gid=508) (pid 834) [2008/03/07 10:32:27, 0] lib/util_sec.c:set_effective_uid(205) setresuid fai...
2016 Feb 24
1
%OS on output
R help on 'strptime' has the following in "Details" section. Specific to R is ?%OSn?, which for output gives the seconds truncated to ?0 <= n <= 6? decimal places (and if ?%OS? is not followed by a digit, it uses the setting of ?getOption("digits.secs")?, or if that is unset, ?n = 3?). In reality, for output, if '%OS' is not followed by a digit and getOpti...
2009 Jul 31
1
[PATCH] Use grub entries to find Linux kernels
...ub_kernel; + eval { + $grub_kernel = $g->aug_get("$bootable/kernel"); + }; + if($@) { + warn __x("Grub entry {title} has no kernel", + title => $config{title}); + } - my $osn = $os->{os}; - if ($osn eq "linux") { - # Installed kernels will have a corresponding /lib/modules/<version> - # directory, which is the easiest way to find out what kernels - # are installed, and what modules are available. - foreach ($g->ls ("/lib/modules")) { -...
2009 Jul 20
1
[PATCH] Replace 'distrofamily' with feature tags
...gt;{package_format} + if exists $r->{root}->{package_format}; + $r->{package_management} = $r->{root}->{package_management} + if exists $r->{root}->{package_management}; } sub _assign_mount_points @@ -1097,8 +1118,8 @@ sub _check_for_applications my $osn = $os->{os}; if ($osn eq "linux") { - my $family = $os->{distrofamily}; - if (defined $family && $family eq "redhat") { + my $package_format = $os->{package_format}; + if (defined $package_format && $package_format eq "rpm") { my @li...
2009 Jul 16
1
[PATCH] Differentiate 'distro' and 'distrofamily' in Sys::Guestfs::Lib
...ot}->{osdistro}; + $r->{distrofamily} = $r->{root}->{osdistrofamily} + if exists $r->{root}->{osdistrofamily}; $r->{version} = $r->{root}->{osversion} if exists $r->{root}->{osversion}; } @@ -1063,8 +1097,8 @@ sub _check_for_applications my $osn = $os->{os}; if ($osn eq "linux") { - my $distro = $os->{distro}; - if (defined $distro && ($distro eq "redhat" || $distro eq "fedora")) { + my $family = $os->{distrofamily}; + if (defined $family && $family eq "redhat") {...
2009 Jul 16
1
[REPOST] Differentiate 'distro' and 'distrofamily' in Sys::Guestfs::Lib
I was slightly too quick off the marks with the first patch. This updated patch modifies all of virt-inspector's output types to take account of distrofamily.
2009 Aug 03
1
[REPOST] Use grub entries to find Linux kernels
This is a repost of the patch I sent on Friday. I know it was already ACK'd, but I've changed a fair bit in addition to adding the requested POD. Specifically: I discovered that augeas's grub lens wasn't returning cmdline the way I expected. This is fixed. The kernel package, if known, is output as a property of the kernel. The XML output of virt-inspector is updated with all
2009 May 22
2
[LLVMdev] Arm port
...e making use of outside makefiles in outside sourced > things like Perl. But it would surely need BSD Makefiles for FreeBSD, and I'm > pretty sure for NetBSD also. They're not all that difficult to add in, I could > do that for you if you wanted. > According to an article at OSNews http://osne.ws/gjz Clang (the LLVM's C family frontend) is already being adopted as the C compiler of choice for FreeBSD. However, one of Clang's design principles is IDE integration. Makefiles may soon become a thing of the past for LLVM. Before CMake was adopted by the LLVM team the...
2011 May 01
1
microsecond timestamp support
Does R have support for microseconds in timestamps, e.g. when reading this in "Time","Include","Kind","Duration" 2011-04-01 14:20:36.368324,Y,U,1.03238296509 2011-04-01 14:20:35.342732,Y,C,0.0252721309662 2011-04-01 14:20:34.337209,Y,R,0.00522899627686 Thanks, Joel -------------------------------------------------------------------------- - for hire: mac
2010 Apr 22
2
time difference
Hi, Does anyone know how to take a time difference when the format of the time is as 13:22:23.586? I am trying to take the difference of time between stock transactions and need to keep the three decimal places for seconds. I have tried *diff(strptime(x, "%H:%M:%S.000))*, but apperantly that doesn't work. Carol Gao [[alternative HTML version deleted]]
2003 Jan 14
1
Random number generator in R compared to S
...esults, and pass them back to S-plus? Or is it more efficient to generate all the datasets in S-plus and export them to R? Or anything else? Any hints will be greatly appreciated. O__ ---- Alain Le Tertre c/ /''_ --- Institut de Veille Sanitaire (InVS) (*) \(*) -- 12 rue du val d''Osne ~~~~~~~~~~ - 94415 Saint Maurice cedex FRANCE Voice: 33 1 41 79 67 50 Fax: 33 1 41 79 67 68 email: a.letertre@invs.sante.fr [[alternate HTML version deleted]]
2010 Apr 21
2
[PATCH 1/2] Don't die during inspection if initrd doesn't exist
This fixes a problem where inspection would die if grub.conf referenced a non-existent initrd. Just return an empty initrd instead. --- perl/lib/Sys/Guestfs/Lib.pm | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/perl/lib/Sys/Guestfs/Lib.pm b/perl/lib/Sys/Guestfs/Lib.pm index 5428b10..b5b3906 100644 --- a/perl/lib/Sys/Guestfs/Lib.pm +++ b/perl/lib/Sys/Guestfs/Lib.pm @@
2007 Jun 12
1
Can strptime handle milliseconds or AM/PM?
I'm trying to proess date/time fields from files that were given to me to analyze. Any clues what I'm doing wrong with strptime? This seems to fail the same way under Linux or Windows. For ?strptime would it make sense to explain %OS3 somewhere besides the Examples? > # Why does %OS3 work here? > format(Sys.time(), "%H:%M:%S") [1] "16:45:19" >
2014 Oct 17
1
Re: missing btrfs subvol support
On Friday 17 October 2014 11:25:03 Olaf Hering wrote: > On Thu, Oct 16, Olaf Hering wrote: > > I can probably add a check somewhere to catch the whatever=="@". A > > better fix would be to check if a given subvolume is for the entire > > partition. > > So after talking to David Sterba there is no way to tell if a given > subvolume is for the entire
2011 Feb 15
2
strptime format = "%H:%M:%OS6"
I read a dataset with times in them, e.g., "09:31:29.18761". I then parse them: > all$X.Time <- strptime(all$X.Time, format = "%H:%M:%OS6"); and get a vector of NAs (how do I check that except for a visual inspection?) then I do > options("digits.secs"=6); > all$X.Time <- strptime(all$X.Time, format = "%H:%M:%OS"); and it, apparently, works:
2009 May 22
0
[LLVMdev] Arm port
...akefiles in outside sourced >> things like Perl. But it would surely need BSD Makefiles for FreeBSD, and I'm >> pretty sure for NetBSD also. They're not all that difficult to add in, I could >> do that for you if you wanted. >> > > According to an article at OSNews http://osne.ws/gjz Clang (the LLVM's C family frontend) is already being adopted as the C compiler of choice for FreeBSD. However, one of Clang's design principles is IDE integration. Makefiles may soon become a thing of the past for LLVM. > > Before CMake was adopted by the LLV...
1997 Feb 05
0
bliss version 0.4.0
...lt;Q`6F"F&4DH+#0GWA^E&-83U*X%$H/9RFYN=XX+= Z$7C/"=_(T.YODP<E'';<\WG$:2OG+_GRG[XQ)W(S9*$]Y''WMK]2MG:&VJ3U%[ Z:3.,F5SWB\LEM8G5''G8Z!2BS>PVKA,;B@N+PK!,3M$.;#V/?S+C^''\OWBX%] ZX:.E"GICAF`JK63Q_<U1(:DJ8FN1.J(5#N$_]M7D(R_''M9M:OSN[3-)2O9KT ZP_AJA9^NS&$$1:8@IRAB6A/8WMBN]>9MXE;>T_X4J0]/:DHD#?TI@/A-=1L" Z:DDMJ$_Z\T:,&57/Q3W=4A?3+T[(ZT4$[^)=]H\PDF#*J%\0=?QZRR!B?NWL Z''DY!DE5K=K1AMUYO76:8PBGUL15%>D''23=LLU@[6Y;0WMTX/?6CLC1JQV`''M Z>I=-E"IBO"Y.L6W;<O&(0IS2;ZE.3X]=H&...
2009 Aug 03
1
[PATCH 1/2] Convert all TABs-as-indentation to spaces.
...int *size) { if (n > 0) { argtypes[0] = PA_STRING; diff --git a/daemon/inotify.c b/daemon/inotify.c index 43f282d..4bc6f17 100644 --- a/daemon/inotify.c +++ b/daemon/inotify.c @@ -165,10 +165,10 @@ do_inotify_read (void) int n, r; r = read (inotify_fd, inotify_buf + inotify_posn, - sizeof (inotify_buf) - inotify_posn); + sizeof (inotify_buf) - inotify_posn); if (r == -1) { if (errno == EWOULDBLOCK || errno == EAGAIN) /* End of list. */ - break; + break; reply_with_perror ("read"); goto error; } @@ -190,18 +...
2009 Jul 23
1
[PATCH server] changes required for fedora rawhide inclusion.
...)|eB0$(HtS z;=pV+Cpljd{k(uV+4+)l+u>`9^QF*6DRZjxrP6lxTzb=l!k`)QRb%Svw2HdA%zp at C zY$PX@`=6rRuvOgpC0+hSDEX4}!&eY<D3`@&llJU>^e25<6_|8Ef08JO`e;LYcY<Sl z=5!zV5oh=+%$dHDF+Ooll<H@!PcE;f>Pa=*iWZ~2RlJ@`{EpYV$2tAumR7MX)UV#< z?!ss#clW%G_Z4=(HFh&?^WpA>*~wn)2Z+5b_9NQ1AUapKOsnS`-myvS8y-4K&$B%A zHSgFs_B9WE%RA=AzU85d-29NoF7nU?ZqDVg3p{k5Ti@{Tc^*2&+lEi^P#qq1)Jvyw z_g2W$WW7)0&h<{A(>xJAO&HTf{*4e+2k~9Ut at DI9gVT-IFWXj60%2k^fpv<DA747h z3kzuR!(P-fKh~{_+<#uCvn#F#F?fzA5E?kgWvlM{Qe9{;)di6XWlGp3Dn^OG=uA%g z(CIpyGrZ`E at onm)2`^UDd#?RngZGZtO?a_3;h*4R!c3x&l...
2003 Apr 08
1
Patch for passdb-passwd-file.c
Index: passdb-passwd-file.c =================================================================== RCS file: /home/cvs/dovecot/src/auth/passdb-passwd-file.c,v retrieving revision 1.6 diff -u -u -r1.6 passdb-passwd-file.c --- passdb-passwd-file.c 18 Feb 2003 19:24:44 -0000 1.6 +++ passdb-passwd-file.c 8 Apr 2003 15:59:53 -0000 @@ -28,7 +28,7 @@ crypted_pass = pu->password; scheme =