Displaying 20 results from an estimated 390 matches for "u1".
Did you mean:
u16
2006 Mar 03
1
xapian-0.9.4 queryparser build errors after applying utf-8 patch
...-DPIC -o .libs/queryparser_internal.o
In file included from /usr/include/glib-2.0/glib/gquark.h:30,
from /usr/include/glib-2.0/glib/gerror.h:24,
from /usr/include/glib-2.0/glib/gunicode.h:25,
from accentnormalisingitor.h:22,
from /u1/olly/xapian-svn-snapshot/tags/0.9.4/xapian/xapian-core/queryparser/queryparser.lemony:24:
/usr/include/glib-2.0/glib/gtypes.h:30:24: glibconfig.h: No such file or directory
In file included from /usr/include/glib-2.0/glib/gquark.h:30,
from /usr/include/glib-2.0/glib/gerror.h:24,...
2016 Dec 07
4
You have not permission to view content of this location
...ap-clients openldap-servers migrationtools
yum install -y nss-pam*
I know that smbldap-tools is a dead project, but I'm interested in it and would like research on it.
I create users and groups by:
sudo smbldap-groupadd -a g1
sudo smbldap-groupadd -a g2
sudo smbldap-useradd -a -P -g 1001 u1
sudo smbldap-useradd -a -P -g 1002 u1
groups u1
u1 : g1
groups u2
u2 : g2
I create shared folder:
cd /
sudo mkdir data
sudo chown u1 /data
sudo chgrp g1 /data
sudo chmod ugo+rwx /data
I edit /etc/samba/smb.conf:
[data]
comment = data
path = /data
valid users = u1,u2
write li...
2012 Dec 06
1
Anomalous outputs from rbeta when using two different random number seeds
...mall.
Using set.seed(20) produces results I can't make sense of. Around half of
the time, it behaves as with set.seed(80), but around half of the time, it
behaves very differently, with a much wider distribution of differences
between the two distributions.
# Beta parameters
#distribution 1
u1.a <- 285.14
u1.b <- 190.09
# distribution 2
u2.a <- 223.79
u2.b <- 189.11
#Good example: output is as expected
set.seed(80); u1.good <- rbeta(1000, u1.a, u1.b)
set.seed(80); u2.good <- rbeta(1000, u2.a, u2.b)
#Bad example: output is different to expected
set.seed(20); u1.bad...
2007 Jun 01
1
Trying to define exclude with an include list
I need to backup a set of machines that are very similar in nature. I had
created an exclude list to backup everything except whats in my list. I
then used the --exclude-from=myexcludefile so rsync would not copy unwanted
files. eg:
/tmp
/var/tmp
/var/lock
.... long list of others
/u1
I have 2 drives on each machine and up until now I have no need to be backing
up the 2nd drive. Thats what the /u1 is for. This meant I would exclude
everything on /u1. I have now put some information in a directory in
/u1/important that needs to be backed up. My problem is that I need the
exclude...
2011 Mar 29
5
Integration with variable bounds
...f this is posted elsewhere I cannot find it. I need to perform multiple
integration where some of the variables are in the bounds of the other
variables. I was trying to use R2Cuba function but cannot set the upper and
lower bounds. My code so far is :
int <- function(y){
u2 = y[1]
z2 = y[2]
u1 =y[3]
z1 = y[4]
ff <- u1*(z1-u1)*u2*(z2-u2)*exp(-0.027*(12-z2))
return(ff)
}
cuhre(4,1,int,rel.tol=1e-3,lower=c(y[4],y[4],4,4),upper=c(12,y[4],12,y[2]),abs.tol=
1e-12,flags= list(verbose=2, final=0))
I know that code is wrong but it shows that variables are in both the upper
and lower bound...
2016 Dec 10
2
Has deleted user, why I can still get info of it
I del user 'u1':
# userdel u1
But:
# groups u1
u1 : g1
Is 'u1' delete?
Thansk
2020 Apr 29
1
grid 4.0 generates wrong results when adding two complex units by sum()
Hi,
In grid 4.0, adding two complex units by `sum()` seems to give wrong results.
In the following example, `u1 + u2` gives the correct result, but `sum(u1, u2)` also `sum(unit.c(u1, u2))` give the wrong results.
```
library(grid)
u1 = 0.4*sum(unit(1, "inch"), unit(1, "mm"))
u2 = 0.1*sum(unit(1, "inch"), unit(1, "mm"))
u1
# [1] 0.4*sum(1inches, 1mm)
u2
# [1] 0.1*su...
2018 Mar 11
4
subsetting comparison problem
...frame1:
C1 C2 C3 C4...... CN
R1 0 1 0 1
R2 1 0 1 1
R3 1 0 0 0
.
.
.
RN
U Dataframe2 :
C1 C2 C3 C4...... CN
U1 1 1 0 1
U2 1 1 1 1
Expected Output:
U1 satisfies R1, R3
U2 satisfies R1, R2, R3
So this is a comparison of dataframes problem, with a subset dimension.
There are 2 dataframe R and U. column names are same. There are...
2006 Nov 21
2
Symbolic derivation using D in package stats - how do I properly convert the returned call into a character string?
...calls or two expressions by a numerical operation, e.g. c = a / b where
both a and b are symbolic expressions and I wish for c to be a symbolic
expression as well?
Take e.g. the following example:
#---------------------------------
# First, I try with d=2, now it works:
d<-2; u<-rep("u1",d); th<-rep("th1",d)
for(i in 1:d) { u[i] <- paste("u",i,sep=""); th[i] <- paste("th",i,sep="") }
dC1 <- expression((((1 - 2 + u1^(-th1)) + u2^(-th1))^(-1/th1)))
dC2 <- expression(u1)
#These expressions were returned from a comb...
2007 Mar 27
7
Replacement in an expression - can't use parse()
Dear all,
Suppose I have a very long expression e. Lets assume, for simplicity, that it is
e = expression(u1+u2+u3)
Now I wish to replace u2 with x and u3 with 1. I.e. the 'new'
expression, after replacement, should be:
> e
expression(u1+x+1)
My question is how to do the replacement?
I have tried using:
> e = parse(text=gsub("u2","x",e))
> e = parse(text=gsub(&quo...
2010 Apr 09
1
Theora encoder directshow Filter configuration
Hi,
I'am using the Xiph Theora Encoder directshow Filter in a csharp
application. It works fine but I would like to modify the configuration,
like the quality settings. I would like to know if there is a possibility to
configure it programmatically without using the propertyPage dialog.
Thanks a lot for your help
Mathieu
-------------- next part --------------
An HTML attachment was
2009 Feb 05
1
optimal control, maximization with several variables?
Dear all,
I would like to solve the following problem, which can be done with optimal control theory or dynamic programming:
max(x,y) a*u1+b*u2+c*f1(u2) s.t. 0<u1<x, 0<u2<f2(x,u2), x'=f3(u1,u2,x)
which can be rewritten if optimal control theory should be applied as
H=a*u1+b*u2+c*f1(u2)+lambda*(x') s.t. 0<u1<x, 0<u2<f2(x,u2)
The maximum principle conditions would solve the problem.
How...
2008 Jan 16
3
Rmpi on Linux x86_64 GNU/Linux
...lled locally.
lamboot -d (or lamboot-d and also recon) works. make -k check from the
lamtest suite passes all tests.
Is this is problem with the -fPIC compiler as in the message? Should it
be modified in the Makefile?
Any help or comments are appreciated, thanks.
* Installing to library
'/u1/uaf/ogorman/R/x86_64-unknown-linux-gnu-library/2.6'
* Installing *source* package 'Rmpi' ...
checking for gcc... gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix o...
2010 Apr 06
1
ITheoraEncodeSettings C# interop
My apologies if this is considered somewhat off-topic but I presume that
this information may be may also be of use to others using these
filters.
Is there someone with a better understanding of COM than I have who can
tell me where I'm going wrong with the following C# interface
definition?
I can set and recover a quality setting using this interface but not the
isUsingQualityMode flag. Not
2007 May 09
3
The 'h' extension problem
Hi all,
There is a problem with my dialplan. here is the dialplan:
exten=> 123,1,Dial(SIP/U1,,Ttg)
exten=> 123,2,Hangup
exten=> h,1,AGI(onhangup.pl)
The problem is whenever U1 is called or calls someone, if U1 hangsup the
call then the h extension is NOT executed. but if the other person hangsup
the call, then the h extension is executed (assuming that the other person
is calling...
2011 Sep 11
3
(no subject)
...lculated cl and cu back into the function f2.
Eventually, I want to find the lambda value and the corresponding cl and cu
values that would
make f2=0.1.
The result of this program does not seem to match the answer I have. Can
some one give me
some hint? Thank you very much.
Hannah
u1 <- -3
u2 <- 4
f1 <- function(lambda,z,p1){
lambda*(p1*exp(u1*z-u1^2/2)+(0.2-p1)*exp(u2*z-u2^2/2))-(1-lambda)*0.8}
f2 <- function(p1,cl, cu){
0.8*(pnorm(cl)+(1-pnorm(cu)))/(0.8*(pnorm(cl)+(1-pnorm(cu)))+p1*(pnorm(cl-
u1)+(1-pnorm(cu-u1)))+(0.2-p1)*(pnorm(cl-u2)+(1-pnorm(cu-u2))))...
2018 Mar 12
0
subsetting comparison problem
......... CN
> R1 0 1 0 1
> R2 1 0 1 1
> R3 1 0 0 0
> .
> .
> .
> RN
>
> U Dataframe2 :
> C1 C2 C3 C4...... CN
> U1 1 1 0 1
> U2 1 1 1 1
>
>
> Expected Output:
> U1 satisfies R1, R3
> U2 satisfies R1, R2, R3
>
I don't think you have communicated what sort of meaning is attached to the word "satisfie...
2005 May 20
0
Message Stopped by Bothways : Block Greater than 40 recip
...uleset - Inbound Messages
0224 17:40:58.421 0 user(s) match rule - Block banned accounts (standard rule)
0224 17:40:58.421 0 user(s) match rule - Block mail from banned domains
0224 17:40:58.421 50 user(s) match rule - Block Subject: Er staat een eCard voor u klaar!
0224 17:40:58.421 Name=U1\B0000edbce.00000001.mml (MAIL,1338) False
0224 17:40:58.421 50 user(s) match rule - Block Subject: Mail Delivery Failure
0224 17:40:58.421 Name=U1\B0000edbce.00000001.mml (MAIL,1338) False
0224 17:40:58.421 50 user(s) match rule - Block Subject: Single-word-subjects
0224 17:40:58.421 Na...
2007 Nov 20
2
Rsync and snapshot backups
I'm currently using rsync to backup home directories using this:
rsync -avx --delete --backup --backup-dir=/u1/home.bak /u0/home/
/u1/home >> ${log}
I'm trying to move to snapshot backups using this:
rsync -avx --delete --backup --backup-dir=/u1/home.bak
--link-dest=../home.current /u0/home/ /u1/home_${datetime} >> ${log}
This works except I no longer get deleted source files moved to
bac...
2014 Nov 18
2
Change Objects on 2 DCs without connection
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Hello,
I like to know what will happend if:
- - one Domain with 2 DCs
- - two Admins working on their Windows-ws with RSAT.
- - Admin1 is connected to DC1
- - Admin2 is connected to DC2
- - Admin1 creats a user "u1" and a group "g1"
- - then the two DCs will lose connection, the user and group is
replicated to DC2
- - now Admin1 makes "u1" a member of "g1"
- - and Admin2 creats a group "g2"
- - Admin2 makes "u1" a member of "g2"
- - Admin2 now...