Displaying 20 results from an estimated 322 matches for "zp".
Did you mean:
zap
2007 May 09
5
Refactor zfs_zget()
...rations in the FUSE low-level API identify files by inode
number, I''ve been using zfs_zget() to get the corresponding znode/vnode in
order to call the corresponding VFS function in zfs_vnops.c.
However, there are some cases when zfs_zget() behaves slightly different than
I need:
1) If zp->z_unlinked != 0 then zfs_zget() returns ENOENT. I need it to return
the znode anyway, otherwise an open() followed by an unlink() followed by an
fstat() would return ENOENT.
2) In the end of zfs_zget(), if the requested object number is not found, it
allocates a new znode with that object n...
2012 Jun 12
15
Recovery of RAIDZ with broken label(s)
...;'s labelfix binary to create new labels but it
carps because the txg is not zero.
The situation now is I have dd''d the drives onto a NAS. These images are
shared via NFS to a VM running Oracle Solaris 11 11/11 X86.
When I attempt to import the pool I get:
root at solaris-01:/mnt# zpool import -d /dev/lofi
pool: ZP-8T-RZ1-01
id: 9952605666247778346
state: FAULTED
status: One or more devices contains corrupted data.
action: The pool cannot be imported due to damaged devices or data.
see: http://www.sun.com/msg/ZFS-8000-5E
config:
ZP-8T-RZ1-01 FAUL...
2008 Aug 25
5
Unable to import zpool since system hang during zfs destroy
Hi all,
I have a RAID-Z zpool made up of 4 x SATA drives running on Nexenta 1.0.1 (OpenSolaris b85 kernel). It has on it some ZFS filesystems and few volumes that are shared to various windows boxes over iSCSI. On one particular iSCSI volume, I discovered that I had mistakenly deleted some files from the FAT32 partition that...
2009 Jul 03
3
Variable names in lattice XY-plot
...acet = "Acetylaspartate Thalamus"
chol = "Choline Thalamus"
acetp = "Acetylaspartate parieoc"
ino = "Inositole Thalamus"
I could not find a solution.
Please have a look at my syntax.
Thanks a lot,
Udo
library(lattice)
grp <-c(0,1,0,1)
zp <- c(1,1,2,2)
acet <- c(1.7,1.8,1.9,1.8)
chol <- c(0.6, 0.8,0.8, 0.7)
ino <- c(0.6, 0.3, 0.5, 0.4)
acetp <- c(1.8, 1.9, 2.0, 1.8)
data <- data.frame(cbind(grp, zp, acet, chol, ino, acetp))
data$grp <- factor(data$grp)
levels(data$grp) <- c("low","high")...
2012 Jun 07
2
Basic question about confidence intervals
...ws:
• Compute the mean server response time: μ =
PN
i=1 Ri/N, where Ri is the server response time
for the ith run.
• Compute the standard deviation for the server response
time: σ = qPN
i=1(Ri − μ)2/(N − 1).
• Confidence interval for the response time at confidence
100c% is given as: [μ − zpσ/√N, μ +
zpσ/pN], where p = (1 + c)/2, and zp is the quantile
of the unit normal distribution at p.
If N <= 30, we replace zp by tp;n−1, which is the pquantile
of a t-variate with n−1 degrees of freedom,
assuming that the response time values from N runs
come from a normal distribution. We...
2007 Jul 27
1
R codes for g-and-h distribution
hi!
I would like to ask help how to generate numbers from g-and-h distribution. This distribution is like normal distribution but span more of the kurtosis and skewness plane. Has R any package on how to generate them?
Any help will be greatly appreciated. Thank you so much!
Form,
Filame Uyaco
---------------------------------
[[alternative HTML version deleted]]
2014 Jul 04
2
[LLVMdev] MOS6502 target
...values
>> will be incredibly inefficient... Tricky stuff.
>>
>
> You absolutely don't want anything on the hardware stack except function
> return addresses and possibly very temp storage e.g. PHA (push A); do
> something that destroys A, PLA (pull A). Or you could use a ZP temp for
> that. STA ZP; LDA ZP is I think cycle or two faster, PHA/PLA is two bytes
> smaller ... size usually wins.
>
> The "C" local variables stack absolutely needs to be somewhere else,
> bigger, and using a pair of ZP locations as the stack pointer (SP). You
> can&...
2010 Oct 10
0
rearrange command in quantreg package
...e quantile index? (If I understand correctly).
So, if I use the following code the predict command seems to work fine
dyear<-dummy(ekc$year)[,-1]
dstate<-dummy(ekc$state)[,-1]
dekc<-cbind(ekc, dyear, dstate)
z.nox<-rq(nox~dyear+dstate+pcinc+I(pcinc^2)+I(pcinc^3), tau=-1, data=dekc)
zp.nox <- predict(z.nox,newdata=list(pcinc=ekc$pcinc,
dyear=dummy(ekc$year)[,-1], dstate=dummy(ekc$state)[,-1]), type="stepfun")
but when I am going to do the plot
plot(zp.nox,do.points = FALSE, xlab = expression(tau), ylab = expression(Q (
tau )), main="Quantile Something")...
2010 Sep 13
2
proportion
...ry loaded from a previous
process and that it wasnt listed in my script and now isnt being loaded. So
question is what library do i need to load or what other updates or changes
have been made that now R cant find proportion?
Probably useless with other code/data:
textplot(paste(names(TrkSUV.Ag[[zp]]),proportion(TrkSUV.Ag[[zp]])),
halign="center", valign="center",cex=1)
--
View this message in context: http://r.789695.n4.nabble.com/proportion-tp2538185p2538185.html
Sent from the R help mailing list archive at Nabble.com.
2015 May 15
2
comportamiento de data.table al hacer calculos por grupos
...ba un error que no supe interpretar.
Ahora ya funciona como sugiere Carlos.
Muchas gracias de nuevo.
Saludos, Eric.
On 14/05/15 19:28, Carlos Ortega wrote:
> Hola,
>
> La forma de hacerlo con data.table es esta:
>
> > library(data.table)
> > datIn <- fread("zp.res")
> > med <- datIn[, .(vmed=mean(media)), by=.(sol,dia,con)]
> > head(med)
> sol dia con vmed
> 1: con 1 0 -29.37
> 2: dec 1 1 -30.35
> 3: dec 1 3 -37.15
> 4: dec 1 5 -31.55
> 5: dol 1 1 -24.02
> 6: dol 1 3 -32.95
>
>...
2014 Jul 04
2
[LLVMdev] MOS6502 target
...en the locations of A's locals will always be at higher addresses than B's locals. (or vice versa).
>
> This will probably be a bit bigger than the maximum dynamic depth of a stack implementation, but I think usually not a lot. And it lets you use absolute addressing instead of slow (zp),y, and also let you avoid saving and restoring simulated callee-save registers.
>
>
>
>
>> On Thu, Jul 3, 2014 at 1:23 PM, Edwin Amsler <edwinguy at gmail.com> wrote:
>> Hey there!
>>
>> I've started to embark on a path to try and create a backend...
2008 Nov 26
2
zfs znode changes getting lost
...not there. If i was able to access before reboot so it must be in memory. I think i need to save it to disk.
how does one force zfs znode to disk.
right now i dont do anything special for it. Just made an ioctl, accessed znode and made changes.
example in zfs_ioctl
case add_new:
zp = VTOZ(vp);
zp->z_phys->new_field = 2;
return(0);
--
This message posted from opensolaris.org
2011 Jan 31
0
Function rearrange (quantreg)
Dear all
How can I obtain the data from the function "rearrange" in package quantreg
More especifically, based on the example below (available in the help of the
rearrange function), how can I access the data generated by
"rearrange(zp)" ?
data(engel)
z <- rq(foodexp ~ income, tau = -1,data =engel)
zp <- predict(z,newdata=list(income=quantile(engel$income,.03)),type="stepfun")
plot(zp,do.points = FALSE, xlab = expression(tau),
ylab = expression(Q ( tau )), main="Engel Food Expenditure Quantile...
2012 Sep 24
0
Estimated covariance matrix with tgp package
...lit up D along lines parallel to the coordinate axes and
estimates independent Gaussian processes on each resulting region,
conditional on the predefined class of covariance functions (like the
Matern class) and returns a tgp class object, which I call 'out'.
Now I'm wondering if out$Zp.s2 gives the estimated covariance matrix. In
my example I have a matrix of locations X and data set Z. When I run the
btgp function it yields a tree of hight two, indicating that the
algorithm splits up the area D into two independent regions and
correspondingly the matrix of locations X. But i...
2015 May 14
3
comportamiento de data.table al hacer calculos por grupos
Estimada comunidad tengo un problema del que no encuentro datos que me
ayuden mucho en la web.
Estoy haciendo calculos por grupos con data,table. Tengo un archivo
(zp.res) con tres columnas que clasifican los datos (sol, con, dia) y
una columna de datos numericos (media), de la siguiente forma:
sol con dia media
1: con 0 1 -22.6
2: con 0 1 -36.6
3: con 0 1 -35.6
y quiero calcular el promedio de "media" (la col 4) agrupand...
2019 Jul 17
1
Having trouble getting started on writing a WDC 65816 backend
...is a condition code register that can only be
> accessed implicitly or by pushing or popping it to the stack.
> Arithmetic such as add/siub/and/or/xor can only be done with the A
> register. Increment and decrement can only be done with the X and Y
> registers, not the A register. The (zp,reg) addressing mode can only
> be used with the X register. The (zp),reg addressing mode can only use
> the Y register.
Is it not the job of the backend to figure out how to use the registers
effectively? Or am I deeply misunderstanding how a backend is supposed to
transform IR?
Sent via M...
2006 Aug 25
4
Looking for confirmation.
...stem functions working.
I started to run some heavy file system regression tests. They work. fsx
wasn''t able to break my port, but the test you can find here:
http://people.freebsd.org/~kan/fsstress.tar.gz
broke it. My kernel panics on this assertion (zfs_dir.c):
749: mutex_exit(&dzp->z_lock);
750:
751: error = zap_remove(zp->z_zfsvfs->z_os, dzp->z_id, dl->dl_name, tx);
752-> ASSERT(error == 0);
753:
754: if (reaped_ptr != NULL)
zap_remove() returns ENOENT, which is returned because mze_find()
returns NULL. I changed this assertion to printf and I don'...
2008 Jan 10
2
Assistance needed expanding RAIDZ with larger drives
...each drive with a 750 GB Western Digital Caviar.
After failing miserably, I''d like to start from scratch again if possible. When I last tried, the replace command hung for an age, network connectivity was lost (I have to do this by SSH, so that dropped too), and I got strange outputs from zpool -status where a particular device (but not the one that was being replaced) was listed twice. I also managed to mess up 3 of the 4 WD drives in such a way that they were detected by the bios, but no system after that would work:
In solaris, a format wouldn''t show the drive (c2d0 should...
2005 Dec 10
6
Wierd ZFS interaction with sudo?
I''ve just installed express b28 on my system. After installing, I
decided to move /opt to a zfs pool home/opt. After installing
Blastwave''s latest sudo, I did my usual edits of sudoers.
When I attempted to execute sudo ls to test things I got this:
rtfm:/opt/csw/etc:>sudo ls
sudo: /opt/csw/etc/sudoers is owned by gid 1, should be 0
But /opt/csw/etc/sudoers permissions
2007 Sep 27
1
plot(cox.zph())
Hello,
I got error message when applying the plot function to the cox.zph
object to create the Schoenfeld residual plots.
> plot(zph.revasFit[1])
Error in plot.window(xlim, ylim, log, asp, ...) :
need finite 'ylim' values
In addition: Warning messages:
1: NaNs produced in: sqrt(x$var[i, i] * seval)
2: no non-missing arguments to min; returning I...