search for: apping

Displaying 20 results from an estimated 1828 matches for "apping".

Did you mean: mapping
2010 Oct 08
2
incorrect number of levels
I have a data set 382 rows and 63 columns. One of the columns is bay, and there are 6 bays. But, the number of levels for this factor is 7 when it should be six because there is some 'blank' level "". When I subset for the blank level "", I get 0 rows. What in my data could be causing this? Thanks. > dim(datmtx) [1] 382 63 > datmtx$bay [1] TB TB
2012 Feb 09
0
Help with TimeSeries
Hello everyone! I´ve started using R last week and I´m having really persistent problems trying to make predictions using the HoltWinters function. I´m sending my script and the errors I´m getting. My data is: Jan Feb Mar Apr May Jun Jul Ago Sep Oct Nov Dec 2004 118 143 169 158 143 135 135 140 135 125.0000 120.0000 120.0000 2005 143 158 180 180 150 150 153 148 150 145.0000
2010 Jun 01
2
Help on aggregate method
Dear R experts, I would really appreciate if you had an idea on how to use more efficiently the aggregate method: More specifically, I would like to calculate the mean of certain values on a data frame,? grouped by various attributes, and then create a new column in the data frame that will have the corresponding mean for every row. I attach part of my code: matchMean <-
2008 Aug 27
0
[PATCH] stubdom: add v?errx? and v?warnx? functions
stubdom: add v?errx? and v?warnx? functions Signed-off-by: Samuel Thibault <samuel.thibault@eu.citrix.com> diff -r 14a9a1629590 extras/mini-os/include/posix/err.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/extras/mini-os/include/posix/err.h Wed Aug 27 10:29:36 2008 +0100 @@ -0,0 +1,15 @@ +#ifndef _POSIX_ERR_H +#define _POSIX_ERR_H + +#include <stdarg.h> + +void err(int eval,
2007 Apr 03
3
[LLVMdev] Implementing a complicated VAARG
Hi everyone, I'm implementing varags handling for PPC32 with the ELF ABI. It is largely more complicated than the Macho ABI or x86 because it manipulates a struct instead of a direct pointer in the stack. You can find the layout of the va_list struct at the end of this mail. A VAARG call requires a lot of computation. Typically the C code for va_arg(ap, int) is: int va_arg_gpr(ap_list
2016 Oct 19
4
[Sparc] vararg double issue on 32 bit Sparc processors
...fine void @foo(i32 %v, i8* %ap) local_unnamed_addr { entry: %ap.addr = alloca i8*, align 4 store i8* %ap, i8** %ap.addr, align 4 %0 = va_arg i8** %ap.addr, i64 %conv = trunc i64 %0 to i32 %1 = va_arg i8** %ap.addr, double ... Whereas this nearly identical code fragment, wrapping the store and load around the "double" va_arg instruction does work: define void @foo(i32 %v, i8* %ap) local_unnamed_addr { entry: %ap.addr = alloca i8*, align 4 store i8* %ap, i8** %ap.addr, align 4 %0 = va_arg i8** %ap.addr, i64 %conv = trunc i64 %0 to i32 sto...
2007 Jan 09
5
filtering in layer 2 [but is not a bridge]
I have a linux AP with prism2 (hostap) wireless nic. I whant to filter traffic that pass betwen clients of the AP, this is layer 2 traffic (802.11) and netfilter does not sees it, at first i think in physdev target, but is for layer2 bridged interfaces, and this is not the case. There is a way to filter layer2 traffic independet if it is from a bridged iface or not? -- Luciano
2007 Apr 18
2
[RFC, PATCH 9/24] i386 Vmi smp support
SMP bootstrapping support. Just as in the physical platform model, the BSP is responsible for initializing the AP state prior to execution. The dependence on lots of processor state information is a design choice of our implementation. Conceivably, this could be a hypercall that awakens the same start of day state...
2007 Apr 18
2
[RFC, PATCH 9/24] i386 Vmi smp support
SMP bootstrapping support. Just as in the physical platform model, the BSP is responsible for initializing the AP state prior to execution. The dependence on lots of processor state information is a design choice of our implementation. Conceivably, this could be a hypercall that awakens the same start of day state...
2004 Sep 26
1
routing between networks on same interface
...68.140.232/30 ap eth0:192.168.140.236/30 ap eth0:192.168.140.240/30 ap eth0:192.168.140.244/30 ap eth0:192.168.140.248/30 ap eth0:192.168.140.252/30 in hosts file. All communication was routed by shorewall and because of that I had precise accounting infromation a I was able to apply trafic shapping - which was second point of my solution. In time of migration to new Shorewall version I leave same configuration file, but from that time any communication between users located on same ap isn''t allowed: Sep 26 20:45:45 weedle Shorewall:FORWARD:REJECT: IN=eth0 OUT=eth0 MAC=00:50:fc:3a:0...
2011 Dec 13
2
Problem with ploting fitted values
Hello! I have such a problem... Estimated a model based on common data (you can find it in R library), and I wanted to plot the orginal values with the estimated one. Unfortunately I can only see the original values. Below is the code with data library: / library(forecast) data(AirPassengers) AP <- AirPassengers class(AP) start(AP) end(AP) frequency(AP) lgAP <- log(AP) t<-2:length(AP)
2020 May 29
1
[PATCH v3 69/75] x86/realmode: Setup AP jump table
On Tue, Apr 28, 2020 at 05:17:19PM +0200, Joerg Roedel wrote: > From: Tom Lendacky <thomas.lendacky at amd.com> > > Setup the AP jump table to point to the SEV-ES trampoline code so that > the APs can boot. Tom, in his laconic way, doesn't want to explain to us why is this even needed... :) /me reads the code /me reads the GHCB spec aha, it gets it from the HV. And it
2007 Nov 12
4
a repetition of simulation
Hello, I have a simple (?) simulation problem. I'm doing a simulation with logistic model and I want to reapet it 600 times. The simulation looks like this: z <- 0 x <- 0 y <- 0 aps <- 0 tiss <- 0 for (i in 1:500){ z[i] <- rbinom(1, 1, .6) x[i] <- rbinom(1, 1, .95) y[i] <- z[i]*x[i] if (y[i]==1) aps[i] <- rnorm(1,mean=13.4, sd=7.09) else aps[i] <-
2015 Apr 01
2
[PATCH v2 4/4] Add virtio-vga bits.
--- drivers/gpu/drm/virtio/virtgpu_drm_bus.c | 32 ++++++++++++++++++++++++++++++-- drivers/virtio/virtio_pci_common.c | 7 ++++++- 2 files changed, 36 insertions(+), 3 deletions(-) diff --git a/drivers/gpu/drm/virtio/virtgpu_drm_bus.c b/drivers/gpu/drm/virtio/virtgpu_drm_bus.c index 56bd4ed..33d12d5 100644 --- a/drivers/gpu/drm/virtio/virtgpu_drm_bus.c +++
2015 Apr 01
2
[PATCH v2 4/4] Add virtio-vga bits.
--- drivers/gpu/drm/virtio/virtgpu_drm_bus.c | 32 ++++++++++++++++++++++++++++++-- drivers/virtio/virtio_pci_common.c | 7 ++++++- 2 files changed, 36 insertions(+), 3 deletions(-) diff --git a/drivers/gpu/drm/virtio/virtgpu_drm_bus.c b/drivers/gpu/drm/virtio/virtgpu_drm_bus.c index 56bd4ed..33d12d5 100644 --- a/drivers/gpu/drm/virtio/virtgpu_drm_bus.c +++
2003 May 12
2
Proliant on a 6500
Sorry to reply to myself, but I wanted to expand this to -stable and add some more info... See the original post at the bottom of this msg. I just took the Smart 2/P and put it in slot1 (one of the shared Eisa/PCI slots.) Now the Dmesg output shows the "SMP: AP CPU" lines in a different order... They were: SMP: AP CPU# 3 Launched! SMP: AP CPU# 1 Launched! SMP: AP CPU# 2 Launched! now
2014 Dec 16
1
Realtime not storing voicemail password changes
Hi All I am trying to get voicemail switched over to ARA on version 13 and notice that the password is not stored in the db when it is changed. A little hair pulling and playing around and I think the problem is in the function ast_update2_realtime in main/config.c. Issued source is ==> int ast_update2_realtime(const char *family, ...) { RAII_VAR(struct ast_variable *,
2015 Jun 22
4
LDAP authentication
Hi again I'm trying to authenticate a user against an LDAP Server (well, our AD, but it can LDAP). This is my configuration: hosts = my.server.local auth_bind = yes ldap_version = 3 base = CN=Person,CN=Schema,CN=Configuration,DC=company,DC=local scope = subtree user_attrs = \ =home=/home/imapproxy/%u, \ =mail=maildir:/home/imapproxy/%u pass_attrs = uid=%u, userPassword=%w
2017 Nov 24
8
[PATCH 00/13] remove_conflicting_framebuffers() cleanup
This series cleans up duplicated code for replacing firmware FB driver with proper DRI driver and adds handover support to Tegra driver. The last patch is here because it uses new semantics of remove_conflicting_framebuffers() from this series. This can be considered independently, though. --- Micha? Miros?aw (13): fbdev: show fbdev number for debugging fbdev: add
2017 Nov 24
8
[PATCH 00/13] remove_conflicting_framebuffers() cleanup
This series cleans up duplicated code for replacing firmware FB driver with proper DRI driver and adds handover support to Tegra driver. The last patch is here because it uses new semantics of remove_conflicting_framebuffers() from this series. This can be considered independently, though. --- Micha? Miros?aw (13): fbdev: show fbdev number for debugging fbdev: add