Displaying 14 results from an estimated 14 matches for "58s".
Did you mean:
58
2008 Dec 01
7
DIF content is invalid?
...f->size = args[0]->b_bcount;
}
io:::done
/start[self->pid, self->name, args[0]->b_edev, args[0]->b_blkno,
self->size]/
{
this->elapsed = timestamp - start[self->pid, self->name,
args[0]->b_edev, args[0]->b_blkno, self->size];
printf("%5u %10s %58s %2s %8u %8u %3d.%03d\n", self->pid,
args[1]->dev_statname,
self->name, args[0]->b_flags & B_READ ? "R" : "W",
args[0]->b_bcount, self->size,
this->elapsed / 1000000, (this->elapsed / 1000) % 1000);
start[s...
2008 Dec 21
0
Profiling a recoll stress-test
...S is latest leopard.
I think the process is io-bound.
63061 recollinde 10.4% 3:58:06 1 15 486 435M 188K 435M 452M
I''m using those 2 scripts found here: http://www.sun.com/software/solaris/howtoguides/dtracehowto.jsp#3
#!/usr/sbin/dtrace -qs
BEGIN
{
printf("%10s %58s %2s\n", "DEVICE", "FILE", "RW");
}
io:::start
{
printf("%10s %58s %2s\n", args[1]->dev_statname, args[2]->fi_pathname,
args[0]->b_flags & B_READ ? "R" : "W");
}
#!/usr/sbin/dtrace -s
syscall::write:entry
{
@[u...
2000 May 10
1
digital silence; not bug?
...mple < zero.ogg
Input bitstream contained 1 logical bitstream section(s).
Total bitstream playing time: 58 seconds
logical bitstream section 1 information:
44100Hz 2 channels bitrate 0kbps serial number=146195353
compressed length: 17485 bytes play time: 58s
Monty
--- >8 ----
List archives: http://www.xiph.org/archives/
Ogg project homepage: http://www.xiph.org/ogg/
2018 Apr 07
3
Database corruption after clean rebuild
...ites:
> I've applied the path to notmuch 0.26.1 without success.
>
> $ rm -rf ~/.mail/.notmuch
> $ LD_LIBRARY_PATH=/hidden-path/notmuch-0.26.1/lib/:$LD_LIBRARY_PATH
> ./notmuch new
> Found 20065 total files (that's not much mail).
> Processed 20065 total files in 58s (341 files/sec.).
> Added 19605 new messages to the database.
>
> $ xapian-check .mail/.notmuch/xapian/
> docdata:
> blocksize=8K items=63 firstunused=1 revision=2 levels=0 root=0
> B-tree checked okay
> docdata table structure checked OK
> termlist:
> ...
2007 Aug 01
1
Re : Custom axis
...Florent Bresson
----- Message d'origine ----
De : "joris.dewolf at cropdesign.com" <joris.dewolf at cropdesign.com>
? : Florent Bresson <f_bresson at yahoo.fr>
Cc : r-help at stat.math.ethz.ch; r-help-bounces at stat.math.ethz.ch
Envoy? le : Mercredi, 1 Ao?t 2007, 12h01mn 58s
Objet : Re: [R] Custom axis
x <- 1:10
y <- rnorm(10,10,1)
x2 <- 3*x + 2
plot(y ~ x, xaxt = "n")
axis(side=1,at = x, labels = x2)
Joris
Florent Bresson...
2011 Jul 02
1
Speed Advice for R --- avoid data frames
...cat("\n**** Now as data frame\n")
example( as.data.frame( matrix( rnorm(C*R), nrow=R ) ) )
The following are the reported timing under R 2.12.0 on a Mac Pro 3,1
with ample RAM:
matrix, columns: 0.01s
matrix, rows: 0.175s
data frame, columns: 53s
data frame, rows: 56s
data frame, names: 58s
Data frame access is about 5,000 times slower than matrix column
access, and 300 times slower than matrix row access. R's data frame
operational speed is an amazing 40 data accesses per seconds. I have
not seen access numbers this low for decades.
How to avoid it? Not easy. One way is to...
2011 Dec 02
12
puppet master under passenger locks up completely
...rocessed: 947 Uptime: 9h 23m 14s
PID: 1596 Sessions: 1 Processed: 607 Uptime: 9h 23m 15s
PID: 1722 Sessions: 1 Processed: 953 Uptime: 9h 23m 9s
PID: 2218 Sessions: 1 Processed: 378 Uptime: 9h 22m 43s
PID: 4286 Sessions: 1 Processed: 178 Uptime: 8h 50m 58s
PID: 5749 Sessions: 1 Processed: 708 Uptime: 8h 20m 20s
PID: 4253 Sessions: 1 Processed: 820 Uptime: 8h 51m 1s
PID: 5624 Sessions: 1 Processed: 126 Uptime: 8h 20m 24s
PID: 7328 Sessions: 1 Processed: 811 Uptime: 7h 49m 17s
PID: 7274 Sessions: 1 Pro...
2018 Apr 07
1
Database corruption after clean rebuild
...lied the path to notmuch 0.26.1 without success.
>>
>> $ rm -rf ~/.mail/.notmuch
>> $ LD_LIBRARY_PATH=/hidden-path/notmuch-0.26.1/lib/:$LD_LIBRARY_PATH
>> ./notmuch new
>> Found 20065 total files (that's not much mail).
>> Processed 20065 total files in 58s (341 files/sec.).
>> Added 19605 new messages to the database.
>>
>> $ xapian-check .mail/.notmuch/xapian/
>> docdata:
>> blocksize=8K items=63 firstunused=1 revision=2 levels=0 root=0
>> B-tree checked okay
>> docdata table structure checked...
2018 Apr 29
1
Database corruption after clean rebuild
...0.26.1 without success.
>>>
>>> $ rm -rf ~/.mail/.notmuch
>>> $ LD_LIBRARY_PATH=/hidden-path/notmuch-0.26.1/lib/:$LD_LIBRARY_PATH
>>> ./notmuch new
>>> Found 20065 total files (that's not much mail).
>>> Processed 20065 total files in 58s (341 files/sec.).
>>> Added 19605 new messages to the database.
>>>
>>> $ xapian-check .mail/.notmuch/xapian/
>>> docdata:
>>> blocksize=8K items=63 firstunused=1 revision=2 levels=0 root=0
>>> B-tree checked okay
>>> doc...
2015 Nov 26
1
Issues starting RStudio Server and release file expiration under Debian (Jessie)
...docs-debian2:~$ sudo rstudio status
sudo: rstudio: command not found
debian at r-docs-debian2:~$ sudo rstudio-server status
? rstudio-server.service - RStudio Server
Loaded: loaded (/etc/systemd/system/rstudio-server.service; enabled)
Active: active (running) since Thu 2015-11-26 15:03:39 AEDT; 58s ago
Process: 19464 ExecStop=/usr/bin/killall -TERM rserver (code=exited, status=0/SUCCESS)
Process: 19465 ExecStart=/usr/lib/rstudio-server/bin/rserver (code=exited, status=0/SUCCESS)
Main PID: 19467 (rserver)
CGroup: /system.slice/rstudio-server.service
??19467 /usr/lib/rstudio-serve...
2008 Mar 18
6
[PATCH] permute with 2MB chunk
The memory permutation cause a slow down in case of a save/restore (bug
1143). It works better when the mixing is done with 2MB chunks.
Signed-off-by: Jean Guyader <jean.guyader@eu.citrix.com>
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
2012 Sep 28
8
Puppet/Passenger :: Could not retrieve catalog from remote server:Error 403 on server
Greetings,
I have a tested, working setup of Puppet and Webrick. I can add nodes,
classes, etc.
Then I switched to Puppet/Passenger and get the error below.
Puppet, Apache and Passenger are all up.
I have installed using *YUM *repos and *GEMs*. So, I have the most updated
packages they have.
Puppet version: 2.7.19
Ruby version: 1.8.7 (2011-06-30 patchlevel 352 i386)
Apache: 2.2.15
The error
2003 Aug 13
6
5.1-R-p2 crashes on SMP with AMI RAID and Intel 1000/Pro
Dear Sirs.
It seems to me a never ending story. We run a box with a TYAN Thunder
2500 Dual SMP mainboard, 2GB ECC Tyan certified memory, AMI Enterprise
1600 RAID adapter and additional Intel 1000/Pro server type (64 bit)
GBit LAN NIC. With FreeBSD 4.8 this was stable, but to achive this
state was really hard! It is a story similar to that what happend when
we changed towards FreeBSD
2011 Feb 03
1
builder-ubuntu libguestfs success 8d7d7c4ecfd202e04d18736718e9c5bb125ce4f0
...kB]
Get:201 http://gb.archive.ubuntu.com/ubuntu/ natty/main liblzma2 amd64 5.0.0-2 [85.2kB]
Get:202 http://gb.archive.ubuntu.com/ubuntu/ natty/universe scrub amd64 2.4-2 [24.3kB]
Get:203 http://gb.archive.ubuntu.com/ubuntu/ natty/universe zerofree amd64 1.0.1-2ubuntu1 [7272B]
Fetched 85.8MB in 2min 58s (479kB/s)
resolved packages: adduser_3.112+nmu1ubuntu4_all.deb attr_1%3a2.4.44-2_amd64.deb augeas-lenses_0.7.4-0ubuntu2_all.deb base-files_5.0.0ubuntu26_amd64.deb base-passwd_3.5.22_amd64.deb bash_4.1-2ubuntu5_amd64.deb binutils_2.21-5ubuntu1_amd64.deb bsdmainutils_8.2.2_amd64.deb bsdutils_1%3a2.17...