Displaying 16 results from an estimated 16 matches for "_add_".
Did you mean:
_addr
2008 Mar 07
3
merging environments
...t, and
that users would be better off learning to deal with function
closures, I am *still* trying to make such things work
in a reasonably smooth fashion ...
Is there a standard idiom for "merging" environments?
i.e., suppose a function has an environment that I want
to preserve, but _add_ the contents of a data list --
would something like this do it? Is there a less ugly
way?
x <- 0
y <- 1
z <- 2
f <- function() {
x+y+z
}
f2 <- function(fun,data) {
L <- ls(pos=environment(fun))
mapply(assign,names(data),data,
MoreArgs=list(e...
2015 Nov 30
6
Re: packaging virtio-win
...But the things to consider:
- There are many consumers of the iso layout as it is right now. Any changes
in the short to medium term need to be entirely additive so we can get the new
layout right without breaking every consumer. So keep the existing iso layout
of $drivername/$weird-os/$arch, but _add_ the $arch/$standard-os/* layout, and
avoid duplicates by hardlinking identical files (the scripts on github already
have code that handles the last bit). In fact it might be a good starting
point to write a script that takes the existing iso, extracts it, and
rearranges the contents to match the ne...
2011 Sep 01
2
two question about plot
1) how to modify the the tickment of x-axis or y-axis.
boxplot(data[,1:5])
the tickment in x-axis in V1 V2 V3 V4 V5 ,I want to be some name for
example
name<-c("1day","2day","3day","4day","5day")
2) how to overlap two plot into one figure?
plot(data[1:5])
boxplot(newdata[,1:5])
?
--
TANG Jie
[[alternative HTML version deleted]]
2010 Oct 12
0
[LLVMdev] Fixing trailing whitespace
...we could just disable trailing whitespace removal in our
editors, but trailing whitespace is just bad form. It can make it very
annoying to select or go to the end of a line. And it makes some of us
very anxious.
The fix is quite simple:
1) Install a pre-commit hook that rejects any changes that _add_ lines
with trailing whitespace or non-unix line endings.
2) Make one giant commit that removes all trailing whitespace from the repo.
This will not mess up blame because it's trivial to ignore whitespace changes.
svn blame -x-w
svn blame -x-b
git blame -w
- Michael Spencer
2015 Dec 01
0
Re: packaging virtio-win
...ote:
> - There are many consumers of the iso layout as it is right now. Any
> changes in the short to medium term need to be entirely additive so
> we can get the new layout right without breaking every consumer. So
> keep the existing iso layout of $drivername/$weird-os/$arch, but
> _add_ the $arch/$standard-os/* layout, and avoid duplicates by
> hardlinking identical files (the scripts on github already have code
> that handles the last bit).
May also be worth asking who the current consumers are.
Virt-v2v is one of them.
Are there others? (GNOME Boxes?)
Virt-v2v uses a...
2008 Dec 26
1
histogramm$density
hello,
i am using the hist function with classified values. The class breaks are >1, so
histogram$density is != 1.
How to plot the histogram with freq=FALSE and the real class density values.
I used:
> h2 = hist(value, breaks = breaks_vector)
> h2$density = round(h2$counts/sum(h2$counts), 2)
> h2$intensities = h2$density
> plot(h2, freq=F)
but this isn't the best way, i
2005 May 30
2
pridialplan & prilocaldialplan
Hi list!
What exactly is the meaning / function of the pridialplan &
prilocaldialplan?
I've been trying to find out what the different possibilities for these
settings are but couldn't find a clear answer.
The possible parameters I could find are are :
local,unknown,dynamic,national,international
and maybe there are more?
Thanks!
2020 Nov 02
1
v2.3.11.3 solr plugin search via MUA fails to match accented ascii characters; cmd line exec of `doveadm fts lookup` PANICs (assertion failed) [proposed patch]
> On 02/11/2020 15:11 PGNet Dev <pgnet.dev at gmail.com> wrote:
>
>
> On 11/2/20 12:44 AM, Aki Tuomi wrote:
> > you should try removing use_libfts from your config line and let solr do that part.
>
> sry, i'm a bit confused.
>
> you'd suggested I _add_ it,
>
> https://dovecot.org/pipermail/dovecot/2020-October/120258.html
>
> > I can reproduce your problem with the `fts lookup` command. Luckily it's equivalent to running `doveadm search`. I'll open a bug about this.
> > Dovecot FTS tokenization is not done, unless...
2020 Nov 02
1
v2.3.11.3 solr plugin search via MUA fails to match accented ascii characters; cmd line exec of `doveadm fts lookup` PANICs (assertion failed) [proposed patch]
> On 01/11/2020 20:35 John Fawcett <john at voipsupport.it> wrote:
>
>
> On 01/11/2020 15:20, PGNet Dev wrote:
> > On 11/1/20 1:56 AM, John Fawcett wrote:
> >> At the moment I don't see other corrections needed in dovecot apart from
> >> command line doveadm fts which is not a show stopper. Via doveadm search
> >> I confirm - on my simple
2018 Nov 29
2
'git llvm push' not working for me on Windows
...vn update --depth=files --parents llvm/trunk/test/DebugInfo
svn update --depth=files --parents llvm/trunk/
Subversion has a --set-depth= argument which "fixes" this, but unfortunately, that argument *also* recursively deletes any subdirs which have already been populated. (I just want to _add_ things, not delete already-downloaded data.)
In summary: subversion's sparse-checkout command-line UI is really confusing and annoying! Ugh!
I've pushed a commit (r347883) to hopefully fix this issue. This time for sure.
You will probably need to remove the .git/llvm-upstream-svn directo...
2023 Oct 18
9
ssh wish list?
Hey all,
So I do some development based on openssh and I'm trying to think of
some new projects that might extend the functionality, feature set, user
workflow, performance, etc of ssh.
So open ended question:
Do any of you have a wish list of things you'd like to see in ssh?
Mostly I'm just curious to see what the larger community is thinking of
rather than being driven
2019 Feb 01
2
'git llvm push' not working for me on Windows
...vn update --depth=files --parents llvm/trunk/test/DebugInfo
svn update --depth=files --parents llvm/trunk/
Subversion has a --set-depth= argument which "fixes" this, but unfortunately, that argument *also* recursively deletes any subdirs which have already been populated. (I just want to _add_ things, not delete already-downloaded data.)
In summary: subversion's sparse-checkout command-line UI is really confusing and annoying! Ugh!
I've pushed a commit (r347883) to hopefully fix this issue. This time for sure.
You will probably need to remove the .git/llvm-upstream-svn directo...
2015 Nov 27
3
Re: packaging virtio-win (was: Re: [PATCH] v2v: virtio-win: include *.dll too)
On Thu, Nov 26, 2015 at 08:12:41PM +0300, Roman Kagan wrote:
>On Tue, Nov 24, 2015 at 01:07:03PM +0000, Richard W.M. Jones wrote:
>> On Mon, Nov 23, 2015 at 08:26:10PM +0300, Roman Kagan wrote:
>> > Having given it some more thought and having discussed that with
>> > colleagues who do various things with the drivers, like generating
>> > unattended install
2014 Jun 21
2
isohybrid has 2 variants
...ut isohybrid throughout the wiki, but it
should probably receive its own page (linked from the ISOLINUX wiki
page and from others).
Most distros that support/use some variant of isohybrid already
include steps to produce isohybrid images, so whatever is added to
the Syslinux wiki should really _add_ (not repeat) info. The
existence of different variants, their limitations, the requirement
for matching the ISOLINUX (e.g. iso*.bin files) version, and the
available command line options, are probably relevant points.
>
>
> > As you might have read already in prior emails, the Pe...
2014 Jun 21
2
isohybrid has 2 variants
> Hi,
>
> Ady:
> > Since both included variants are currently different, and both
> > variants have problems
>
> I am not aware of problems of the perl version. It is just lacking
> the newer features which support EFI/GPT and Mac/APM.
> The known bugs of isohybrid.c are with those newer features.
> http://www.syslinux.org/archives/2012-May/017843.html
>
2018 Nov 28
2
'git llvm push' not working for me on Windows
Poking around in the .git\llvm-upstream-svn tree, I find that llvm\trunk\test\DebugInfo\Generic is empty, as are all the other subdirectories of test\DebugInfo that I tried. I have other files in the checkin that are in leaf directories but those files all exist.
I hacked git-llvm to add a –verbose option:
`git apply --verbose -p2 -` returned 1
Checking patch