Displaying 20 results from an estimated 84 matches for "4080".
Did you mean:
400
2009 Sep 07
1
high imap load on large folders
..., {st_mode=S_IFDIR|0700, st_size=3526656, ...}) = 0
fcntl64(10, F_SETFD, FD_CLOEXEC) = 0
fstat64(10, {st_mode=S_IFDIR|0700, st_size=3526656, ...}) = 0
time(NULL) = 1252311837
getdents64(10, /* 52 entries */, 4096) = 4048
getdents64(10, /* 51 entries */, 4096) = 4080
getdents64(10, /* 51 entries */, 4096) = 4080
getdents64(10, /* 51 entries */, 4096) = 4080
getdents64(10, /* 51 entries */, 4096) = 4080
getdents64(10, /* 51 entries */, 4096) = 4080
getdents64(10, /* 51 entries */, 4096) = 4080
getdents64(10, /* 51 entries */, 4096) = 4080
getdents64(10, /*...
2006 Sep 04
4
DO NOT REPLY [Bug 4080] New: rsync can't find basis dirs with -n and nonexistent destination
https://bugzilla.samba.org/show_bug.cgi?id=4080
Summary: rsync can't find basis dirs with -n and nonexistent
destination
Product: rsync
Version: 2.6.9
Platform: All
OS/Version: All
Status: NEW
Severity: normal
Priority: P3
Compone...
2008 Mar 25
2
Re: [Fedora-xen] RHEL5 - Xend will not start after software upgrade
...x86_64
Updated: xen-3.0.3-41.el5.x86_64
After the update, I rebooted the machine. Now, I cannot get xend to start:
[root@saleen xen]# /etc/init.d/xend start
Starting xend: [ OK ]
[root@saleen xen]# ps -ef | grep xend
root 4080 1 0 11:27 ? 00:00:00 python /usr/sbin/xend start
root 4081 4080 0 11:27 ? 00:00:00 python /usr/sbin/xend start
root 4264 3109 0 11:45 pts/1 00:00:00 grep xend
[root@saleen log]# tail -f /var/log/xen/xend.log
self.obj = k...
2010 Mar 03
1
plugin Again
...ve the W= with the email size decrypted, and it is a little
lass that the email size crypto.
For exemple:
I have a email with 6000k in crypto and decrypto the size is 5985 k:
The buffer from istream-concat is 4096, i read 4096 from get_stream_data,
but the result of this read is minor , lets say 4080, but the next read must
be from 4096. The "send to client" must be 4080, to send the correctly data
decrypted.
My Question is, what the variable used in istream-concat, to send the data
to client ? I need to update the stream->pos with my data length ??
I dont know if i made understa...
2009 Jul 02
1
[PATCH 1/1] NET_MAX_PAYLOAD_BYTES typo?
...0102be3..2dfe89e 100644
--- a/fs/ocfs2/dlm/dlmcommon.h
+++ b/fs/ocfs2/dlm/dlmcommon.h
@@ -540,7 +540,7 @@ struct dlm_master_requery
* };
*
* from ../cluster/tcp.h
- * NET_MAX_PAYLOAD_BYTES (4096 - sizeof(net_msg))
+ * O2NET_MAX_PAYLOAD_BYTES (4096 - sizeof(o2net_msg))
* (roughly 4080 bytes)
* and sizeof(dlm_migratable_lockres) = 112 bytes
* and sizeof(dlm_migratable_lock) = 16 bytes
@@ -581,7 +581,7 @@ struct dlm_migratable_lockres
/* from above, 128 bytes
* for some undetermined future use */
-#define DLM_MIG_LOCKRES_RESERVED (NET_MAX_PAYLOAD_BYTES - \
+#define DLM_...
2015 Feb 24
3
Problema con bucle for
...n hotmail.com>
escribió:
> Si he entendido bien el problema, lo que quieres hacer realmente es esto:
> x<- c(24,12,45,68,45)n<-length(x)res=0for(i in 2:n-1){ for(j in
> (i+1):n){ res<- res + (x[i]*x[j]) print(res) }}
> Cuya salida es:
> [1] 288[1] 1368[1] 3000[1] 4080[1] 4620[1] 5436[1] 5976[1] 9036[1]
> 11061[1] 14121
> Varias observaciones:
> 1:n-1 define un vector que empieza en 0, cuando la posición 1 en R es el 1
> por tanto x[0] no existe y no da resultado
> sum(x[i]*x[j]) es una operación que calcula la suma de un vector, en tu
> caso t...
2013 Apr 24
1
Logical/i-nodes lookups give "path resolving failed with ret=-2"
...dev
/dev/root, sector 102196320, root 684, inode 60676040, offset
352583680: path resolving failed with ret=-2
[51078.683016] btrfs: bdev /dev/root errs: wr 0, rd 0, flush 0,
corrupt 35782, gen 0
Manual lookup :
# btrfs inspect-internal logical-resolve -v 51241746432 /
ioctl ret=0, bytes_left=4080, bytes_missing=0, cnt=0, missed=0
# ./btrfs inspect-internal inode-resolve 60676040 /
ioctl ret=-1, error: No such file or directory
Kernel is Linux 3.9-rc8, latest btrfs-progs from Chris Mason''s Git repository.
I am sure I am missing something but I am unable to figure out
what.... Any...
2018 Sep 28
3
error: expected memory with 32-bit signed offset
... # <MCInst #1549 GSLDGTC1
# <MCOperand Reg:364>
# <MCOperand Reg:406>
# <MCOperand Reg:407>>
gslq $10, $11, 4080($12) # encoding: [0xea,0x3f,0x8b,0xc9]
# <MCInst #1554 GSLQ
# <MCOperand Reg:408>
# <MCOperand Reg:409>
# <MCO...
2015 Feb 24
5
Problema con bucle for
Hola, quiero obtener la suma del producto de los elementos de un vector
y cuando construyo el código me aparecen una serie de NA que me impiden
calcular la suma. ¿Alguna sugerencia?
El código es el siguiente:
x<- c(24,12,45,68,45)
n<-length(x)
res<-numeric()
for(i in 1:n-1){
for(j in i+1:n){
res<- sum(x[i]*x[j])
print(res)
}
}
res
[[alternative HTML version deleted]]
2004 Sep 15
3
Second Copy 2000 problem
Hi All,
I have upgraded a customer from windows 2000 to samba 3.0.4 on fedora
core 2. Second copy refuses to work. The log files seem to
indicate that it's trying to access the sharename minus one character.
Second Copy tech support are idiots, of course....
Basically we have a share called data. When trying to access the
share from second copy the log says can't see service
2016 Nov 10
0
tons of dovecot/config processes
...r/sbin/dovecot
dovecot 25336 0.0 0.0 9480 924 ? S 09:40 0:00 dovecot/anvil [2 connections]
root 25344 0.0 0.0 9612 2428 ? S 09:40 0:00 dovecot/log
root 25346 0.0 0.0 12496 3192 ? S 09:40 0:00 dovecot/config
dovenull 25364 0.0 0.0 20908 4080 ? S 09:41 0:00 dovecot/pop3-login [127.0.0.1]
dovecot 25365 0.0 0.0 100236 7776 ? S 09:41 0:00 dovecot/auth [0 wait, 0 passdb, 0 userdb]
root 25368 0.0 0.0 132168 856 pts/1 S+ 09:41 0:00 grep dovecot
so there is a client connected and one dovecot/config....
2020 Jun 23
1
Low Battery Problems
...a
> quick battery test is underway. And it was quick, 15 secs OB.
>
> So a .deep its running now.
> Broadcast message from nut at rpi4.coyote.den (somewhere) (Mon Jun 22
> 18:35:49 202
>
> UPS myups at localhost on battery
>
> upsc myups says zero load, battery.runtime: 4080
> The pi don't draw a lot when its not busy.
>
> I assume it will use about 90 % & switch back to line ending the a
> deep test?
>
> In which case this might take hours,
>
Quicker than I thought, 20:22 when it ran out of battery but instead of
reverting to charge, it d...
2020 Jun 22
2
Low Battery Problems
On Jun 22, 2020, at 3:36 PM, Charles Lepple wrote:
>
> On Jun 22, 2020, at 1:26 PM, Gene Heskett wrote:
>>
>> So I just edited /etc/nut/upsd.users to add both the commands it claims
>> to have but get this response to either:
>
> In your original example, you had multiple “instcmd =“ lines for one user- I think the allowed commands all need to be listed on one
2016 Aug 29
2
IAX UNREACHABLE : Ignoring bindport/bindaddr on reload
...f:ff:ff
3: p4p1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast
state UP group default qlen 1000
link/ether 00:e0:4c:44:01:95 brd ff:ff:ff:ff:ff:ff
inet 192.168.25.25/24 brd 192.168.25.255 scope global p4p1
valid_lft forever preferred_lft forever
inet6 2804:7f1:4080:fe45:2e0:4cff:fe44:195/64 scope global dynamic
valid_lft 86398sec preferred_lft 43198sec
inet6 fe80::2e0:4cff:fe44:195/64 scope link
valid_lft forever preferred_lft forever
4: p5p1: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group
default qlen 1000
link/ether 1...
2001 Dec 07
2
Memory problem
Dear all,
I have written a little R program to convert images. See below. Within the
loop over j (the filenames) memory consumption grows constantly. rm( ... )
inside the loop did not help. Memory does not grow if I remove the writeBin
statements between the two #-------- marks. But obviously this is not
solution I want...
Thanks for any advice.
Manfred Baumstark
P.S. As I'm new to R:
2006 Nov 04
1
My first Asterisk - Not recognizing X100P clone
...1990 IO-APIC-level radeon@pci:0000:02:00.0
NMI: 0
LOC: 492236
ERR: 0
MIS: 0
# ls /proc/zaptel/
1
# cat /proc/zaptel/1
Span 1: ZTDUMMY/1 "ZTDUMMY/1 1"
# ls -la /dev/zap/
total 0
drwxr-xr-x 2 root root 120 Nov 4 11:42 .
drwxr-xr-x 14 root root 4080 Nov 4 11:45 ..
crw------- 1 root root 196, 254 Nov 4 11:42 channel
crw------- 1 root root 196, 0 Nov 4 11:42 ctl
crw------- 1 root root 196, 255 Nov 4 11:42 pseudo
crw------- 1 root root 196, 253 Nov 4 11:42 timer
# cat /etc/zaptel.conf
loadzone=it
fxsks=1
2013 Sep 09
7
Puppet calls the ENC twice for some nodes.
Hi everyone,
I have an issue setting up Puppet with an ENC.
For some nodes, puppet calls my ENC twice with a 2 sec interval.
All my agents share the same configuration file.
Considering this very basic ENC :
#!/bin/bash
> nodeName=$1
> echo `date` $nodeName >> /tmp/encCalls
> echo "---
> classes:
> testClass:"
Here is the content of /tmp/encCalls after a
2016 Aug 29
2
IAX UNREACHABLE : Ignoring bindport/bindaddr on reload
...DCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast
> state UP group default qlen 1000
> link/ether 00:e0:4c:44:01:95 brd ff:ff:ff:ff:ff:ff
> inet 192.168.25.25/24 brd 192.168.25.255 scope global p4p1
> valid_lft forever preferred_lft forever
> inet6 2804:7f1:4080:fe45:2e0:4cff:fe44:195/64 scope global dynamic
> valid_lft 86398sec preferred_lft 43198sec
> inet6 fe80::2e0:4cff:fe44:195/64 scope link
> valid_lft forever preferred_lft forever
> 4: p5p1: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group
> default q...
2002 Jun 17
2
Method to verify existance of trust account?
...names for both the samba server and
the PDC are the same as their NetBIOS names.
Any help or suggestions for troubleshooting this problem would be
appreciated.
Michael Sloan
Network Administrator
The Printing House, Ltd.
email: michael@theprintinghouse.com
voice: (850) 875-1500x155
fax: (850) 875-4080
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",