Displaying 20 results from an estimated 15593 matches for "fi".
Did you mean:
if
2011 Mar 26
2
Building a matrix so that matrix(r, c)<-matrix(c, r) with No For Loops
Hello,
I would like to take advantage of the upper.tri() function here but I don't
know exactly. Here is some working code...
i<-5
fi<-matrix(0,nrow=i,ncol=i)
for(r in 1:i){
for(c in 1:i){
if(r==c){
fi[r,c]<-1
}else if(r<c){
fi[r,c]<-1-runif(1)^.5
}else{
fi[r,c]<-fi[c,r]
}
}
}
So far I know I can simplify this code to 5 lines (no for loops):
i<-5
fi<-matrix(nrow=i,ncol=i)
fi[upper.tri(fi)]<-1-runif(len...
2014 Dec 06
1
Bug#772274: xen-utils-common: when upgrading package: insserv: Service xenstored has to be enabled to start service xendomains
...(4.4.1-5) ...
insserv: Service xenstored has to be enabled to start service xendomains
insserv: Service xenconsoled has to be enabled to start service xendomains
insserv: exiting now!
update-rc.d: error: insserv rejected the script header
dpkg: erreur de traitement du paquet xen-utils-common (--configure) :
le sous-processus script post-installation install? a retourn? une erreur de
sortie d'?tat 1
...
then xen-utils-4.4 and xen-utils-common are not configured
-- System Information:
Debian Release: 8.0
APT prefers testing-updates
APT policy: (500, 'testing-updates'), (500,...
2010 Jan 21
0
domain join & kinit woes
...008R1
client: Ubuntu 10.04 (lucid alpha2), with samba 3.4.3, MIT 1.7
I get an error when joining the domain, and when trying to kinit using the
machine principal with any other name than HOST$ (and that worked only
after forcing the crypto to des-cbc-crc):
nexus6 etc # net ads join -W ORG.AALTO.FI -U wa.aaltonen
Enter wa.aaltonen's password:
Using short domain name -- AALTO
Joined 'NEXUS6' to realm 'org.aalto.fi'
[2010/01/21 10:49:35, 0] libads/kerberos.c:332(ads_kinit_password)
kerberos_kinit_password NEXUS6$@ORG.AALTO.FI failed: Client not found in Kerberos database...
2012 Sep 30
21
Xen 4.0.4, kernel 3.5.0 HVM crash and kernel BUG
Hi,
I''m trying to get Windows Server 2008 R2 installation booting on Xen 4.0.4.
Using the following config:
kernel = "/usr/lib/xen/boot/hvmloader"
builder = "hvm"
shadow_memory = "8"
memory = "4096"
name = "ts"
vcpus = "8"
cpus = ["0", "1", "2", "3", "4", "5", "6", "7&...
2010 Feb 17
0
[PATCH 2/2 V2] btrfs, a new tool to manage a btrfs filesystem; man page
...ode of the man page of btrfs.
The main changes from my previous patch are:
- Rearranged the short command in order to avoid conflicts
- Renamed the ''create'' verb is ''subvolume''
Thanks to Daniel for some tweaks on the syntax
BR
G.Baroncelli
diff --git a/man/Makefile b/man/Makefile
index 4e8893b..4a90b75 100644
--- a/man/Makefile
+++ b/man/Makefile
@@ -7,13 +7,16 @@ mandir = $(prefix)/man
man8dir = $(mandir)/man8
MANPAGES = mkfs.btrfs.8.gz btrfsctl.8.gz btrfsck.8.gz btrfs-image.8.gz \
- btrfs-show.8.gz
+ btrfs-show.8.gz btrfs.8.gz
all: $(MANPAGES...
2013 Aug 02
2
[PATCH] Btrfs: allow compressed extents to be merged during defragment
...not going to change the extent but add a reference on the data.
So we''re able to allow such compressed extents to be merged into
one bigger extent if they''re pointing to the same data.
Signed-off-by: Liu Bo <bo.li.liu@oracle.com>
---
fs/btrfs/inode.c | 13 ++++++++-----
1 file changed, 8 insertions(+), 5 deletions(-)
diff --git a/fs/btrfs/inode.c b/fs/btrfs/inode.c
index 55dda87..a7aeecc 100644
--- a/fs/btrfs/inode.c
+++ b/fs/btrfs/inode.c
@@ -2229,7 +2229,7 @@ static noinline bool record_extent_backrefs(struct btrfs_path *path,
static int relink_is_mergable(struct...
2011 Jul 19
6
[PATCH 0/6] Move the infor for the help/man page in the source
...t
http://cassiopea.homelinux.net/git/?p=btrfs-progs-unstable.git
BR
G.Baroncelli
---
Goffredo Baroncelli (6):
Add info for the commands.
Add the header/footer/introduction of the man page.
helpextract: tool to extract the info for the help from the source.
Update the makefile for generating the man page.
Show the help messages from the info in the comment.
Update the makefile for generating the help messages.
Makefile | 28 +++
btrfs.c | 210 +++++++++++++++++++++++++
btrfs_cmds.c | 276 +++++++++++++++++++++++++++++++++
h...
2005 May 19
0
CentOS-announce Digest, Vol 3, Issue 9
...entos.org/mailman/listinfo/centos-announce
or, via email, send a message with subject or body 'help' to
centos-announce-request at centos.org
You can reach the person managing the list at
centos-announce-owner at centos.org
When replying, please edit your Subject line so it is more specific
than "Re: Contents of CentOS-announce digest..."
Today's Topics:
1. CESA-2005:074 Low CentOS 3 ia64 rsh - security update
(Pasi Pirhonen)
2. CESA-2005:106 Low CentOS 3 ia64 openssh - security update
(Pasi Pirhonen)
3. CESA-2005:256 Low CentOS 3 ia64 glibc -...
2011 Feb 21
1
[PATCH/cygwin]: Revised sshh-host-config script
Hi,
could somebody with checkin rights please apply the below patch?
It would be helpful to have this in 5.9p1.
I revamped the Cygwin-specific service installer script ssh-host-config.
The actual functionality is the same, the revisited version is just more
exact when it comes to check for problems which disallow to run certain
aspects of the script. So, part of this script and the also rearranged
service helper script library "csi...
2012 May 15
2
Sendmail problem - baffled
Our backup mail server (which I have just re-configured) tries to
contact the primary mail server, and fails. My log shows repeatedly
"connection refused":
May 15 22:21:41 mx2 sm-mta-rx[8674]: q4FIhPij007483: makeconnection
(mail.greenspot.fi. [83.143.217.182]) failed: Connection refused by
mail.greenspot.fi.
May 15 22:21:41 mx2 sm-m...
2006 Jan 08
2
Zaptel make install error
/bin/sh: -c: line 0: syntax error near unexpected token `;'
/bin/sh: -c: line 0: `if [ -n "" ]; then if [ -f ]; then mv -f .bak ; fi; cat .bak | grep -v "alias char-major-250" | grep -v "post-install torisa /sbin/ztcfg" | grep -v "post-install wcfxsusb /sbin/ztcfg" | grep -v "alias wctdm" | grep -v "post-install wctdm /sbin/ztcfg" > ; if ! grep "options torisa"...
2010 Jul 21
0
[PATCH] RFC: Advanced Storage Configuration
This patch introduces the concept of an "Advanced Storage Configuration", specifically for automated installs (although it could be hooked into manual install), while preserving the original style of specifying LVs. It accomplishes the following:
* Add an optional AppVG
* Offer new optional LVs - Data2,Swap2 - as part of the new AppVG
* Allows the specifi...
2010 Dec 17
6
XCP 1.0 Beta - Boot-from-SAN with multipathing - howto?
Hi
How can i enable this feature because:
Running /opt/xensource/libexec/mpp-rdac --enable it says:
No module mppUpper found for kernel 2.6.32.12-0.7.1.xs1.0.0.298.170582xen,
aborting.
There is no MPP modules...
Terveisin/Regards,
Pekka Panula, Sofor Oy - Jatkuvat palvelut
_______________________________________________
Xen-users mailing list
Xen-users@lists.xensource.com
2012 Jan 27
2
[LLVMdev] Double spills with Greedy regalloc
Hello,
I noticed the following interesting code sequence while compiling a piece
of code with the backend I'm developing. Probably this issue is for Jakob,
but anyways this is what I'm getting:
STDWPtrQRr <fi#12>, 0, %R25R24; mem:ST2[FixedStack12](align=1)
STDWPtrQRr <fi#12>, 0, %R25R24; mem:ST2[FixedStack12](align=1)
STDWPtrQRr <fi#13>, 0, %R23R22; mem:ST2[FixedStack13](align=1)
STDWPtrQRr <fi#13>, 0, %R23R22; mem:ST2[FixedStack13](align=1)
STDWPtrQRr <fi#14>,...
2001 Mar 27
0
Kerberos4 / AFS library issues
Could people who have been having issues with Portable OpenSSH and
Kerberos 4 please try the following patch. You will need to run
"autoreconf" (i.e you will need autoconf installed) and then run
./configure again.
Index: configure.in
===================================================================
RCS file: /var/cvs/openssh/configure.in,v
retrieving revision 1.267
diff -u -r1.267 configure.in
--- configure.in 2001/03/18 23:09:28 1.267
+++ configure.in 2001/03/27 06:16:46
@@ -404,75 +404,6 @@...
2023 Jan 12
1
problems with sysvol after fsmo transfer
Thank you so far. But unfortunately I could not fix the problems. So I
decided to start over again at a situation where all the fsmo roles
resides on the old controller.
Here is a transcript of what I did and the errors reported:
The inititial position
srv-kb-dc1:~ # samba-tool fsmo show
SchemaMasterRole owner: CN=NTDS
Settings,CN=SRV-KB-PRIM...
2007 Jul 12
1
[LLVMdev] backend problem with LiveInterval::removeRange
...CopyFromReg 0x88c88a0, 0x88c90f8
*** Scheduling [4]: SU(6): 0x88c8b10: ch = SW 0x88c9160, 0x88c8a30, 0x88c8fc8, 0x88c8ec8
*** Scheduling [5]: SU(5): 0x88c8a98: i32,ch = LW 0x88c8a30, 0x88c89c8, 0x88c8b10
*** Scheduling [6]: SU(4): 0x88c8970: ch = BNE 0x88c8a98, 0x88c9060, 0x88c9540, 0x88c8a98:1
*** Final schedule ***
SU(0): 0x88c88a0: ch = EntryToken
SU(1): 0x88c9060: i32 = ADDiu 0x88c9360, 0x88c88f8
SU(2): 0x88c93c8: i32,ch = CopyFromReg 0x88c88a0, 0x88c9470
SU(7): 0x88c8ec8: ch = SW 0x88c93c8, 0x88c8a30, 0x88c89c8, 0x88c88a0
SU(3): 0x88c9160: i32,ch = CopyFromReg 0x88c88a0, 0x88c90f8
SU(6): 0...
2011 May 25
1
Hook script to preserve one partition untouched during install
...o
create HostVG and AppVG with all the available space. It may be the case
that RHEV-H needs to respect and co-exist with a proposed partitioning
scheme, not getting all the storage space for HostVG and AppVG volume
groups.
The proposed solution adds the required logic as a hook script to
ovirt-config-boot service that is activated only during the end of the
installation process (firstboot parameter), right before rebooting into
the installed RHEV-H.
In high level, this script behaves as the following:
a) Consume a kernel parameter that indicates which is the HDD device and
partition to prese...
2005 Jun 30
5
wi-fi phone advice
Hi:
I want to connect a wi-fi phone to my Asterisk box
through a wi-fi AP so I can make voip calls.
please send me your recomendation about what wi-fi
phone I should be looking for. Anybody tried the
HOP1502 Wi-Fi IP phone. Its listed price $39.
Regards;
Chawki
____________________________________________________
Yahoo...
2010 Mar 27
1
R runs in a usual way, but simulations are not performed
...asticity =
additive or mixed): simulate data, compute ML estimates of covariance
components parameters (on the basis of maxLik package), and compute the
resulting beta estimates. Simulations are performed by repeat command
and, after every simulation step, the result is exported to an external
csv file. Since sometimes an error was encountered during the simulation
and the entire program broke down, I made use of the function TRY at
critical evaluation steps to prevent the cessation of the program
evaluation: R evaluates the result and if there should be a problem, it
moves onto another step. T...