Displaying 20 results from an estimated 347 matches for "sloppi".
Did you mean:
sloppy
2001 Jun 10
1
documentation and \sloppy (PR#976)
Hi
When preparing documentation using Rd2dvi sometimes we get "overflow" on
some lines. The consequence is that in the documentation there are some
lines where words are not hyphenated or moved. The final document has some
lines with more columns than the rest of the text.
This happens when we use \code{} (which probably calls the \tt in latex).
I've been checking the documentation
2007 May 15
1
zisofs-tools sloppy option does not work
This isn't a syslinux issue, but I don't see a mailing list setup for
the zisofs tools. Forgive me if this is sent to the wrong place.
The sloppy option does not work as documented in the mkzftree man page.
Here is the patch I used to enable it.
--- zisofs-tools-1.0.7/mkzftree.c.sloppy 2007-05-15
08:42:20.000000000 -0400
+++ zisofs-tools-1.0.7/mkzftree.c 2007-05-15
2004 Jun 03
3
Sloppy argument checking for named arguments
Christian --
This is not a bug, but a feature, and the dot is not the issue here. R uses
partial argument matching on function arguments.
So:
> f <- function(foobar = 0){print(foobar)}
> f
function(foobar = 0){print(foobar)}
>
> f(fo=1)
[1] 1
> f(foo=1)
[1] 1
> f(foob=1)
[1] 1
> f(fooba=1)
[1] 1
> f(foon=1)
Error in f(foon = 1) : unused argument(s) (foon ...)
2007 Jun 17
1
Where did sloppy focus go?``
Hi
Just wondering where the 'sloppy focus' key in scale. It seems to have
been removed
-SmSpillaz
2008 Aug 14
5
help with my sloppy syntax
R-ians:
After some effort I coerced my code to do what I want but my syntax is a
kludge. Suggestions on more elegant syntax?
par <- NIM.results$par
do.call("Draw.NIM.POD.curve", list(par[1], par[2], par[3], par[4],
par[5], a.hat.decision, .... et cetera ...
It seems that I should be able to avoid defining the variable "par" and then
specifying each of its elements,
2009 Jun 29
2
[LLVMdev] [cfe-dev] Patch for llvm::DepthFirstIterator.h and llvm::PostOrderIterator.h
Hi,
I've done all the minor changes you recommended and have attached a new
patch including both files again (even if po_iterator didn't change).
However:
Dan Gohman schrieb:
> The plural of "child" is "children"; please rename this function
> accordingly.
Is "childs" just sloppy, is it american english or is it just a
misconception of foreigners
2010 Jan 14
5
Better way than an ifelse statement?
Hello All,
I am trying to create a column of weights based off of factor levels
from another column. I am using the weights to calculate L scores.
Here is an example where the first column are scores, the second is my
"factor" and the third I want to be a column of weights. I can do
what I want with an ifelse statement (see below), but I am wondering
if anyone knows of a cleaner way
2004 Nov 16
1
modification of BATCH
Hi,
I'm having a problem (of my own creation) with BATCH.
The current problem (for me):
----------------------------
I'm sloppy. I work on *nux systems and will type e.g. "R CMD BATCH a*R out"
to avoid typing the full name of some R script of mine. However,
sometimes I'm overly sloppy and there are multiple files that match
"a*R", so "a*R" turns into
2015 Apr 10
2
dovecot-2.2.16 compilation problems under Solaris Studio 11
> On 08 Apr 2015, at 19:25, James <lista at xdrv.co.uk> wrote:
>
> On 08/04/2015 15:24, J?rgen Obermann wrote:
>
> Hello J?rgen,
>
>> here are two problems I get when I compile dovecot 2.2.16 under Solaris
>> 10 with Studio 11 Compiler:
>
> Is there a reason to use a 10 year old compiler? Try 12.4:
>
>
2005 May 21
2
print format for difftime
Has anyone written a function that will print a difftime in the form:
hh:mm:ss
or
yy-mm-dd hh:mm:ss
depending on the actual size.
(sloppy notation for months/minutes, but surely you get the point).
Bendix
----------------------
Bendix Carstensen
Senior Statistician
Steno Diabetes Center
Niels Steensens Vej 2
DK-2820 Gentofte
Denmark
tel: +45 44 43 87 38
mob: +45 30 75 87 38
fax: +45 44 43 07
2016 Jul 04
2
Status of stack walking in LLVM on Win64?
Thanks all - looks like RuntimeDyldCOFFX86_64 is indeed the missing link.
I'm temporarily using my own code to relocate the pdata section during
linking (for unrelated reasons) but I'll definitely explore the dynamic
loader in more detail. I'd much prefer to use well-tested code over my
sloppy 20 minute hack job :-)
-------------- next part --------------
An HTML attachment was
2011 Dec 01
2
Summarizing elements of a list
Hi everyone,
I looked around the list for a while but couldn't find a solution to my
problem. I am storing some results to a simulation in a list and for each
element i have two separate vectors(is that what they are called, correct my
vocab if necessary). See below
Version1_<-list()
for(i in 1:5){
Version1_[[i]]<-list(First=rnorm(1),Second=rnorm(1))
}
What I want is to put all
2006 Jan 03
3
What''s the best way to do complex inheritance?
I have a Merchant class that has many Products. Product is an abstract
class which has many subclasses (ProductA, ProductB, etc). All Products
have common data, like ''name'', ''status'', ''created_on'', etc... but they
also have some completely different properties.
It seems like Active Record only supports Single Table Inheritance.
This
2007 Dec 06
11
Weird Prototype behavior
In this code:
<html>
<head>
<title>PT test</title>
<script type=''text/javascript'' src=''/js/prototype/1.6.0/
prototype.js''></script>
<script type=''text/javascript''>
//<![CDATA[
Event.observe(window, ''load'', function () {
alert($(''login_username''));
});
//]]>
2008 Oct 16
3
Rails: View specs and implicit parameters in link_to()
Hi all,
I''ve been cleaning up our routing file, and removed the default
map.connect ":controller/:action" route.
It''s thrown up a bunch of sloppy mistakes, which is great, but I also
think I''ve found a problem with the view specs.
We have a generic navbar partial which is rendered in the index page
of several different controllers. The navbar contains
2010 Dec 17
2
how to convert "sloppy data" into a time series?
Hi All,
First let me state that I did search for a while on r-help, google, and
using the "sos" package inside of 'R', without much luck. I want to know
how to create a univariate time series from a set of data that will have
huge time gaps in it. For instance, here is a snapshot of a piece of data
that I would like to analyze:
*Row queued_time
2009 Oct 24
2
Problem Removing Border Lines in Maps Package
I'm working with the nationwide county maps data, and trying to remove the
internal county boundary lines. The only map() function parameter that I've
found that gets me anywhere close to my desired result leaves small white
segments on parts of the map. I believe this is due to the low resolution,
because when I look at individual states, the lty parameter solves the
problem. Does
2011 Dec 05
3
[LLVMdev] Dead register (was Re: [llvm-commits] [llvm] r145819)
RegScavenger is complaining about use of an undefined register, CTR8, in
the BCTR8 instruction, in the following instance (this is from the PPC
backend):
BB#38: derived from LLVM BB %for.end50
Predecessors according to CFG: BB#36
%X3<def> = LD 0, <fi#27>; mem:LD8[FixedStack27]
%X4<def> = RLDICR %X3<kill>, 3, 60
%X5<def> = LI8
2017 Jul 24
2
GEP with a null pointer base
> On Jul 21, 2017, at 10:55 PM, Mehdi AMINI <joker.eph at gmail.com> wrote:
>
>
>
> 2017-07-21 22:44 GMT-07:00 Peter Lawrence <peterl95124 at sbcglobal.net <mailto:peterl95124 at sbcglobal.net>>:
> Mehdi,
> Hal’s transformation only kicks in in the *presence* of UB
>
> No, sorry I entirely disagree with this assertion: I believe we
2008 May 07
2
Question on authenticity tokens
Does anyone find them useful? I can see them being good in some cases,
but I have many exceptions that occur because of expired sessions. I am
also not sure if they are really required for pages that require a login
to access.
The other place that they cause issues is in javascript requests. I am
not using the built-in helpers, and all the javascript exists in
separate js files. There is ways