search for: janitor

Displaying 20 results from an estimated 71 matches for "janitor".

2005 Jul 25
2
[Asterisk-Dev] Zaptel update, Asterisk 1.2 janitor projects
...eleased that includes a fix for fxo modules on tdm cards. If you are using tdm cards, it is very important that you upgrade for your card to work properly. We are hoping to release Asterisk 1.2 very soon and we need your help! If you have some interest in doing some programming, check out the janitor projects web page: http://dev.asteriskdocs.org If you're not a programmer, there is still work to be done. The bug tracker is full of patches that need testing. Hop on IRC and join #asterisk-bugs for help finding things to work on. Thanks! Russell _______________________________________...
2005 Dec 01
0
[PATCH] Janitor duties
This patch removes a lot of #include from files in openbsd-compat/ since "includes.h" is included prior to the others and therefore includes the headers first. Is it OK, or is it a design decision to have the includes specific to the c-files in the c-files as well? There is also the correction of an error. In openbsd-compat/readpassphrase.c there was #ifndef HAVE_READPASSPHRASE
2004 Dec 06
4
confession
Gang, I've got to admit, what really sold me on debian was apt-get. And I've been resisting getting up to speed with yum. So, can any of ya point me to a good starter page, maybe one with migrators like me in mind? Many thanks. -- Robert Thomas ("beau") Hayes Link Open your heart, pray for peace, preach healing (c)2004ISR http://www.semanticrestructuring.com/
2006 Mar 24
7
Polymorphic associations?
I''ve read the stuff about polymorphic associations here: http://wiki.rubyonrails.org/rails/pages/UnderstandingPolymorphicAssociations But I''m not sure what exactly they are and what their advantage is. Are they the same as HABTM, but they''re "two-way"? Joe -- Posted via http://www.ruby-forum.com/.
2007 Apr 23
0
[Bridge] Update lists.osdl.org to lists.linux-foundation.org
...17:55:25.000000000 +0900 @@ -1318,7 +1318,7 @@ S: Maintained ETHERNET BRIDGE P: Stephen Hemminger M: shemminger@linux-foundation.org -L: bridge@lists.osdl.org +L: bridge@lists.linux-foundation.org W: http://bridge.sourceforge.net/ S: Maintained @@ -1978,7 +1978,7 @@ S: Maintained KERNEL JANITORS P: Several -L: kernel-janitors@lists.osdl.org +L: kernel-janitors@lists.linux-foundation.org W: http://www.kerneljanitors.org/ S: Maintained @@ -2339,7 +2339,7 @@ S: Maintained NETEM NETWORK EMULATOR P: Stephen Hemminger M: shemminger@linux-foundation.org -L: netem@lists.osdl.org +L: netem...
2007 Oct 13
13
Story Runner: Readability of output with multiple params
Fistly, many, many thanks for RSpec and Story Runner. Minor request to improve readability of output Given a scenario item with multiple params.. Eg. And "the user belongs to", "Joe", "Acme" do |user_name, company_name| The readability of the following output is less than ideal.. "And the user belongs to company,Joe Public, No Videos" It would be
2015 Jul 15
3
[patch] vhost: NULL vs ERR_PTR bug
...vhost_kvzalloc(unsigned long size) >> if (!n) { >> n = vzalloc(size); >> if (!n) >> - return ERR_PTR(-ENOMEM); >> + return NULL; >> } >> return n; >> } > -- > To unsubscribe from this list: send the line "unsubscribe kernel-janitors" in > the body of a message to majordomo at vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html >
2015 Jul 15
3
[patch] vhost: NULL vs ERR_PTR bug
...vhost_kvzalloc(unsigned long size) >> if (!n) { >> n = vzalloc(size); >> if (!n) >> - return ERR_PTR(-ENOMEM); >> + return NULL; >> } >> return n; >> } > -- > To unsubscribe from this list: send the line "unsubscribe kernel-janitors" in > the body of a message to majordomo at vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html >
2006 Oct 13
3
VoipSupply? [Semi-Urgent]
Hi, Does anyone know what is going on with voipsupply? My sales guy hasn't been online in several days, their 800 number is fasy busy, as are their direct lines. And the canadian store website is down. What the heck is going on?
2015 May 08
4
[patch v2] virtio_console: silence a static checker warning
...printf(debugfs_name, sizeof(debugfs_name), "vport%up%u", + port->portdev->vdev->index, id); port->debugfs_file = debugfs_create_file(debugfs_name, 0444, pdrvdata.debugfs_dir, port, -- To unsubscribe from this list: send the line "unsubscribe kernel-janitors" in the body of a message to majordomo at vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
2015 May 08
4
[patch v2] virtio_console: silence a static checker warning
...printf(debugfs_name, sizeof(debugfs_name), "vport%up%u", + port->portdev->vdev->index, id); port->debugfs_file = debugfs_create_file(debugfs_name, 0444, pdrvdata.debugfs_dir, port, -- To unsubscribe from this list: send the line "unsubscribe kernel-janitors" in the body of a message to majordomo at vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
2024 Feb 23
2
Rtools and things dependent on it
...for years with R packages wanting Rtools on my machine and not being able to use it. Many packages are fine as binaries are available. I have loaded Rtools and probably need to change my PATH or something. But I recently suggested to someone that they might want to use the tabyl() function in the janitor package that I find helpful. I get a warning when I install it about Rtools but it works fine. When they install it, it fails. I assumed they would get it from CRAN the same way I did as we are both using Windows and from within RSTUDIO. In the past, I have run into other packages I could not use...
2011 Mar 11
4
Server locking up everyday around 3:30 AM - (INFO: task wget:13608 blocked for more than 120 seconds) need sleep, help.
.... I'm running a CentOS 5.5 server, running the latest kernel 2.6.18-194.32.1.el5. Almost everyday around 3:30 AM the server completely locks up and has to be power cycled before it will come back online. (this means someone hat to wake up and reboot the server, oh how I love being an internet janitor! :) Smells like a hardware issue to me too, but I went through all of the dell diagnostics, updated the firmware, everything checks out as being okay, RAID, disks, RAM, etc... Spent an hour on the phone with a Dell tech. No hardware issues, at least that we were able to find. There are no cron jo...
2015 Jul 15
0
[patch] vhost: NULL vs ERR_PTR bug
...if (!n) { > >> n = vzalloc(size); > >> if (!n) > >> - return ERR_PTR(-ENOMEM); > >> + return NULL; > >> } > >> return n; > >> } > > -- > > To unsubscribe from this list: send the line "unsubscribe kernel-janitors" in > > the body of a message to majordomo at vger.kernel.org > > More majordomo info at http://vger.kernel.org/majordomo-info.html > > > -- > To unsubscribe from this list: send the line "unsubscribe kernel-janitors" in > the body of a message to majordo...
2009 Mar 06
0
[ANNOUNCE] libXrandr 1.3.0
...ith (1): Add README with pointers to mailing list, bugzilla & git repos Julien Cristau (1): Fix thinkos Keith Packard (1): Send X_RRGetOutputPrimary when making an X_RRGetOutputPrimary request Matthias Hopf (1): Bump to 1.3.0 Paulo Cesar Pereira de Andrade (1): Janitor: make distcheck, compiler warnings, .gitignore All changes to libXrandr-1.2.3: Adam Jackson (9): Remove RCS tags. Add GetScreenResourcesCurrent Add [GS]etOutputPrimary Use RRSimpleCheckExtension in functions returning void Fix type of GetReq() argument. Use R...
2005 Jan 08
1
Re: [Logcheck-commits] CVS logcheck/debian
...abort-remove|abort-deconfigure) on a box with a broken coreutils install i got: Setting up logcheck (1.2.32+1.2.33rc1) ... /var/lib/dpkg/info/logcheck.postinst: 87: touch: not found i guess it's harmless, just sending out as note, reinstall of coreutils + logcheck worked. ;-) -- maks kernel janitor http://janitor.kernelnewbies.org/ personal weblog http://www.sternwelten.at/weblog.shtml
2005 Dec 17
2
[patch] fix defintion of struct statfs64
From: Steve Langasek <vorlon@debian.org> Fix the definition of struct statfs64, required for run-init to work on alpha. verified to have no regressions on amd64. Signed-off-by: maximilian attems <janitor@sternwelten.at> Signed-off-by: Frederik Sch?ler <fschueler-guest@costa.debian.org> --- klibc-1.1.1.orig/include/sys/vfs.h +++ klibc-1.1.1/include/sys/vfs.h @@ -32,17 +32,17 @@ #else /* _BITSIZE == 64 */ struct statfs { - uint64_t f_type; - uint64_t f_bsize; + uint...
2017 Aug 17
2
[PATCH][V2] drm/nouveau: perform null check on msto[i] rathern than msto
...p;mstc->connector, &mstm->msto[i]->encoder); >> >> drm_object_attach_property(&mstc->connector.base, dev->mode_config.path_property, 0); >> -- >> 2.11.0 >> > -- > To unsubscribe from this list: send the line "unsubscribe kernel-janitors" in > the body of a message to majordomo at vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html >
2018 Feb 06
1
gdistance::shortestPath throws error "not a symmetric matrix"
...envir)", "eval(ei, envir)", "withVisible(eval(ei, envir))", "source(\"./Skript.R\")") Is that enough for anyone to point me in the right direction? I am aware that this question would be probably better posted on r-sig-geo, but as I am just an HPC janitor trying to help a customer and am not a geo-scientist myself, I thought I'd ask here first before signing up to (yet another) list. Cheers, Loris -- Dr. Loris Bennett (Mr.) ZEDAT, Freie Universit?t Berlin Email loris.bennett at fu-berlin.de
2015 May 08
1
[patch v2] virtio_console: silence a static checker warning
...to make it more easy to work with grep and friends. you may thing otherwise. re, wh > port->debugfs_file = debugfs_create_file(debugfs_name, 0444, > pdrvdata.debugfs_dir, > port, > -- > To unsubscribe from this list: send the line "unsubscribe kernel-janitors" in > the body of a message to majordomo at vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html > -- > To unsubscribe from this list: send the line "unsubscribe kernel-janitors" in > the body of a message to majordomo at vger.kernel.or...