Displaying 20 results from an estimated 1289 matches for "consolid".
Did you mean:
consoled
2011 Mar 07
2
[PATCH 00/16] Staging: hv: Consolidate driver and device abstractions
...ver and struct hv_device
have maintained state needed to communicate with the host. This partitioning
made sense at a point in time when it was not clear how much of
the hypervisor interaction would be open sourced. Given where we are
today, there is no reason to keep this layering. This patchset
consolidates all the driver state into a single structure:
struct hv_driver while all the device state is consolidated into
a single structure: struct hv_device. This consolidation simplifies
the code while simultaneously getting rid of redundant state -
for instance in the current code, both struct driver...
2011 Mar 07
2
[PATCH 00/16] Staging: hv: Consolidate driver and device abstractions
...ver and struct hv_device
have maintained state needed to communicate with the host. This partitioning
made sense at a point in time when it was not clear how much of
the hypervisor interaction would be open sourced. Given where we are
today, there is no reason to keep this layering. This patchset
consolidates all the driver state into a single structure:
struct hv_driver while all the device state is consolidated into
a single structure: struct hv_device. This consolidation simplifies
the code while simultaneously getting rid of redundant state -
for instance in the current code, both struct driver...
2010 Mar 18
1
Using a function to consolidate variables
...orks,
but without using the function much, and another that tries to use the
function but causes the error.
# THIS WORKS AND SHOWS WHAT I'D LIKE TO DO
a <- c(1,2,3)
b <- c(5,6,0)
c <- data.frame(a,b)
# TAKES THE MAX OF TWO VARS AND SAVES IT TO A NEW VARIABLE AND DELETES OLD VARIABLES
consolidate.fun <- function( data, var1, var2, saved.max ) {
max <- apply( data[,c(var1, var2)], 1, max)
# THIS WORKS BUT I HAVE TO CALL THE DATA FRAME BY NAME RATHER THEN USING THE FUNCTION DATA NAME
c[,"var.max"] <<- max
c$a <<- NULL
c$b <<- NULL
}
consolidate.fun( dat...
2007 Sep 08
1
ggplot legend consolidation
Hello Everyone,
I have recently been introduced to the ggplot package by Hadley Wickham
and must say I am quite impressed so far at how easy it is to make
attractive plots, but one thing I am struggling over is how to
consolidate legends.
I have 3 plots that I would like to put on a single page and all 3 map
the same dimension of the data to the colour aesthetic. Right now, when
I plot all three graphs on the page, I get the three graphs and three
legends. The legends are exactly the same. I do not see a reason to
ha...
2018 Jan 14
0
consolidate three function into one
Hi Bert,
Thank you, yes, you are right. I want to consolidate the three functions into one functions by adding more arguments, adding flexibility to accommodate the number of clusters or the number of Kaplan Meier curves generated in one figure. So, I just need to define one function.
Thanks,
Ding
From: Bert Gunter [mailto:bgunter.4567 at gmail.com...
2018 Mar 01
0
[PATCH v3 4/6] x86: Consolidate PCI_MMCONFIG configs
...:40:47AM +0100, Jan Kiszka wrote:
>> From: Jan Kiszka <jan.kiszka at siemens.com>
>>
>> Since e279b6c1d329 ("x86: start unification of arch/x86/Kconfig.*"), we
>> have two PCI_MMCONFIG entries, one from the original i386 and another
>> from x86_64. This consolidates both entries into a single one.
>>
>> The logic for x86_32, where this option was not under user control,
>> remains identical. On x86_64, PCI_MMCONFIG becomes additionally
>> configurable for SFI systems even if ACPI was disabled. This just
>> simplifies the logic...
2008 Feb 07
1
consolidate legends in ggplot2
Hello,
the same parameter for colour and shape aesthetics gives 2 legends:
library(ggplot2)
p <- ggplot(mtcars, aes(x=wt, y=mpg))
p + geom_point(aes(colour=factor(cyl), shape=factor(cyl)))
Can the 2 legends be consolidated to one with
colours and shapes of the symbols matched between legend and plot ?
Thank you
Bernd Engelmann
bernd.engelmann at amd.com
phone: + 49-351-277-4545
fax: + 49-351-277-9-4545
AMD Saxony/AMD Saxony Limited Liability Company & Co. KG
M/S E23-TY
Wilschdorfer Landstr. 101
D-01109...
1996 Nov 18
0
New moderator, linux-alert lists'' consolidation.
-----BEGIN PGP SIGNED MESSAGE-----
The linux-alert-digest list has now been consolidated with the
linux-alert list.
There wasn''t nearly enough traffic on the linux-alert list to justify
its having a separate digest list; subscribers to linux-alert-digest
tended to receive the same number of e-mail messages as subscribers to
linux-alert, only with an additional time lag of...
2005 Nov 22
6
DTrace #include problems
Howdy,
I am trying to migrate several scripts to use application defined types,
and am running into a few issues. When I attempt to run a script with a
application defined type, it looks like the DTrace preprocessor is getting
angry with me:
$ cat view.d
#include "httpd.h"
:::acceptconnection
{
this->addr = (conn_rec *)copyin(arg0,sizeof(conn_rec *));
}
$ dtrace -C
2019 Feb 06
2
Not to consolidate two structs with the same data types (but different names) in configure/make tool chain
...ache_t wdcache = {0, 0, 0};
@wdcache = dso_local global %struct.dstack zeroinitializer, align 8, !dbg !1189
If I directly compile the .c file to .ll, I will not see this problem.
Is there a way to still use the configure/make toolchain, yet still
maintain the original type information instead of consolidating types
of the same data? Thanks.
--
Regards,
Peng
2018 Mar 01
0
[PATCH v3 4/6] x86: Consolidate PCI_MMCONFIG configs
From: Jan Kiszka <jan.kiszka at siemens.com>
Since e279b6c1d329 ("x86: start unification of arch/x86/Kconfig.*"), we
have two PCI_MMCONFIG entries, one from the original i386 and another
from x86_64. This consolidates both entries into a single one.
The logic for x86_32, where this option was not under user control,
remains identical. On x86_64, PCI_MMCONFIG becomes additionally
configurable for SFI systems even if ACPI was disabled. This just
simplifies the logic without restricting the configurability in...
2018 Mar 04
0
[PATCH v4 5/7] x86: Consolidate PCI_MMCONFIG configs
From: Jan Kiszka <jan.kiszka at siemens.com>
Since e279b6c1d329 ("x86: start unification of arch/x86/Kconfig.*"), we
have two PCI_MMCONFIG entries, one from the original i386 and another
from x86_64. This consolidates both entries into a single one.
Signed-off-by: Jan Kiszka <jan.kiszka at siemens.com>
---
arch/x86/Kconfig | 11 ++++-------
1 file changed, 4 insertions(+), 7 deletions(-)
diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig
index c19f5342ec2b..8986a6b6e3df 100644
--- a/arch/x86/Kconfig
+...
2023 Mar 17
0
[PATCH 5/6] drm/fb-helper: Consolidate CONFIG_DRM_FBDEV_LEAK_PHYS_SMEM
Hi
Am 17.03.23 um 13:39 schrieb Javier Martinez Canillas:
> Thomas Zimmermann <tzimmermann at suse.de> writes:
>
>> Consolidate all handling of CONFIG_DRM_FBDEV_LEAK_PHYS_SMEM by
>> making the module parameter optional in drm_fb_helper.c.
>>
>> Without the config option, modules can set smem_start in struct
>> fb_info for internal usage, but not export if to userspace. The
>> address can onl...
2006 Jan 04
0
Generating consolidated rdocs like api.rubyonrails.com
How do I generate a consolidated set of rdocs for my local rails
installation like the docs at api.rubyonrails.com? Currently I have the
rdocs for each package ( actionpack, activerecord, etc... ) that were
autogenerated when I downloaded the gems. Is the api.rubyonrails site
doing something special or is there a rake tas...
2009 May 10
1
Select the rows in a dataframe that matches a criteria in another dataframe
...m Year cash
500400200 2007 100
500400200 2006 200
500400200 2005 400
500400300 2007 300
500400300 2006 240
500400300 2005 120
500400400 2007 340
500400400 2006 890
500400400 2005 250
Dataframe 2
Firm Audited consolidate
500400200 yes no
500400300 yes yes
500400400 no no
I want to make another dataframe equal to the dataframe1,
but just with the firms ?audited?, or with the firms
?audited? and ?consolidate?. For example, with the audited
and consolidated, the output...
2013 Feb 28
0
Consolidated Signup for Community Services
We felt that it would be good to let you know about some minor changes
happening with our community services.
For quite some time, we've had a consolidated authentication server
for most of our community services. This means that you use the same
username and password for issues.asterisk.org, wiki.asterisk.org and
code.asterisk.org. ReviewBoard (reviewboard.asterisk.org) still uses
its own internal authentecation, but we plan to migrate it some da...
2013 Feb 28
0
Consolidated Signup for Community Services
We felt that it would be good to let you know about some minor changes
happening with our community services.
For quite some time, we've had a consolidated authentication server
for most of our community services. This means that you use the same
username and password for issues.asterisk.org, wiki.asterisk.org and
code.asterisk.org. ReviewBoard (reviewboard.asterisk.org) still uses
its own internal authentecation, but we plan to migrate it some da...
2018 Feb 06
1
6 separate instances of static getPointerOperand(). Time to consolidate?
What LoopVectorize.cpp has are the following. Each function may have to have a separate consolidation discussion.
I'm bringing up getpointerOperand() since I actually found multiple instances defined/used.
DependenceAnalysis.cpp has isLoadOrStore(). LoopAccessAnalysis.cpp has getAddressSpaceOperand().
I'm sure there are others that might be worth discussing within this thread or a foll...
2016 Aug 30
1
[PATCH v2] drm/nouveau/gr: mark gm107_grctx_generate_tpcid() static
...pes]
> >
> > In fact, this function is only used in the file in which it is
> > declared and don't need a declaration, but can be made static.
> > so this patch marks this function with 'static'.
> >
>
> It would make things a lot easier if you either consolidated all of
> these static changes into one patch, or released them as a series.
>
>
Do you mean that I need to consolidate all of them into one patch this
time? or next time?
> Sean
>
>
> > Signed-off-by: Baoyou Xie <baoyou.xie at linaro.org>
> > ---
> >...
2018 Sep 17
1
[patch 00/11] x86/vdso: Cleanups, simmplifications and CLOCK_TAI support
On Fri, 14 Sep 2018, Arnd Bergmann wrote:
> On Fri, Sep 14, 2018 at 2:52 PM Thomas Gleixner <tglx at linutronix.de> wrote:
> A couple of architectures (s390, ia64, riscv, powerpc, arm64)
> implement the vdso as assembler code at the moment, so they
> won't be as easy to consolidate (other than outright replacing all
> the code).
>
> The other five:
> arch/x86/entry/vdso/vclock_gettime.c
> arch/sparc/vdso/vclock_gettime.c
> arch/nds32/kernel/vdso/gettimeofday.c
> arch/mips/vdso/gettimeofday.c
> arch/arm/vdso/vgettimeofday.c
>
> are basically a...