Displaying 10 results from an estimated 10 matches for "lasttime".
2005 Nov 07
4
R seems to "stall" after several hours on a long series of analyses... where to start?
Not sure where to even start on this.... I'm hoping there's some debugging I
can do...
I have a loop that cycles through several different data sets (same
structure, different info), performing randomForest growth and
predictions... saving out the predictions for later study...
I get about 5 hours in (9%... of the planned iterations.. yikes!) and R just
freezes.
This happens in
2012 Oct 02
2
Basic question about: <<- and method start with dot.
Dear list,
When I read some source code, I find lot of place used symbol <<- , e.g.
lastTime <<- newTime;
What is the meaning here?
Also, I find some method with the name start with dot, e.g.
.RowStandardizeCentered = function(x) {
div = sqrt( rowSums(x^2) );
div[ div == 0 ] = 1;
return( x/div );
}
What is the special meaning for the method name start with a dot?
Thank you ve...
2016 Jun 26
2
Need IP on failed logins in logfile
Hi Jeremy, list,
On 06/26/2016 12:11 AM, Jeremy Allison wrote:
> We should probably have something in the server that logs
> this as an official "event". Can someone log a RFE bug in
> the bugzilla so we don't forget this request ?
I created this bug:
https://bugzilla.samba.org/show_bug.cgi?id=11998
I hope it is (approximately) what you mean. :-)
Best regards,
MJ
2017 Sep 19
1
How to track attempted breakins, authentication failure logging
On Tue, 2017-09-19 at 17:02 +0200, L.P.H. van Belle via samba wrote:
> Hai Mark,
>
> I see the bugreport for this is still untouched.
> https://bugzilla.samba.org/show_bug.cgi?id=11998
I've closed that bug now.
Extensive work has been done to add this feature to Samba 4.7, due out
this week:
https://wiki.samba.org/index.php/Setting_up_Audit_Logging
Two new debug classes,
2002 Nov 13
6
IP Forwarding
Hi,
I''m trying to get RAdmin [uses tcp 4889] access to my Windows machine
which is behind my firewall.
I have zones:
gbl : the world
loc : my lan
fw : firewall
I placed the following in my rules file
DNAT gbl loc:192.168.0.2 tcp 4889 -
When trying to RAdmin I get a cannot conect to server error.
192.168.0.2 is my Windows Machines IP address.
Can anyone help me?
Shorewall 1.3.9b
2008 Dec 10
3
How to fix broken ogg/theora files
Hi there,
I haven't been on this list until now, so I wasn't aware of this problem until last night ;-) - sorry for that.
I am working on a patch for oggCut for that issue (looks good actually but I would like to do some testing befor I can release a patch.)
Normal players are not effected by the page time misordering, so I took this issue as "minor". The reason for the
2006 Oct 13
2
gnome-terminal resizing issues
Hi,
I'm having a strange problem with gnome-terminal doubling its own window
size every time I switch tabs while some "fullscreen" app (e.g. less or
screen) is running in the terminal and the window isn't the default
size. To reproduce:
- open a terminal and make it a couple of pixels higher
- open a new tab
- run 'less' in either tab, and switch between the tabs
2002 Jun 10
1
Samba 2.2.4 and Printing with W2K
Firstly, apologies for asking this again, I see that it cause a mail loop
lasttime.
We've setup samba(2.2.4, no patches) and installed the printer drivers using
the methods decribed in the printer_driver2.html. The drivers have appeared
to have install correctly, we you right click on the printer share and select
properties the relevent tabs for the printer driver appear...
2012 Nov 28
4
[minios] Add xenbus shutdown control support
...tatic struct blkfront_dev *blk_dev;
static struct blkfront_info blk_info;
static uint64_t blk_size_read;
static uint64_t blk_size_write;
+static struct semaphore blk_sem = __SEMAPHORE_INITIALIZER(blk_sem, 0);;
struct blk_req {
struct blkfront_aiocb aiocb;
@@ -189,8 +192,10 @@
time_t lasttime = 0;
blk_dev = init_blkfront(NULL, &blk_info);
- if (!blk_dev)
+ if (!blk_dev) {
+ up(&blk_sem);
return;
+ }
if (blk_info.info & VDISK_CDROM)
printk("Block device is a CDROM\n");
@@ -210,7 +215,7 @@
blk_read_sector(blk_i...
2012 Jan 25
26
[PATCH v4 00/23] Xenstore stub domain
Changes from v3:
- mini-os configuration files moved into stubdom/
- mini-os extra console support now a config option
- Fewer #ifdefs
- grant table setup uses hypercall bounce
- Xenstore stub domain syslog support re-enabled
Changes from v2:
- configuration support added to mini-os build system
- add mini-os support for conditionally compiling frontends, xenbus
-