Displaying 20 results from an estimated 54 matches for "16s".
Did you mean:
16
2008 Jun 18
3
[LLVMdev] JIT bug?
...ines.common.mk with the attached files to make CC/LD
customizable.
in ./kmeans, for
./kmeans -m40 -n40 -t0.00001 -i inputs/random-n65536-d32-c16.txt -p 1 :
make -f Makefile.seq clean
CC='llvm-gcc' LD='llvm-gcc -lm' make -f Makefile.seq
-->works, but is slower than gcc (35s vs 16s on my Intel 32b system)
CC='llvm-gcc -emit-llvm' LD='llvm-ld -lm' make -f Makefile.seq
--> does not work (lot's of NaN's in the output, and much faster (11s))
CC='llvm-gcc -emit-llvm' LD='llvm-ld -lm -disable-opt' make -f Makefile.seq
--> does not wor...
2020 Sep 20
2
expresiones regulares
Hola a tod en s
?alquien sabria como convertir estas frases con expresiones regulares?
1.3ptd -> 1.3 ptd
1.3ptdm -> 1.3 ptdm
4.4ptdm23j -> 4.4 ptdm 23j
7.716s -> 7.7 16s
1.4hola -> 1.4 hola
1.4hola.hola -> 1.4 hola.hola
5.5v6 -> 5.5 v6
5.5v6sdp -> 5.5 v6 sdp
5.5v10sdp -> 5.5 v10 sdp
de forma que esta frase
"hola 1.3ptd 1.3ptdm 4.4ptdm23j 7.716s 1.4hola pepe 1.4hola.hola 5.5v6 5.5v6sdp 5.5v10sdp"
quedara as?
"hola...
2008 Jun 19
0
[LLVMdev] JIT bug?
...C/LD
> customizable.
>
> in ./kmeans, for
> ./kmeans -m40 -n40 -t0.00001 -i inputs/random-n65536-d32-c16.txt -p
> 1 :
>
> make -f Makefile.seq clean
>
> CC='llvm-gcc' LD='llvm-gcc -lm' make -f Makefile.seq
> -->works, but is slower than gcc (35s vs 16s on my Intel 32b system)
>
> CC='llvm-gcc -emit-llvm' LD='llvm-ld -lm' make -f Makefile.seq
> --> does not work (lot's of NaN's in the output, and much faster
> (11s))
>
> CC='llvm-gcc -emit-llvm' LD='llvm-ld -lm -disable-opt' make -f...
2017 Dec 19
0
[PATCH] Implement classless static routes
...tic uint8_t dhcp_discover_hdr[] = {
diff --git a/usr/kinit/ipconfig/main.c b/usr/kinit/ipconfig/main.c
index 7be2a1fc..0e12db4d 100644
--- a/usr/kinit/ipconfig/main.c
+++ b/usr/kinit/ipconfig/main.c
@@ -79,9 +79,22 @@ static void print_device_config(struct netdev *dev)
printf(":\n address: %-16s ", my_inet_ntoa(dev->ip_addr));
printf("broadcast: %-16s ", my_inet_ntoa(dev->ip_broadcast));
printf("netmask: %-16s\n", my_inet_ntoa(dev->ip_netmask));
- printf(" gateway: %-16s ", my_inet_ntoa(dev->ip_gateway));
- printf("dns0 : %-16s &q...
2018 Jun 12
0
[PATCH v2] Implement classless static routes
...s;
printf("IP-Config: %s complete", dev->name);
if (dev->proto == PROTO_BOOTP || dev->proto == PROTO_DHCP)
printf(" (%s from %s)", protoinfos[dev->proto].name,
@@ -79,9 +81,27 @@ static void print_device_config(struct netdev *dev)
printf(":\n address: %-16s ", my_inet_ntoa(dev->ip_addr));
printf("broadcast: %-16s ", my_inet_ntoa(dev->ip_broadcast));
printf("netmask: %-16s\n", my_inet_ntoa(dev->ip_netmask));
- printf(" gateway: %-16s ", my_inet_ntoa(dev->ip_gateway));
- printf("dns0 : %-16s &q...
2019 Jan 18
0
[klibc:master] ipconfig: Implement classless static routes
...s;
printf("IP-Config: %s complete", dev->name);
if (dev->proto == PROTO_BOOTP || dev->proto == PROTO_DHCP)
printf(" (%s from %s)", protoinfos[dev->proto].name,
@@ -80,9 +82,27 @@ static void print_device_config(struct netdev *dev)
printf(":\n address: %-16s ", my_inet_ntoa(dev->ip_addr));
printf("broadcast: %-16s ", my_inet_ntoa(dev->ip_broadcast));
printf("netmask: %-16s\n", my_inet_ntoa(dev->ip_netmask));
- printf(" gateway: %-16s ", my_inet_ntoa(dev->ip_gateway));
- printf("dns0 : %-16s &q...
2018 Jun 18
1
[PATCH v3 1/2] Implement classless static routes
...s;
printf("IP-Config: %s complete", dev->name);
if (dev->proto == PROTO_BOOTP || dev->proto == PROTO_DHCP)
printf(" (%s from %s)", protoinfos[dev->proto].name,
@@ -79,9 +81,27 @@ static void print_device_config(struct netdev *dev)
printf(":\n address: %-16s ", my_inet_ntoa(dev->ip_addr));
printf("broadcast: %-16s ", my_inet_ntoa(dev->ip_broadcast));
printf("netmask: %-16s\n", my_inet_ntoa(dev->ip_netmask));
- printf(" gateway: %-16s ", my_inet_ntoa(dev->ip_gateway));
- printf("dns0 : %-16s &q...
2007 Jun 11
1
2 iosnoop scripts: different results
...192 dad1 R 10.360
ls 5184 /dtrace/mod2/examples 1024 dad1 R 0.285
fsflush 3 /var/tmp/dtrace-1b 8192 dad1 W 0.307
Here is the script:
#!/usr/sbin/dtrace -qs
#pragma D option dynvarsize=16m
BEGIN
{
printf("%16s %5s %32s %7s %10s %2s %7s\n", "COMMAND", "PID", "FILE", "SIZE",
"DEVICE", "RW", "MS");
}
io:::start
{
start[args[0]->b_edev, args[0]->b_blkno] = timestamp;
command[args[0]->b_edev, args[0]->b_blkno] = exec...
2003 May 28
3
Slow computation in for loop
...e parameters
values, like this :
for (k in replicates) {
data <- sampling from a population
for (i in param1) {
for (j in param2) {
result <- function(i, j, data)
}
}
}
With the 'hardest' set of parameters, a single computation of the function
take about 16s on an old Sun Sparc workstation with 64 Mb RAM and don't
access a single time to disk.
But when I launch the for() loops (which generate 220 function calls), disk
gets very sollicitated and the whole process takes as much as 8 to 10
hours, instead of the expected 1 hour.
What's wrong h...
2006 May 08
13
monitoring tcp writes
i''m using the following probe to calculate how many bytes are being written by tcp write calls, by process and total:
fbt:ip:tcp_output:entry
{
this->tcpout_size = msgdsize(args[1]);
@tcpout_size[execname] = sum(this->tcpout_size);
@tcpout_size["TOTAL_TCP_OUT"] = sum(this->tcpout_size);
}
I run this probe for N seconds.
I suppose that if i get the
2009 Sep 23
3
[LLVMdev] [cfe-dev] thoughts about n-bit bytes for clang/llvm
...points out that Texas Instruments
the C5000 series is also 16-bit architecture. I played around with
TI's development environment today, and sure enough, it is perfectly
valid to do:
char foo = 32000;
It would be fairly easy to go through the LLVM/Clang code and change
8s to 16s, fork it, and be done with it. But I hoped we could fix it
in a more general way that would be useful to others. As Mike Stump
suggested would be the case, most of the places have been easy and
straight-forward to fix as we stumbled over them one-by-one.
But some cases are not so easy (for...
2019 Mar 20
1
[PATCH] drm/virtio: add virtio-gpu-features debugfs file.
...dc99046c43..ed0fcda713c3 100644
--- a/drivers/gpu/drm/virtio/virtgpu_debugfs.c
+++ b/drivers/gpu/drm/virtio/virtgpu_debugfs.c
@@ -28,6 +28,30 @@
#include "virtgpu_drv.h"
+static void virtio_add_bool(struct seq_file *m, const char *name,
+ bool value)
+{
+ seq_printf(m, "%-16s : %s\n", name, value ? "yes" : "no");
+}
+
+static void virtio_add_int(struct seq_file *m, const char *name,
+ int value)
+{
+ seq_printf(m, "%-16s : %d\n", name, value);
+}
+
+static int virtio_gpu_features(struct seq_file *m, void *data)
+{
+ struct drm_in...
2023 Aug 21
1
Editing user password hashes
Hi all. I'm migrating from a small OpenLDAP setup and currently have
users' password hashes in {SSHA} and {CRYPT}$5$.16s format.
Can I just ldbedit or ldbmodify user's supplementalCredentials fields
in /var/lib/samba/private/sam.ldb.d/DC%3DAD%2CDC%3DEXAMPLE%2CDC%3DCOM.ldb
to migrate passwords?
Provided that I could get the data structure right. (Documentations
about supplementalCredentials should be here I think...
2009 Dec 10
1
[PATCH] [RFC] lib: add a hex dump lib function
...t index = 0;
+ uint8_t *p = data;
+ uint8_t hex[16 * 3 + 1] = {0, };
+ uint8_t text[16 + 1] = {0, };
+ uint8_t c;
+
+ for (i = 0; i < len; i++) {
+ index = i & 0xf;
+ if (i && index == 0) {
+ /* print the buffer before reset it */
+ printf("%08x %-48s |%-16s|\n", base, hex, text);
+ base += 0x10;
+ memset(hex, 0, sizeof hex);
+ memset(text, 0, sizeof text);
+ }
+
+ c = *p++;
+ sprintf((char *)&hex[index * 3], "%02x ", c);
+ if (c < 0x20 || c > 0x7f)
+ text[index] = '.';
+ else
+ text[index] = c;
+...
2010 Nov 10
0
error bars in lattice barchart
...#39;black', col = c('white', 'gray', 'black'))),
par.strip.text = list(cex=0.9),
auto.key = list(space = 'top', columns = 3, cex = 0.7),
# key = key.variety,
# index.cond = list(c('tRNA', '5S rRNA', 'SRP RNA', 'RNase P', '16S
rRNA')),
# index.cond = list(rep(1,6)),
# ylim = my.ylim,
scales = list(x = list(rot = 45), y=list(tck = 0.4, rot = 0, relation =
'free')),
ly = benchmark$Score - benchmark$Error,
uy = benchmark$Score + benchmark$Error,
prepanel = prepanel.ci,
panel.groups = panel.ci
)
#...
2020 Nov 02
0
[PATCH mlx5-next v1 03/11] net/mlx5_core: Clean driver version and name
...t; - strlcpy(drvinfo->version, DRIVER_VERSION,
> > - sizeof(drvinfo->version));
> > + strlcpy(drvinfo->driver, KBUILD_MODNAME, sizeof(drvinfo-
> > >driver));
> > snprintf(drvinfo->fw_version, sizeof(drvinfo->fw_version),
> > "%d.%d.%04d (%.16s)",
> > fw_rev_maj(mdev), fw_rev_min(mdev),
> > fw_rev_sub(mdev), diff --git
> > a/drivers/net/ethernet/mellanox/mlx5/core/en_rep.c
> > b/drivers/net/ethernet/mellanox/mlx5/core/en_rep.c
> > index 67247c33b9fd..ef2f8889ba0f 100644
> > --- a/drivers/net/et...
2015 Jun 01
2
[LLVMdev] Linking modules across contexts crashes
> On 2015-Jun-01, at 11:06, Reid Kleckner <rnk at google.com> wrote:
>
> I'm pretty sure module linking is expected to occur in the same LLVM context.
Correct.
> IIRC Duncan had some proposal for how ld64 could do something clever with multiple contexts, but I've totally forgotten what it was.
This was for LTO (probably unrelated to Yuri's scenario?).
1.
2006 Sep 10
3
HFSC traffic loss bug, kernel 2.6.16.24
Hello,
I have finally managed to understand HFSC up to a level which allowed me to
create a QoS script which maintains low VoIP latency while running stuff
like eMule.
Unfortunately, HFSC seems to have a severe bug.
Why do I consider this as a bug defenitely?
Well, my script runs without any errors, then QoS works perfectly for some
hours, no error messages in kernel log.
Then randomly the
2019 May 15
6
[nbdkit PATCH v2] Introduce cacheextents filter
...only support req_on=1 in combination with plugins like
vddk, which has no overhead for returning information for multiple extents in
one call, but that call is very time-consuming.
Quick test showed that on a fast connection and a sparsely allocated 16G disk
with a OS installed `qemu-img map` runs 16s instead of 33s (out of which it
takes 5s to the first extents request). For 100G disk with no data on it, that
is one hole extent spanning the whole disk (where there is no space for
improvement) this does not add any noticeable overhead.
Signed-off-by: Martin Kletzander <mkletzan@redhat.com&g...
2019 Jun 11
5
[nbdkit PATCH v2] Introduce cacheextents filter
...nly support req_one=1 in combination with plugins
like vddk, which has no overhead for returning information for multiple extents
in one call, but that call is very time-consuming.
Quick test showed that on a fast connection and a sparsely allocated 16G disk
with a OS installed `qemu-img map` runs 16s instead of 33s (out of which it
takes 5s to the first extents request). For 100G disk with no data on it, that
is one hole extent spanning the whole disk (where there is no space for
improvement) this does not add any noticeable overhead.
Signed-off-by: Martin Kletzander <mkletzan@redhat.com&g...