search for: realsize

Displaying 3 results from an estimated 3 matches for "realsize".

Did you mean: realize
2009 May 11
5
Access Printer port pin by dll
Hi there, Does anyone have the experience of access/control each pins of printer port by calling 3rd party dll file? It works well on windows XP/2000 O.S. but seems have no function under wine (I installed 1.0.1) Any reply will be high appreciation ! Thank you.
2013 Dec 14
1
Can''t boot converted SLES11SP2/OES11 domU
...0.000000] Normal 0x00100000 -> 0x00100800 [ 0.000000] Movable zone start PFN for each node [ 0.000000] early_node_map[2] active PFN ranges [ 0.000000] 0: 0x00000000 -> 0x00100000 [ 0.000000] 0: 0x00100800 -> 0x00100800 [ 0.000000] Normal zone: 28 pages exceeds realsize 0 [ 0.000000] setup_percpu: NR_CPUS:512 nr_cpumask_bits:512 nr_cpu_ids:4 nr_node_ids:1 [ 0.000000] PERCPU: Embedded 18 pages/cpu @ffff8800fbc00000 s41088 r8192 d24448 u524288 [ 0.000000] Swapping MFNs for PFN 728 and fbc05 (MFN 2b36a00 and da036c) [ 0.000000] Built 1 zonelists in Zone...
2020 May 19
1
[PATCH nbdkit] common/include: Add locale-safe ascii_strcasecmp and ascii_strncasecmp.
...://")) == 0) { if (!h->accept_range) { nbdkit_error ("server does not support 'range' (byte range) requests"); goto err; @@ -562,7 +563,7 @@ header_cb (void *ptr, size_t size, size_t nmemb, void *opaque) const char *bytes = "bytes"; if (realsize >= strlen (accept_ranges) && - strncasecmp (header, accept_ranges, strlen (accept_ranges)) == 0) { + ascii_strncasecmp (header, accept_ranges, strlen (accept_ranges)) == 0) { const char *p = strchr (header, ':') + 1; /* Skip whitespace between the header nam...