search for: subtil

Displaying 20 results from an estimated 22 matches for "subtil".

Did you mean: subtit
2000 Feb 28
1
sub in boxplot doesn't do subtiles
R list- Under Windows 2000 and r 99: I wanted a subtitle in boxplot and tried: > boxplot((AU[ROCK==2 & AU>-1]+0.1~iz),log="y",main="Boxplot of AU by 25 M elevations",sub="aa") And I got: Error in sort(x) : only vectors can be sorted In addition: Warning messages: 1: is.na() applied to non-(list or vector) in: is.na(x) 2: is.na() applied to non-(list
2000 Apr 27
0
Browsing Win98 shares from NT on a Samba-controlled domain
...mp has led me to believe that Win98 rejects the authentication presented by NT when trying to browse the shares, but I have never seen anything like this. Both NT and Win98 are using domain logons on the Samba PDC, so Win98 should allow the NT boxes to list it's shares, or am I mistaken ? Nuno Subtil nsubtil@subtil.dhis.dee.uc.pt
2017 Dec 06
1
[PATCH v2 1/2] virtio_mmio: add cleanup for virtio_mmio_probe
...f you did not call register_virtio_device() yet. - Move just devm_kfree() into the release function. Cleanup the resources here, do the put_device() last thing if had you called register_virtio_device() before and devm_kfree() if you didn't. [Of course, I still might be missing some devm subtility, so other comments are welcome.]
2017 Dec 06
1
[PATCH v2 1/2] virtio_mmio: add cleanup for virtio_mmio_probe
...f you did not call register_virtio_device() yet. - Move just devm_kfree() into the release function. Cleanup the resources here, do the put_device() last thing if had you called register_virtio_device() before and devm_kfree() if you didn't. [Of course, I still might be missing some devm subtility, so other comments are welcome.]
2017 Dec 12
2
[PATCH] virtio_mmio: fix devm cleanup
Recent rework of the virtio_mmio probe path balanced a devm_ioremap() with an iounmap() rather than its devm variant. This ends up corrupting the devm datastructures, and results in the following boot failure on arm64 under QEMU 2.9.0: [ 3.450397] ------------[ cut here ]------------ [ 3.453822] Trying to vfree() nonexistent vm area (00000000c05b4844) [ 3.460534] WARNING: CPU: 1 PID: 1
2017 Dec 12
2
[PATCH] virtio_mmio: fix devm cleanup
Recent rework of the virtio_mmio probe path balanced a devm_ioremap() with an iounmap() rather than its devm variant. This ends up corrupting the devm datastructures, and results in the following boot failure on arm64 under QEMU 2.9.0: [ 3.450397] ------------[ cut here ]------------ [ 3.453822] Trying to vfree() nonexistent vm area (00000000c05b4844) [ 3.460534] WARNING: CPU: 1 PID: 1
2017 Feb 09
2
Messages on this list are often marked as spam.
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA512 Well for other mailing lists I have noticed that a lot of lists add text to the body or subject saying what list the email is from which would cause the signature not to match. But the dovecot list doesn't do that so that's why I found it strange that so many emails fail dkim. - -- Steven Mainor On February 7, 2017 2:22:59 AM EST,
2003 Dec 17
0
h323.conf new try
Hi list, After several tries to understand the subtil description in the h323.conf to be able to make the next scenario I was presented the following error messages by asterisk. Can somebody tell me please what I am doing wrong. Scenario: Gatekeeper (h323) --> Asterisk PBX -->(h323) Gateway Endpoints are connected to Gatekeeper. Call does c...
2017 Dec 12
2
[PATCH] virtio_mmio: fix devm cleanup
...To fix this, we can simply rip out the explicit cleanup that the devm > > infrastructure will do for us when our probe function returns an error > > code. We only need to ensure that we call put_device() if a call to > > register_virtio_device() fails. > > OK, that was the subtility I obviously missed. Reading through the > code, this seems correct (although I find the infrastructure a bit > unintuitive). No worries. > Shouldn't the cleanup in _remove() then be removed as well? Ah, I'd missed that. I believe that can be removed, yes. Should I spin a v2...
2017 Dec 12
2
[PATCH] virtio_mmio: fix devm cleanup
...To fix this, we can simply rip out the explicit cleanup that the devm > > infrastructure will do for us when our probe function returns an error > > code. We only need to ensure that we call put_device() if a call to > > register_virtio_device() fails. > > OK, that was the subtility I obviously missed. Reading through the > code, this seems correct (although I find the infrastructure a bit > unintuitive). No worries. > Shouldn't the cleanup in _remove() then be removed as well? Ah, I'd missed that. I believe that can be removed, yes. Should I spin a v2...
2001 Dec 22
2
.plan to avoid unhappy users
...g tool is that packages do not disappear. You server that archive: like the linux-kernel server. And you got servers that update all the time. In the first case its easy. all you have to do is get the new packages. You can trust the other ones. Removing them is silly. In the cooker-case its more subtile: A package is replace by a newer version. So if an update occurs like: kernel-1.2.3 is replaced by kernel-1.2.4 this is normal behaviour, but if package-2.4.8 is deleted and nothing is replacing it this is weird behaviour. Instead off assuming the connection is right and the mirror made no erro...
2017 Dec 12
0
[PATCH] virtio_mmio: fix devm cleanup
...0/0x18 > Oops. > To fix this, we can simply rip out the explicit cleanup that the devm > infrastructure will do for us when our probe function returns an error > code. We only need to ensure that we call put_device() if a call to > register_virtio_device() fails. OK, that was the subtility I obviously missed. Reading through the code, this seems correct (although I find the infrastructure a bit unintuitive). > > Signed-off-by: Mark Rutland <mark.rutland at arm.com> > Fixes: 7eb781b1bbb7136f ("virtio_mmio: add cleanup for virtio_mmio_probe") > Cc: Corn...
2007 Sep 09
0
The use for an XML based metadata format
...work, ...), and so on. Basically: Pure metadata. I have no intent on making the format useful in other areas. However I am not God and does not think I am either. If the format can be made useful in other areas; it should be made that way. But for now I am only interested in good metadata. For subtiles, the goal would be to describe that the text with oggserial/oggid this and that is a subtitle; and describe who made it, what language it is written in, if it's friendly to death people, and so on. I am asking for help with the development. Any contribution, suggestions, and thoughts are...
2017 Dec 05
3
[PATCH v2 0/2] Add cleanup for virtio_mmio driver
this patchset try to add cleanup for virtio_mmio driver, include virtio_mmio_probe and virtio_mmio_remove weiping zhang (2): virtio_mmio: add cleanup for virtio_mmio_probe virtio_mmio: add cleanup for virtio_mmio_remove drivers/virtio/virtio_mmio.c | 43 +++++++++++++++++++++++++++++++++++-------- 1 file changed, 35 insertions(+), 8 deletions(-) -- 2.9.4
2017 Dec 05
3
[PATCH v2 0/2] Add cleanup for virtio_mmio driver
this patchset try to add cleanup for virtio_mmio driver, include virtio_mmio_probe and virtio_mmio_remove weiping zhang (2): virtio_mmio: add cleanup for virtio_mmio_probe virtio_mmio: add cleanup for virtio_mmio_remove drivers/virtio/virtio_mmio.c | 43 +++++++++++++++++++++++++++++++++++-------- 1 file changed, 35 insertions(+), 8 deletions(-) -- 2.9.4
2005 Oct 10
5
Show Progress in loop
Hi I have a loop which is doing time consuming calculations and I would like to be able to have some feedback on where it is in it's calculations. I tried to simply show the counter variable in the loop, but id doesn't work as all display seems to be delayed until the loop is completed. Is there any way of displaying the progress of a loop? Rainer The loop: for (i in
2007 Sep 09
0
The use for an XML based metadata format
..., ...) and players (VLC, > KMPLayer, QuickTime, ...), to search engines (any kind of desktop search, > Google, on the Gnutella network, ...), and so on. Basically: Pure metadata. That's a good aim - and also part of the aim of CMML, so checking out CMML would be really helpful! > For subtiles, the goal would be to describe that the text with > oggserial/oggid this and that is a subtitle; and describe who made it, what > language it is written in, if it's friendly to death people, and so on. (deaf ppl :) Yes, these are all good goals. Subtitles are time-continuous textual an...
2008 Dec 19
6
FTPS setup problem
Hi! I'm trying to figure out what's going wrong with a "simple" FTPS setup and VSFTPD. I saw references on Google and tried, and tried, and tried... without success. I'll start by explaining my situation: I have a WEB development server behind a firewall. It's currently only for the intranet. We now have an external company that will have to do a new website
2007 Sep 09
2
The use for an XML based metadata format
Hi Daniel,, > I really have to ask you: Have you even tried to describe media using the > excising solutions? I don't mean adding subtitles and editing stuff. I mean > really say what a Ogg file contins. There is no working wheels for this. > Vorbis comments--used in FLAC too--can describe content with a very limited > field names (and badly enforced standards). I have and I
2019 Jul 24
10
hmm_range_fault related fixes and legacy API removal v3
Hi Jérôme, Ben and Jason, below is a series against the hmm tree which fixes up the mmap_sem locking in nouveau and while at it also removes leftover legacy HMM APIs only used by nouveau. The first 4 patches are a bug fix for nouveau, which I suspect should go into this merge window even if the code is marked as staging, just to avoid people copying the breakage. Changes since v2: - new patch