search for: nospac

Displaying 12 results from an estimated 12 matches for "nospac".

Did you mean: nospam
2001 Feb 20
1
man pages screwed
Hi all. I just got openssh 2.5.1p1 and when I installed it, it's man pages doesn't seem to be formatted right. I'm on Solaris 8. Here is how it looks: man ssh Reformatting page. Please Wait... done (Secure Shell) is a program for logging into a remote machine and for executing commands on a remote machine. It is intended to replace rlogin and rsh, and provide secure encrypted
2001 Feb 07
2
Patch for unformatted manpages
...pport: $AFS_MSG" diff -urN openssh_cvs/mdoc2man.pl openssh_work/mdoc2man.pl --- openssh_cvs/mdoc2man.pl Wed Dec 31 18:00:00 1969 +++ openssh_work/mdoc2man.pl Tue Feb 6 23:17:10 2001 @@ -0,0 +1,329 @@ +#!/usr/local/bin/perl + +use strict; + +my ($name, $date, $id); +my ($line); +my ($optlist, $nospace, $enum, $synopsis); + + +$optlist = 0; ### 1 = bullet, 2 = enum, 3 = tag +$nospace = 0; +$synopsis = 0; + +while ($line = <STDIN>) +{ + if ($line !~ /^\./) + { + print $line; + next; + } + + $line =~ s/^\.//; + + next + if ($line =~ m/\\"/); + + $line = ParseMacro($line); + print($l...
2011 Nov 15
2
Regular expressions in R
...ce+LEGAL+Intro+Intro/Intro1+Intro*LEGAL+benefit+benefit/benefit1+product+action*mean+CTA+help+mean*product') I would like to remove the following target strings, either: 1. '+ Intro * LEGAL' which is '+ space name space * space name' 2. '+Intro*LEGAL' which is '+ nospace name nospace * nospace name' Having delved into a variety of sites (e.g. http://www.zytrax.com/tech/web/regex.htm#search) investigating regular expressions I now have a basic grasp, but I am having difficulties removing ALL of the instances or 1. or 2. The code below removes just a SINGLE in...
2004 Jan 12
1
barplots with no lines around each bar
Hi, I want to do a barplot with no black lines drawn around each bar and no space between each bar. I can do the nospace bit but keep getting black line around each bar no matter what I try. Ie. for a red bar I want a red border, for a yellow bar a yellow border and so on. I've tried everything I can think of but no luck. Any suggestions? At the moment I'm using R 5.1 under Redhat Linux 8. Regards, Doug Be...
2018 Jul 04
1
unexpected behavior of unzip with list=T and unzip=/usr/bin/unzip
...=/usr/bin/unzip) produces incorrect output if the zip archive has filenames with spaces, and results in an error if the zip archive includes an archive comment or file comments. Here is some code to reproduce along with the attached files ## (mostly) expected behavior res.intern <- unzip("noSpaces.zip",list=TRUE) res.infozip <- unzip("noSpaces.zip",list=TRUE,unzip="/usr/bin/unzip") identical(res.intern,res.infozip) ## will be false, but expected from ## documentation about dates identical(res.infozip$Name,res.intern$Name) #...
2000 Sep 27
0
FreeBSD Security Advisory: FreeBSD-SA-00:53.catopen
...turn(NLERR); cat->loadType = MCLoadBySet; if ((cat->fd = _open(catpath, O_RDONLY)) < 0) { @@ -351,7 +361,7 @@ cat->numSets = header.numSets; cat->sets = (MCSetT *) malloc(sizeof(MCSetT) * header.numSets); - if (!cat->sets) NOSPACE(); + if (cat->sets == NULL) NOSPACE(); nextSet = header.firstSet; for (i = 0; i < cat->numSets; ++i) { Index: setlocale.c =================================================================== RCS file: /home/ncvs/src/lib/libc/locale/setlocale.c,v...
2011 Nov 11
1
[PATCH] btrfs: rename the option to nospace_cache
Rename no_space_cache option to nospace_cache to be more consistent with the rest, where the simple prefix ''no'' is used to negate an option. The option has been introduced during the -rc1 cycle and there are has not been widely used, so it''s safe. Signed-off-by: David Sterba <dsterba@suse.cz> --- fs/...
2001 Feb 08
1
username check in scp
...stian -- When it is incorrect, it is, at least *authoritatively* incorrect. -- Hitchiker's Guide To The Galaxy -------------- next part -------------- --- scp.c.orig Thu Feb 8 21:20:50 2001 +++ scp.c Thu Feb 8 21:21:21 2001 @@ -207,7 +207,6 @@ char *colon(char *); void lostconn(int); void nospace(void); -int okname(char *); void run_err(const char *,...); void verifydir(char *); @@ -371,8 +370,6 @@ tuser = argv[argc - 1]; if (*tuser == '\0') tuser = NULL; - else if (!okname(tuser)) - exit(1); } else { thost = argv[argc - 1]; tuser = NULL; @@ -395,8 +392,6 @...
2008 Apr 30
2
deliver: handling of quota_full_tempfail and -e
..., I shied away from creating a patch because either there is a mismatch between the documentation and deliver's actual behavior, or I misunderstood the code (likely, since I'm not really a C programmer). The lines in question (in src/deliver/deliver.c) read: | 1003 if (error != MAIL_ERROR_NOSPACE || | 1004 getenv("QUOTA_FULL_TEMPFAIL") != NULL) { Does this mean that the corresponding block gets executed whenever quota_full_tempfail is set? If so, setting it transforms all errors into TEMPFAILs, and not only those relating to quota/space issues. I think dovecot-example.conf...
2012 Aug 03
2
Recursive function calls
My apologies, I know that this is not a new problem, but I'm not sure how to find the answer I want to recursively loop over an object and trim trailing white space. When I use this function on a list of data.frame I get output like this: [1] "c(\" many spaces \", \" many spaces \")" "c(\" many spaces \", \" many spaces
2003 Apr 11
14
PATCH: Forcible delaying of UFS (soft)updates
...eturn (error); --- /usr/src/sys.org/ufs/ffs/ffs_alloc.c Fri Sep 21 21:15:21 2001 +++ ufs/ffs/ffs_alloc.c Sat Apr 12 00:06:20 2003 @@ -125,6 +125,10 @@ ffs_alloc(ip, lbn, bpref, size, cred, bn #endif /* DIAGNOSTIC */ if (size == fs->fs_bsize && fs->fs_cstotal.cs_nbfree == 0) goto nospace; + /* Speedup flushing of syncer_wokitem_pending[*] if low on freespace */ + if (rushjob == 0 && + freespace(fs, fs->fs_minfree + 2) - numfrags(fs, size) < 0) + rushjob = syncer_maxdelay; if (cred->cr_uid != 0 && freespace(fs, fs->fs_minfree) - numfrags(fs,...
2019 Feb 10
21
[PATCH 00/13] Patch blast of salsa wip.testme branch
The contents are the wip.testme branch currently on salsa. I combined the wip.initscript and wip.oxenstored into this and added more things today. I think this is pretty gtg and it's smoke tested (in several cases by scping files around instead of doing package build), so it needs a final extra review and test round before putting it in master branch (which I don't want to force push). I