search for: whatis

Displaying 20 results from an estimated 46 matches for "whatis".

Did you mean: what's
2011 Jan 31
1
DO NOT REPLY [Bug 7941] New: Formatting bug in rsync man page? (man -k, whatis, catman -w)
https://bugzilla.samba.org/show_bug.cgi?id=7941 Summary: Formatting bug in rsync man page? (man -k, whatis, catman -w) Product: rsync Version: 3.0.7 Platform: Sparc OS/Version: Solaris Status: NEW Severity: minor Priority: P3 Component: core AssignedTo: wayned at samba.org ReportedBy: joh...
2008 Feb 20
0
Non-standard S4 behavior
Hi all, I've been trying out the code from Chamber's "Classes and Methods in the S language": http://www.omegahat.org/RSMethods/Intro.pdf >From my session: R> whatis <- function(object) paste( "sdw" ) R> setMethod( "whatis", "vector", function(object) paste( "cswdvcr" ) ) R> dumpMethod( "whatis", "numeric" ) [1] "whatis.numeric.R" But the "whatis.numeric.R" file contains:...
2011 Jan 13
0
Formatting bug in rsync man page? (man -k, whatis, catman -w)
Hi guys, I'm new to this mailing list as I just came across a small problem after installing the rsync package on one of our Solaris 10 machines. I installed rsync package SMCrsync v3.0.7 SPARC and although command man rsync worked, man -k rsync and whatis rsync did not despite the fact that I had run a catman -w to rebuild the windex databases. After reading the catman man page, I suspected it might be due to the formatting of the line following .SH "NAME" in the man page file /usr/local/share/man/man1/rsync.1. I changed it from? rsync \(...
1996 Dec 24
0
Linux Redhat 4.0/3.0.3 makewhatis cron job
There is a serious problem with the makewhatis cronjob under Redhat Linux 4.0/3.0.3. You can use it to overwrite any file on the system. Redhat is aware of the problem, and said they would have some kind of fix by next week which should be plenty of time before this bug is exploitable again. #!/bin/sh # # blowitawaysam # # makewhatis is a sh...
2004 Jan 21
0
Fw: Word-of-the-Day: wiki
hope this help some one else --as it helped me, in undertanding contributions to * wiki pages... Regards! Samuel ----- Original Message ----- From: "whatis.com" <WhatIs-BAD63EB5A68046E1@lists.techtarget.com> To: "whatis.com" <WhatIs@lists.techtarget.com> Sent: Tuesday, January 06, 2004 10:31 AM Subject: Word-of-the-Day: wiki > THE WHATIS.COM WORD-OF-THE-DAY > January 6, 2004 > > wiki > >...
2019 Jul 20
2
Dovecot 2.3.6 on Solaris10: build issues, segfaults
Looking further into this segfault at settings-parser.c:setting_copy():1519 *dest_size = *src_size; *src_size points to type size_t (typedef unsigned long), a 4-byte aligned value consistent with a 32-bit build. This is mismatched with declared type (gdb) whatis src_size type = const uoff_t * (gdb) whatis uoff_t type = unsigned long long (gdb) p sizeof(uoff_t) $1 = 8 resulting in the segfault when *src_size is dereferened. The implied condition of this code segment is typeof(uoff_t)==typeof(size_t) which is clearly not the case. I'm not su...
2004 Dec 17
5
Total newbie here looking to do a VoIP conference call?
I am looking to help out my company find a more budget conscious but reliable way to hold conference calls between 5+ people. 4x a month we hold several hour long conference calls during non-business hours. All of the employees have high speed internet. Currently we dial up an AT&T conf using regular analog phones. I don't have a great grasp as to what Asterick is capable of, but my
2009 Oct 29
5
Summing identical IDs
Hello All, I would like to select records with identical IDs then sum an attribute then and return them to the data frame as a single record. Please consider Acres<-c(100,101,100,130,156,.5,293,300,.09) Bldgid<-c(1,2,3,4,5,5,6,7,7) DF=cbind(Acres,Bldgid) DF<-as.data.frame(DF) So that: Acres Bldgid 1 100.00 1 2 101.00 2 3 100.00 3 4 130.00 4 5 156.00 5
2015 Dec 16
2
samba4 schema for openldap
On 16/12/15 20:40, Таболин Юрий wrote: > 16.12.2015 22:47, Rowland penny пишет: >> On 16/12/15 19:35, Rowland penny wrote: >>> On 16/12/15 19:02, Таболин Юрий wrote: >>>> Hi all. >>>> >>>> I have samba 4.2.3 on freebsd 10.1 server. There are three DC and >>>> about 350 PC on domain. I wrote earlier that samba4 ldap
2015 Dec 16
3
samba4 schema for openldap
On 16/12/15 19:35, Rowland penny wrote: > On 16/12/15 19:02, Таболин Юрий wrote: >> Hi all. >> >> I have samba 4.2.3 on freebsd 10.1 server. There are three DC and >> about 350 PC on domain. I wrote earlier that samba4 ldap performance >> is not enough for me. Now I want to try a server in the middle with >> openldap pcache - ldap cache proxy function. But
2007 Oct 09
4
dom0 boot panic after bfu to b75
After BFU-ing my system to b75 I ended up with a panicing system when booting into Xen: grub> #---------- ADDED BY BOOTADM - DO NOT EDIT ---------- grub> title Solaris on Xen grub> kernel$ /boot/$ISADIR/xen.gz grub> module$ /platform/i86xpv/kernel/$ISADIR/unix /platform/i86xpv/kernel/$ISADIR/unix -B console=ttyb grub> module$ /platform/i86pc/$ISADIR/boot_archive grub>
2004 Nov 01
1
source level debugging with WineLib?
...manually, and added -g. Winedbg can attach to the process, and can even show the stack - but didn't know much beyond that. I tried all the -g variants that I could find, but only -gstabs and -gstabs+ seemed to help. They allowed the debugger to find the correct place in the source, and "whatis" seemed to work - however, if I tried to dereference something, it complained about "no type ...", like this: Wine-dbg>info process pid threads parent executable (all id:s are in hex) 00000008 3 00000000 'Z:\home\s\src\SysSrv \DataDistributionService\DDSServe...
2019 Jul 22
0
Dovecot 2.3.6 on Solaris10: build issues, segfaults
...further into this segfault at > > settings-parser.c:setting_copy():1519 > *dest_size = *src_size; > > *src_size points to type size_t (typedef unsigned long), a 4-byte > aligned value consistent with a 32-bit build. This is mismatched with > declared type > > (gdb) whatis src_size > type = const uoff_t * > (gdb) whatis uoff_t > type = unsigned long long > (gdb) p sizeof(uoff_t) > $1 = 8 > > resulting in the segfault when *src_size is dereferened. The implied > condition of this code segment is typeof(uoff_t)==typeof(size_t) which >...
2011 Oct 03
1
hdr SHA1: BAD, not hex
Got a problem with one workstation. What I'm seeing, from a yum update (saw it with make whatis first): <snip> Running rpm_check_debug error: rpmdbNextIterator: skipping h# 1211 hdr SHA1: BAD, not hex <repeated many times> <snip> ERROR with rpm_check_debug vs depsolve: libicui18n.so.36 is needed by boost-1.33.1-10.el5_7.3.i386 libicuuc.so.36 is needed by boost-1.33.1-10.e...
2012 Nov 17
1
fold change calculation
Hi, I am really new to edge R and I have used it to calculate gene expression with RNASeq data comparing 2 different conditions. I used a P value of 0.05 and I got a list of DGE contigs up and down regulated. WhatI was wondering is how to convert the logFC value that appear in the output of the exact test. Is it a log2 base? Is fold 2 change considered as cutoff? I am trying to find this info on
2015 Dec 16
2
samba4 schema for openldap
On Wed, Dec 16, 2015 at 12:40 PM, Таболин Юрий <tabolin at speechpro.com> wrote: > 16.12.2015 22:47, Rowland penny пишет: > >> On 16/12/15 19:35, Rowland penny wrote: >> >>> On 16/12/15 19:02, Таболин Юрий wrote: >>> >>>> Hi all. >>>> >>>> I have samba 4.2.3 on freebsd 10.1 server. There are three DC and about
2010 Sep 30
4
interactive session
...ALSE, sep="\t", dec=",", blank.lines.skip=FALSE) rownames(t)<-as.Date(t[,1],"%d.%m.%Y") colnames(t)<-c("date","start","high","low","end","w.average","lot", "volume") x<-as.xts(t) whatis(x)    . . [[alternative HTML version deleted]]
2010 Aug 31
1
ez version 2.0
...ect (eg. Participant) and no numeric predictors. New in version 2.0 - ezDesign(), a function to visualize the balance of data across a specified experimental design (useful for diagnosing missing data) - ezPrecis(), a function to summarize a data set (inspired by summary(), str(), and YaleToolkit:whatis() ) - ezBoot() and ezPlotBoot(), functions to compute and visualize (respectively) bootstrapped confidence intervals for either cell means or predictions from a mixed effects model - ezANOVA() updated with an improved measure of effect size: generalized eta-square. - ezPlot() updated to permit simu...
2010 Aug 31
1
ez version 2.0
...ect (eg. Participant) and no numeric predictors. New in version 2.0 - ezDesign(), a function to visualize the balance of data across a specified experimental design (useful for diagnosing missing data) - ezPrecis(), a function to summarize a data set (inspired by summary(), str(), and YaleToolkit:whatis() ) - ezBoot() and ezPlotBoot(), functions to compute and visualize (respectively) bootstrapped confidence intervals for either cell means or predictions from a mixed effects model - ezANOVA() updated with an improved measure of effect size: generalized eta-square. - ezPlot() updated to permit simu...
2005 Sep 24
1
Encrypt some services with ipsec
Hi all, I have two prodction servers with FreeBSD 5.4 (all security patches are applied). They running some services like dns, ssh, http, ftp, etc. But I woukd like to encrypt some services for some hosts with ipsec when it is accessed. For example: - DNS resolution: not encrypted. - DNS replication master-slave: encrypted by ipsec. - Telnet: encrypted by ipsec for some hosts. Deny