Displaying 20 results from an estimated 24 matches for "hhu".
Did you mean:
hh
2019 Oct 08
2
Case sensitivity in :addresses in sieve vacation scripts
Hi,
I have recently updated from Dovecot 2.2 to 2.3. Since I have noticed
that vacation responses from sieve are not working the same anymore.
For example, my sieve script looks like this:
vacation :days 1 :addresses ["Kippels at hhu.de","julian.kippels at hhu.de"]
it used to be that I got a vacation response if I sent a mail to
kippels at hhu.de and Kippels at hhu.de. Now I only get a response for
Kippels at hhu.de, not for kippels at hhu.de.
I cant say for sure, but I suppose this behaviour changed with the
up...
2019 Oct 08
0
Case sensitivity in :addresses in sieve vacation scripts
...Kippels via dovecot wrote:
> Hi,
>
> I have recently updated from Dovecot 2.2 to 2.3. Since I have noticed
> that vacation responses from sieve are not working the same anymore.
> For example, my sieve script looks like this:
>
> vacation :days 1 :addresses ["Kippels at hhu.de","julian.kippels at hhu.de"]
>
> it used to be that I got a vacation response if I sent a mail to
> kippels at hhu.de and Kippels at hhu.de. Now I only get a response for
> Kippels at hhu.de, not for kippels at hhu.de.
> I cant say for sure, but I suppose this beha...
2011 Jun 11
1
isohybrid.c patch: to support hex parameters
...1 || head > 256)
+??????????? head = strtoul(optarg, &err, 0);
+??????????? if (head < 1 || head > 256)
???????????????? errx(1, "invalid head: `%s', 1 <= head <= 256", optarg);
???????????? break;
?
???????? case 's':
-??????????? if (!sscanf(optarg, "%hhu", §or) || sector < 1 || sector > 63)
+??????????? sector = strtoul(optarg, &err, 0);
+??????????? if (sector < 1 || sector > 63)
???????????????? errx(1, "invalid sector: `%s', 1 <= sector <= 63", optarg);
???????????? break;
?
???????? case 'e...
2011 Jul 19
4
[PATCH v1 0/2] Support dropping of capabilities from early userspace.
This patchset applies to klibc mainline. As is it will probably collide
with Maximilian's recent patch to rename run-init to switch_root posted
last week.
To boot an untrusted environment with certain capabilities locked out,
we'd like to be able to drop the capabilities up front from early
userspace, before we actually transition onto the root volume.
This patchset implements this by
2007 Oct 19
2
Help deeded: Does a R graphical function return something special?
Hi All,
When I tried to catch a returned value from a R graphical
function or command (e.g., plot, lines, points, abline, title,
xyplot, etc.), I always get a NULL value if it is executed
correctly. For example:
x <- c(1,2,3,4,5,9,13,19,36)
plot.Comm <- plot(x) # plot.Comm <- try(eval(plot(x)))
then plot.Comm has a NULL value. Obviously, this is not a good way
to check if or
2007 Oct 10
0
Thank you, and your suggestion works
...'try-error' chr "Error in eval(expr, envir, enclos) :
> object
> \"x\" not found\n"
>> z <- try(eval(parse(text="x <- 1:20")))
>> str(z)
> int [1:20] 1 2 3 4 5 6 7 8 9 10 ...
>>
>
>
> On 10/10/07, HU,ZHENGJUN <hhu at ufl.edu> wrote:
>> Hi All,
>>
>> I entered a R statement, e.g. 1:20 = x or log("a") on an HTML
>> form and passed it to a R-CGI script. Obviously, neither of both
>> is a correct R statement or expression. However, my R-CGI script
>> could not r...
2007 Oct 10
2
How to catch a R error in R code
Hi All,
I entered a R statement, e.g. 1:20 = x or log("a") on an HTML
form and passed it to a R-CGI script. Obviously, neither of both
is a correct R statement or expression. However, my R-CGI script
could not return and report the error message to the Web site even
though it received the statement. I tried to use some R built-in
functions of try, tryCatch, eval, expression,
2012 Jun 26
2
[GIT PULL] elflink bug fixes
...(0 on success),
+ or -1 on invocation failure */
+uint32_t pxe_dns(const char *hostname)
{
- return dns_resolv(name);
-}
+ com32sys_t regs;
+ union {
+ unsigned char b[4];
+ uint32_t ip;
+ } q;
+ char *lm_hostname;
+
+ /* Is this a dot-quad? */
+ if (sscanf(hostname, "%hhu.%hhu.%hhu.%hhu",
+ &q.b[0], &q.b[1], &q.b[2], &q.b[3]) == 4)
+ return q.ip;
+
+ lm_hostname = lstrdup(hostname);
+ if (!lm_hostname)
+ return 0;
+
+ memset(®s, 0, sizeof regs);
+ regs.eax.w[0] = 0x0010;
+ regs.es = SEG(lm_hostname);
+ /* regs.ebx...
2018 May 10
2
[PATCH libldm v3 0/2] Make libldm to parse and return volume GUID.
v2: wrap commit message, "PATCH libldm" prefix.
v3: correctly initialize and free GLib resources.
The result of this patch might be used by libguestfs to return drive
mappings for LDM volumes.
Note, that "show volume" ldmtool command already returns hint which
is a drive letter assigned by Windows to corresponding volume. But
it is not reliable source of information. More
2018 May 14
3
[PATCH libldm v4 0/3] Make libldm to parse and return volume GUID.
v2: wrap commit message, "PATCH libldm" prefix.
v3: correctly initialize and free GLib resources.
v4: gtk-doc is updated to reflect presence of new volume GUID field.
The result of this patch might be used by libguestfs to return drive
mappings for LDM volumes.
Note, that "show volume" ldmtool command already returns hint which
is a drive letter assigned by Windows to
2010 Mar 31
0
You are right and the problem is solved. Re: about the possible errors in Rgraphviz Package
...>> [1] "1.24.0"
>>> graphvizVersion()
>> $installed_version
>> [1] ?????????2.20.3?????????
>>
>> $build_version
>> [1] ?????????2.20.3?????????
>>
>>
>>
>>
>> On Wed, Mar 31, 2010 at 9:56 AM, HU,ZHENGJUN <hhu at ufl.edu> wrote:
>>> Hi Martin,
>>>
>>> ??????It is really a 'PATH' problem. After adding C:\Program
>>> Files\Graphviz2.20\bin to the 'PATH' environment variable, the
>>> Rgraphviz
>>> package can be loaded without any er...
2012 Jul 16
5
[PATCH 0/5] Deleting __intcall() from Syslinux
From: Matt Fleming <matt.fleming at intel.com>
Since we can't use __intcall() for EFI, and since we can now have the
ELF module code resolve all our symbols at runtime, we should delete
as many references to __intcall() as possible and just access the
symbols directly.
The most interesting patch is the support for weak symbols. We need to
be able to reference derivative-specific
2012 Aug 14
1
[GIT PULL] elflink fixes
...e_dns.c
@@ -43,12 +43,12 @@
or -1 on invocation failure */
uint32_t pxe_dns(const char *hostname)
{
- com32sys_t regs;
union {
unsigned char b[4];
uint32_t ip;
} q;
char *lm_hostname;
+ uint32_t status;
/* Is this a dot-quad? */
if (sscanf(hostname, "%hhu.%hhu.%hhu.%hhu",
@@ -59,17 +59,9 @@ uint32_t pxe_dns(const char *hostname)
if (!lm_hostname)
return 0;
- memset(®s, 0, sizeof regs);
- regs.eax.w[0] = 0x0010;
- regs.es = SEG(lm_hostname);
- /* regs.ebx.w[0] = OFFS(lm_hostname); */
-
- __intcall(0x22, ®s,...
2006 Feb 12
1
problem with Too many open files
...d domains only = No
winbind nested groups = No
winbind max idle children = 3
winbind nss info = template
comment =
path =
username =
invalid users =
valid users =
admin users = CPHOIL+hbr, CPHOIL+jfj, CPHOIL+ssa, CPHOIL+obl,
CPHOIL+hhu, CPHOIL+ckm, CPHOIL+toh, CPHOIL+esl, CPHOIL+bsv, CPHOIL+dja,
CPHOIL+kik, CPHOIL+xren, CPHOIL+exchangeservice
read list =
write list =
printer admin =
force user =
force group =
read only = Yes
acl check permissions = Yes
acl group control...
2010 Mar 31
1
You are right and the problem is solved. Re: about the possible errors in Rgraphviz Package
Hi Martin,
It is really a 'PATH' problem. After adding C:\Program
Files\Graphviz2.20\bin to the 'PATH' environment variable, the
Rgraphviz package can be loaded without any error messages.
Sorry that I ONLY set my 'PATH' environment variable correctly
for R but not for Graphviz.
Thank you and Duncan so much for your great help.
Howard
On Tue Mar 30 18:12:54
2012 Mar 11
1
CRAN (and crantastic) updates this week
...liability). This package contains sample size estimation
functions for both the power-based and confidence interval-based
methods, with binary or multinomial outcomes and two through six
raters.
* koRpus (0.04-27)
Maintainer: m.eik michalke
Author(s): m.eik michalke <meik.michalke at hhu.de>, with contributions from Earl
Brown <eabrown at csumb.edu>, Alberto Mirisola, and Laura
Hauser
License: GPL (>= 3)
http://crantastic.org/packages/koRpus
A set of tools to analyze texts. Includes, amongst others, functions
for automatic language det...
2018 May 15
12
[PATCH libldm 00/12] New API: an ability to retrieve created device-mapper devices back after they have been created.
The main goal of these patch series is to implement a new API that allows to retrieve created device-mapper devices for volumes and partitions back after they have been created.
As part of this patch:
- required libdevmapper version was bumped to 1.02. I think it is safe because it was released more then 10 years ago;
- newer version of libdevmapper allowed to simplify code base a little bit;
-
2015 Dec 15
8
[PATCH] xfs: Add support for v3 directories
...? sf->hdr.i8count : sf->hdr.count;
struct fs_info *fs = parent->fs;
struct inode *inode;
+ xfs_dir2_inou_t *inou;
xfs_intino_t ino;
xfs_dinode_t *ncore = NULL;
xfs_debug("dname %s parent %p core %p", dname, parent, core);
xfs_debug("count %hhu i8count %hhu", sf->hdr.count, sf->hdr.i8count);
- sf_entry = (xfs_dir2_sf_entry_t *)((uint8_t *)&sf->list[0] -
+ sf_entry = (xfs_dir2_sf_entry_t *)((uint8_t *)sf->list -
(!sf->hdr.i8count ? 4 : 0));
while (count--) {
- uint8_t *start_name = &sf_e...
2012 Sep 03
1
[GIT-PULL] XFS filesystem driver
...e);
+ } else if (core->di_format == XFS_DINODE_FMT_EXTENTS) {
+ inode = xfs_fmt_extents_find_entry(dname, parent, core);
+ } else if (core->di_format == XFS_DINODE_FMT_BTREE) {
+ inode = xfs_fmt_btree_find_entry(dname, parent, core);
+ } else {
+ xfs_debug("format %hhu", core->di_format);
+ xfs_debug("TODO: format \"local\" and \"extents\" are the only "
+ "supported ATM");
+ goto out;
+ }
+
+ if (!inode) {
+ xfs_debug("Entry not found!");
+ goto out;
+ }
+
+ if (inode->mode == DT_REG) {...
2010 Mar 30
8
about the possible errors in Rgraphviz Package
Hi All,
I tried to install the package of Rgraphviz in the following two
ways successfully:
source("http://bioconductor.org/biocLite.R")
biocLite("Rgraphviz")
install.packages(pkgs="C:/Progra~1/R/lib_download/Rgraphviz_1.24.0.zip",
lib="C:/Progra~1/R/R-2.10.1/library", repos=NULL)
but when I loaded the package though library(Rgraphviz) or