Re: shutdown/reboot taking a long time

2024-06-10 Thread Thomas Klausner
h a new kernel. The machine has usually an uptime of a month or so and does regular NFS and pbulk traffic (rather a lot of it). So yes, it falls into the 'much file access' category too. Thomas

Trying out read streams in pgvector (an extension)

2024-06-10 Thread Thomas Munro
Hi, I was looking around for an exotic index type to try the experience of streamifying an extension, ie out-of-core code. I am totally new to pgvector, but since everyone keeps talking about it, I could not avoid picking up some basic facts in the pgconf.dev hallway track, and understood that

Re: How do I Contact the Rpmfusion List?

2024-06-10 Thread Thomas Cameron
://rpmfusion.org/ReportingBugs - it tells you to open a bug at https://bugzilla.rpmfusion.org/. You can also contact the developers at https://lists.rpmfusion.org/archives/ but that's not the ideal. Follow the instructions about reporting bugs. Hope this helps! -- Thomas

Hex File Snooper

2024-06-10 Thread Thomas Passin
Sometimes it is useful to view the first N bytes of a file without reading the whole file. The file might be much too large to load into a text editor or a Leo node, for example. The Linux command *head* will show you just the start of a file, but Windows doesn't have that command out of the

Re: libpq v17 PQsocketPoll timeout is not granular enough

2024-06-10 Thread Thomas Munro
On Tue, Jun 11, 2024 at 2:36 AM Dominique Devienne wrote: > Hi. I've noticed [that libpq API in v17 beta1][1], and wanted to use > it to replace an existing Boost.ASIO-based async polling of the > connection's socket, waiting for notifications. The use case being > using PostgreSQL LISTEN/NOTIFY

Re: [External] : Why do I get the following error `wrong signature length` when I try to validate a signed file using the c++ OpenSSL 3.1 library?

2024-06-10 Thread Thomas Dwyer III via openssl-users
|if (EVP_PKEY_verify(ctx, licenseSignature, sizeof(licenseSignature), licenseContent, sizeof(licenseContent)) <= 0)| The sizeof operator is not doing what you think it's doing. It's computing the sizes of the pointers (typically 4 or 8 bytes depending on your architecture) and not the sizes

Re: [PATCH] drm/amd: force min_input_signal to 0 on Framework AMD 13/16

2024-06-10 Thread Thomas Weißschuh
On 2024-06-10 14:58:02+, Mario Limonciello wrote: > +Kieran > > On 6/10/2024 14:26, Thomas Weißschuh wrote: > > The value of "min_input_signal" returned from ATIF on a Framework AMD 13 > > is "12". This leads to a fairly bright minimum display backligh

[PATCH] drm/amd: force min_input_signal to 0 on Framework AMD 13/16

2024-06-10 Thread Thomas Weißschuh
still readable even in daylight. Tested on a Framework AMD 13 BIOS 3.05 and Framework AMD 16. Link: https://community.frame.work/t/25711/9 Link: https://community.frame.work/t/47036 Signed-off-by: Thomas Weißschuh --- drivers/gpu/drm/amd/amdgpu/amdgpu_acpi.c | 35

Re: execute-external-file & execute-general-script

2024-06-10 Thread Thomas Passin
I don't have an example for *execute-general-script*, but I want to point out that it is *not* the same command as *CTRL-B*, *execute-script*. On Sunday, June 9, 2024 at 11:23:35 PM UTC-4 Thomas Passin wrote: > Good to know, Felix. Please see if you can test it on one or another >

Bug#1020217: snapshot.debian.org: write a generic file driver supporting multiple backend (such as object-storage)

2024-06-10 Thread thomas
and maintenance (though not physical setup, but we can pay a service provider for that if we have no other option...). Thomas Sent from Workspace ONE Boxer On Jun 9, 2024 8:10 PM, Andreas Tille wrote: Hi Thomas, Am Sun, Jun 09, 2024 at 12:17:05PM +0200 schrieb Thomas Goirand: > > H

Bug#1020217: snapshot.debian.org: write a generic file driver supporting multiple backend (such as object-storage)

2024-06-10 Thread thomas
and maintenance (though not physical setup, but we can pay a service provider for that if we have no other option...). Thomas Sent from Workspace ONE Boxer On Jun 9, 2024 8:10 PM, Andreas Tille wrote: Hi Thomas, Am Sun, Jun 09, 2024 at 12:17:05PM +0200 schrieb Thomas Goirand: > > H

Re: Release Apache MINA SSHD 2.13.0?

2024-06-10 Thread Thomas Wolf
Guillaume, could you please prepare and stage a release? Cheers, Thomas On 08.06.24 21:35 , Gary Gregory wrote: Sounds  good to me. Gary On Sat, Jun 8, 2024, 2:56 PM Thomas Wolf <mailto:tw...@apache.org>> wrote: On 2024-06-08 20:48 , Thomas Wolf wrote: > I sugg

[VOTE RESULT] Release Apache Felix SCR 2.2.12

2024-06-10 Thread Thomas Watson
Hi, I neglected to close out this vote, doing so now ... The vote passed with four binding +1 Tom

Re: [VOTE] Release Apache Felix SCR 2.2.12

2024-06-10 Thread Thomas Watson
+1 Tom On Thu, May 2, 2024 at 12:03 PM Karl Pauls wrote: > +1 > > regards, > > Karl > > On Thursday, May 2, 2024, Carsten Ziegeler wrote: > > > +1 > > > > Carsten > > > > On 02.05.2024 15:24, Thomas Watson wrote: > > >

[PATCH v2 1/3] drm/mgag200: Consolidate VGA output

2024-06-10 Thread Thomas Zimmermann
The various models have common code for the VGA output's encoder and connector. Move everything into a single shared source file. Remove some obsolete initializer macros. No functional changes. Signed-off-by: Thomas Zimmermann --- drivers/gpu/drm/mgag200/Makefile | 3 +- drivers/gpu

[PATCH v2 2/3] drm/mgag200: Add BMC output

2024-06-10 Thread Thomas Zimmermann
is not. This is necessary to support userspace clients that can only handle a single output per CRTC. The BMC is a server feature. Add a BMC output for all server chips, but not the desktop models. Signed-off-by: Thomas Zimmermann --- drivers/gpu/drm/mgag200/mgag200_bmc.c | 107

[PATCH v2 3/3] drm/mgag200: Set .detect_ctx() and enable connector polling

2024-06-10 Thread Thomas Zimmermann
Set .detect_ctx() in struct drm_connector_helper_funcs to the common helper drm_connector_helper_detect_from_ddc() and enable polling for the connector. Mgag200 will now test for the monitor's presence by probing the DDC in regular intervals. Signed-off-by: Thomas Zimmermann --- drivers/gpu/drm

[PATCH v2 0/3] drm/mgag200: Detect connector status

2024-06-10 Thread Thomas Zimmermann
. Tested on various Matrox hardware. v2: - move the DDC clean up into a separate patchset [1] - add dedicated BMC support (Jocelyn) [1] https://patchwork.freedesktop.org/series/133537/ Thomas Zimmermann (3): drm/mgag200: Consolidate VGA output drm/mgag200: Add BMC output drm/mgag200: Set

[jira] [Commented] (OAK-8046) Result items are not always correctly counted against the configured read limit if a query uses a lucene index

2024-06-10 Thread Thomas Mueller (Jira)
[ https://issues.apache.org/jira/browse/OAK-8046?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17853671#comment-17853671 ] Thomas Mueller commented on OAK-8046: - > I guess the only thing we can do is move this cl

Re: [PATCH] drm/edid: reduce DisplayID log spamming

2024-06-10 Thread Thomas Zimmermann
Am 06.06.24 um 14:35 schrieb Jani Nikula: Debug printing at DisplayID validation leads to lots of log spamming as it's called at DisplayID iterators during EDID parsing. Remove it, and replace with a less noisy message at connector EDID update. Signed-off-by: Jani Nikula Acked-by: Thomas

Re: [PATCH] drm/edid: reduce DisplayID log spamming

2024-06-10 Thread Thomas Zimmermann
Am 06.06.24 um 14:35 schrieb Jani Nikula: Debug printing at DisplayID validation leads to lots of log spamming as it's called at DisplayID iterators during EDID parsing. Remove it, and replace with a less noisy message at connector EDID update. Signed-off-by: Jani Nikula Acked-by: Thomas

Re: Bug: bash redirect "magic" variable content to input of command hangs (upstream of https://github.com/git-for-windows/git/issues/5001)

2024-06-10 Thread Thomas Wolff via Cygwin
Am 10.06.2024 um 13:12 schrieb Holger Klene via Cygwin: Hi Cygwin, On reading a magic value back from a bash variable, the involved command (wc, grep, cat, ...) hangs indefinitely and has to be stopped by Ctrl+C Editing it's content by deleting lines, the "magic" goes away. Also as

Bug#1071007: Bug#1072733: sherlock: Must not ship /usr/lib/python3/dist-packages/__init__.py

2024-06-10 Thread Thomas Goirand
), as the conflict is now solved. I'll reopen 1072733 since the clash still exists. :( Cheers, Thomas Goirand (zigo)

Bug#1071007: Bug#1072733: sherlock: Must not ship /usr/lib/python3/dist-packages/__init__.py

2024-06-10 Thread Thomas Goirand
), as the conflict is now solved. I'll reopen 1072733 since the clash still exists. :( Cheers, Thomas Goirand (zigo)

Bug#1034672: new ISO

2024-06-10 Thread Thomas Lange
Hi, there are new FAI ISO available using FAI 6.2.2. Does this problem still exist? -- viele Grüße Thomas

Re: RFR: 8330846: Add stacks of mounted virtual threads to the HotSpot thread dump [v8]

2024-06-10 Thread Thomas Stuefe
On Tue, 4 Jun 2024 13:46:16 GMT, Inigo Mediavilla Saiz wrote: >> src/hotspot/share/runtime/threads.cpp line 1336: >> >>> 1334: oop vt = p->vthread(); >>> 1335: assert(vt != nullptr, ""); >>> 1336: st->print_cr(" \tMounted virtual thread #" >>>

[krita] [Bug 482365] Crash

2024-06-10 Thread Thomas Krenn
https://bugs.kde.org/show_bug.cgi?id=482365 --- Comment #6 from Thomas Krenn --- Hello all, below is the kritacrash.log: Error occurred on Sunday, June 9, 2024 at 11:15:08. krita.exe caused an Access Violation at location 7FF81156DD48 in module libkritaimage.dll Reading from location

[dns-operations] Google traffic pattern

2024-06-10 Thread Thomas Dupas via dns-operations
--- Begin Message --- Hi, Is there anyone from Google, apart from probing Warren, on this list available for some inquiries in private? There are some strange patterns we’re seeing past few days towards. Br, Thomas -- Thomas Dupas www.dnsbelgium.be<http://www.dnsbelgium

Integrated: 8322811: jcmd System.dump_map help info has conflicting statements

2024-06-10 Thread Thomas Stuefe
On Fri, 7 Jun 2024 10:40:07 GMT, Thomas Stuefe wrote: > @dholmes-ora this is one of yours. > > This was a tad annoying to fix (fix is simple though), since the jcmd > framework has no good way to allow for default parameters that are not used > literally. E.g. in this case,

Re: RFR: 8322811: jcmd System.dump_map help info has conflicting statements

2024-06-10 Thread Thomas Stuefe
On Mon, 10 Jun 2024 08:35:06 GMT, Kevin Walls wrote: >> @dholmes-ora this is one of yours. >> >> This was a tad annoying to fix (fix is simple though), since the jcmd >> framework has no good way to allow for default parameters that are not used >> literally. E.g. in this case, the real value

Re: [PATCH] drm/managed: Simplify if condition

2024-06-10 Thread Thomas Zimmermann
off-by: Thorsten Blum Acked-by: Thomas Zimmermann --- drivers/gpu/drm/drm_managed.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/drm_managed.c b/drivers/gpu/drm/drm_managed.c index 7646f67bda4e..79ce86a5bd67 100644 --- a/drivers/gpu/drm/drm_managed.c +

Re: [PATCH] drm/fbdev-dma: fix getting smem_start

2024-06-10 Thread Thomas Zimmermann
bdev-dma: Implement fbdev emulation for GEM DMA helpers") Signed-off-by: Peng Fan Reviewed-by: Thomas Zimmermann Best regards Thomas --- drivers/gpu/drm/drm_fbdev_dma.c | 7 ++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/drivers/gpu/drm/drm_fbdev_dma.c b/dr

Re: RFR: 8332400: isspace argument should be a valid unsigned char

2024-06-10 Thread Thomas Stuefe
On Mon, 10 Jun 2024 08:20:38 GMT, David Holmes wrote: > > "To use these functions safely with plain chars (or signed chars), the > > argument should first be converted to unsigned char" > > @tstuefe wow! Okay. That is a surprise to me. A cast to unsigned char doesn't > actually do anything.

Re: RFR: 8332400: isspace argument should be a valid unsigned char

2024-06-10 Thread Thomas Stuefe
On Mon, 10 Jun 2024 08:20:38 GMT, David Holmes wrote: > > "To use these functions safely with plain chars (or signed chars), the > > argument should first be converted to unsigned char" > > @tstuefe wow! Okay. That is a surprise to me. A cast to unsigned char doesn't > actually do anything.

Tagging June releases

2024-06-10 Thread Mark Thomas
Hi all, A bunch of minor issues built up in my TODO list while I was at Community over Code and the Tomcat security day. I'd like to clear these before I tag the June releases. In related news, the release ballots for Servlet and Pages have completed successfully. There is some admin that

Re: [Patch, fortran] PR59104

2024-06-10 Thread Paul Richard Thomas
0 0 3 > > Expected: > > 2 3 3 > > Can you please check? > > Thanks, > Harald > > > Am 09.06.24 um 17:57 schrieb Paul Richard Thomas: > > Hi All, > > > > I have extended the testcase - see below

Re: [Patch, fortran] PR59104

2024-06-10 Thread Paul Richard Thomas
0 0 3 > > Expected: > > 2 3 3 > > Can you please check? > > Thanks, > Harald > > > Am 09.06.24 um 17:57 schrieb Paul Richard Thomas: > > Hi All, > > > > I have extended the testcase - see below

RFR: 8322811: jcmd System.dump_map help info has conflicting statements

2024-06-09 Thread Thomas Stuefe
@dholmes-ora this is one of yours. This was a tad annoying to fix (fix is simple though), since the jcmd framework has no good way to allow for default parameters that are not used literally. E.g. in this case, the real value for the file name will contain the process pid, which of course

Re: execute-external-file & execute-general-script

2024-06-09 Thread Thomas Passin
gt;> >> On Sunday, June 9, 2024 at 5:39:48 PM UTC-4 Félix wrote: >> >>> Merci Thomas! :) >>> >>> On Sunday, June 9, 2024 at 4:26:16 PM UTC-4 tbp1...@gmail.com wrote: >>> >>>> For the *execute-external-file* script*, *here is one of my tes

Re: Assert in heapgettup_pagemode() fails due to underlying buffer change

2024-06-09 Thread Thomas Munro
I adjusted the code a bit more to look like the 16 coding including restoring some very useful comments that had been lost, and pushed. Thanks very much to Alexander and Noah for (independently) chasing this down and reporting, testing etc, and Alvaro and Robert for review comments. (Passing

pgsql: Fix RBM_ZERO_AND_LOCK.

2024-06-09 Thread Thomas Munro
Fix RBM_ZERO_AND_LOCK. Commit 210622c6 accidentally zeroed out pages even if they were found in the buffer pool. It should always lock the page, but it should only zero pages that were not already valid. Otherwise, concurrent readers that hold only a pin could see corrupted page contents

Re: execute-external-file & execute-general-script

2024-06-09 Thread Thomas Passin
Go, Félix! On Sunday, June 9, 2024 at 5:39:48 PM UTC-4 Félix wrote: > Merci Thomas! :) > > On Sunday, June 9, 2024 at 4:26:16 PM UTC-4 tbp1...@gmail.com wrote: > >> For the *execute-external-file* script*, *here is one of my test files, >> a tiny Julia file (of cou

CVS commit: src/doc

2024-06-09 Thread Thomas Klausner
Module Name:src Committed By: wiz Date: Sun Jun 9 20:47:55 UTC 2024 Modified Files: src/doc: 3RDPARTY Log Message: doc: update 3RDPARTY entry for libarchive update To generate a diff of this commit: cvs rdiff -u -r1.2007 -r1.2008 src/doc/3RDPARTY Please note that

CVS commit: src/doc

2024-06-09 Thread Thomas Klausner
Module Name:src Committed By: wiz Date: Sun Jun 9 20:47:55 UTC 2024 Modified Files: src/doc: 3RDPARTY Log Message: doc: update 3RDPARTY entry for libarchive update To generate a diff of this commit: cvs rdiff -u -r1.2007 -r1.2008 src/doc/3RDPARTY Please note that

shutdown/reboot taking a long time

2024-06-09 Thread Thomas Klausner
ice Size UsedAvail Capacity Priority /dev/dk2127G 269M 127G 0%0 /dev/dk7192G 271M 192G 0%0 /dev/dk4128G 270M 128G 0%0 Total 447G 810M 446G 0% Has anyone else seen this? Thomas

Re: execute-external-file & execute-general-script

2024-06-09 Thread Thomas Passin
l-file *& > *execute-general-script > *commands in LeoJS. > > *execute-external-file was made by Thomas around February 2023 while > execute-general-script was made by Edward around june 2021.* > > I was just wondering if anyone could send me 'minimal/proof-of-concept'

Re: BXLE instruction

2024-06-09 Thread Jim Thomas
(4) IF (CHI,R0,EQ,200) something ENDIF , (or, ELSEIF for another IF) From: IBM Mainframe Discussion List on behalf of Jim Thomas Sent: Sunday, June 9, 2024 2:33 PM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Re: BXLE instruction Seymour

Re: [drm:amdgpu_fill_buffer [amdgpu]] *ERROR* Trying to clear memory with ring turned off.

2024-06-09 Thread Thomas Glanzmann
Hello Alex, > Should be fixed with this patch: > https://patchwork.freedesktop.org/patch/597421/ works for me. Tested-by: Thomas Glanzmann Thanks. Cheers, Thomas

Re: BXLE instruction

2024-06-09 Thread Jim Thomas
Seymour, I'd use a SELECT rather than an IF (since you're looking for more than one possibility) but ... none the less (and using branch relative) ... BRXH R15,R15,non_zero Continue for R15 = zero .. Kind Regards Jim Thomas From: IBM Mainframe Discussion

Re: Mailgun SSL_accept error

2024-06-09 Thread Thomas Barth via postfix-users
Hallo Am 2024-06-09 14:59, schrieb Stefan Fuhrmann: Hallo Thomas, wie sieht es bei dir mit dem DNS aus? zB https://talk.plesk.com/threads/tls-library-problem-error-42.358436/ deine certis sind von letsencrypt? deine main.cf hat solche Einträge: smtpd_tls_mandatory_protocols = !SSLv2

Re: Wrong component for firmware-nvidia-gsp/525.147.05-7~deb12u1~bpo11+1 in bullseye-backports/non-free-firmware

2024-06-09 Thread Brent Thomas
debian-backports@lists.debian.org sudo apt install flatpak

Re: [Patch, fortran] PR59104

2024-06-09 Thread Paul Richard Thomas
quot;) stop 15 end program p On Sun, 9 Jun 2024 at 07:14, Paul Richard Thomas < paul.richard.tho...@gmail.com> wrote: > Hi All, > > The attached fixes a problem that, judging by the comments, has been > looked at periodically over the last ten years but just looked to be to

Re: [Patch, fortran] PR59104

2024-06-09 Thread Paul Richard Thomas
quot;) stop 15 end program p On Sun, 9 Jun 2024 at 07:14, Paul Richard Thomas < paul.richard.tho...@gmail.com> wrote: > Hi All, > > The attached fixes a problem that, judging by the comments, has been > looked at periodically over the last ten years but just looked to be to

Re: [VOTE] Release Apache Commons Configuration 2.11.0 based on RC1

2024-06-09 Thread Thomas Vandahl
Home Default locale: de_DE, platform encoding: UTF-8 OS name: "mac os x", version: "11.7.10", arch: "x86_64", family: "mac" --8<-- Bye, Thomas - To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org For additional commands, e-mail: dev-h...@commons.apache.org

Re: Mailgun SSL_accept error

2024-06-09 Thread Thomas Barth via postfix-users
Thomas Am 2024-06-08 21:26, schrieb Stefan Fuhrmann via postfix-users: Hallo Thomas, ich würde erstmal schaun, was denn für certis ausgeliefert werden...local wie remote schaust du testssl.sh https://testssl.sh/ Gruß Stefan Am 08.06.24 um 09:04 schrieb Thomas Barth via postfix-users

Bug#1072861: RM: python-rednose -- ROM; no reverse depends, nose removal

2024-06-09 Thread Thomas Goirand
be safely removed from Debian. Cheers, Thomas Goirand (zigo)

Bug#1020217: snapshot.debian.org: write a generic file driver supporting multiple backend (such as object-storage)

2024-06-09 Thread Thomas Goirand
thoughts? Would the DPL agree on such a spending? Do we have somewhere to host this? At UBC? What would be the DSA opinion about this? Would they get involved? (IMO, we can do without DSA if they don't want to get involved, but I'd prefer if they would...) Cheers, Thomas Goirand (zigo) P.S

Bug#1020217: snapshot.debian.org: write a generic file driver supporting multiple backend (such as object-storage)

2024-06-09 Thread Thomas Goirand
thoughts? Would the DPL agree on such a spending? Do we have somewhere to host this? At UBC? What would be the DSA opinion about this? Would they get involved? (IMO, we can do without DSA if they don't want to get involved, but I'd prefer if they would...) Cheers, Thomas Goirand (zigo) P.S

[krita] [Bug 482365] Crash

2024-06-09 Thread Thomas Krenn
https://bugs.kde.org/show_bug.cgi?id=482365 Thomas Krenn changed: What|Removed |Added CC||thomas.kr...@kabsi.at --- Comment #5 from

[Patch, fortran] PR59104

2024-06-09 Thread Paul Richard Thomas
Hi All, The attached fixes a problem that, judging by the comments, has been looked at periodically over the last ten years but just looked to be too fiendishly complicated to fix. This is not in small part because of the confusing ordering of dummies in the tlink chain and the unintuitive

[Patch, fortran] PR59104

2024-06-09 Thread Paul Richard Thomas
Hi All, The attached fixes a problem that, judging by the comments, has been looked at periodically over the last ten years but just looked to be too fiendishly complicated to fix. This is not in small part because of the confusing ordering of dummies in the tlink chain and the unintuitive

Bug#1072786: addch.3ncurses: some remarks and editorial changes for this man page

2024-06-08 Thread Thomas Dickey
long. This one ends at column 64. > \fBint mvwaddch(WINDOW *\fIwin\fP, int \fIy\fP, int \fIx\fP, const chtype > \fIch\fP); -- Thomas E. Dickey https://invisible-island.net signature.asc Description: PGP signature

[education/rkward] /: Documentation improvements

2024-06-08 Thread Thomas Friedrichsmeier
Git commit dafafe96c8c96275b65f7988c67027a08102dc51 by Thomas Friedrichsmeier. Committed on 08/06/2024 at 22:10. Pushed by tfry into branch 'master'. Documentation improvements M +2-1doc/rkward/man-rkward.1.docbook M +19 -3rkward/pages/rkward_trouble_shooting.rkh M +1-0

[education/rkward] /: Documentation updates

2024-06-08 Thread Thomas Friedrichsmeier
Git commit 57d3ecd7d44fc4671a0ed0b2884c89bb6b87aeee by Thomas Friedrichsmeier. Committed on 08/06/2024 at 22:10. Pushed by tfry into branch 'master'. Documentation updates M +8-3doc/rkward/man-rkward.1.docbook M +4-3rkward/main.cpp M +4-4rkward/rkward.cpp M +1-1

Re: Assert in heapgettup_pagemode() fails due to underlying buffer change

2024-06-08 Thread Thomas Munro
cating what is already said by the StartReadBuffers() comment and doubling down on descriptions of future plans... but, in for a penny, in for a pound as they say. From db5e56825e4b4c595885373c413011c50fedd3e8 Mon Sep 17 00:00:00 2001 From: Thomas Munro Date: Sun, 9 Jun 2024 09:51:02 +1200 S

Re: Assert in heapgettup_pagemode() fails due to underlying buffer change

2024-06-08 Thread Thomas Munro
New version. Same code as v2, but comments improved to explain the reasoning, with reference to README's buffer access rules. I'm planning to push this soon if there are no objections. From 1fa26f407622cd69d82f3b4ea68fddf2c357cf06 Mon Sep 17 00:00:00 2001 From: Thomas Munro Date: Fri, 7 Jun

Re: From JoyceUlysses.txt -- words occurring exactly once

2024-06-08 Thread Thomas Passin via Python-list
On 6/8/2024 2:46 PM, avi.e.gr...@gmail.com wrote: Agreed, Thomas. As someone who has spent lots of time writing code OR requirements of various levels or having to deal with the bugs afterwards, there can be a huge disconnect between the people trying to decide what to do and the people

Re: Release Apache MINA SSHD 2.13.0?

2024-06-08 Thread Thomas Wolf
On 2024-06-08 20:48 , Thomas Wolf wrote: I suggest we start with a release for Apache MINA 2.13.0. Apache MINA SSHD, of course. Cheers, Thomas - To unsubscribe, e-mail: dev-unsubscr...@mina.apache.org For additional

Release Apache MINA SSHD 2.13.0?

2024-06-08 Thread Thomas Wolf
of noteworthy changes is, as always, at [1]. Cheers, Thomas [1] https://github.com/apache/mina-sshd/blob/master/CHANGES.md - To unsubscribe, e-mail: dev-unsubscr...@mina.apache.org For additional commands, e-mail: dev-h

Re: From JoyceUlysses.txt -- words occurring exactly once

2024-06-08 Thread Thomas Passin via Python-list
On 6/8/2024 11:54 AM, Larry Martell via Python-list wrote: On Sat, Jun 8, 2024 at 10:39 AM Mats Wichmann via Python-list < python-list@python.org> wrote: On 6/5/24 05:10, Thomas Passin via Python-list wrote: Of course, we see this lack of clarity all the time in questions to the li

[NTG-context] Re: ConTeXt source from XML

2024-06-08 Thread Thomas A. Schmitz
{getmeas("\xmla \stopxmlsetups how should this line continue ? {\externalfigure[\xmlatt{#1}{src}][width=\ctxlua{getmeas("\xmla That would be {\externalfigure[\xmlatt{#1}{src}] [width=\ctxlua{getmeas("\xmlatt{#1}{widt

Mailgun SSL_accept error

2024-06-08 Thread Thomas Barth via postfix-users
Hallo, immer wenn eine Mail über Mailgun eingeliefert wird, kommt es zunächst zu einer Fehlermeldung. Jun 07 16:55:04 mx1 postfix/smtpd[196980]: connect from m204-56.eu.mailgun.net[161.38.204.56] Jun 07 16:55:04 mx1 postfix/smtpd[196983]: SSL_accept error from

Re: Assert in heapgettup_pagemode() fails due to underlying buffer change

2024-06-07 Thread Thomas Munro
On Sat, Jun 8, 2024 at 12:47 AM Robert Haas wrote: > > On Fri, Jun 7, 2024 at 4:05 AM Alvaro Herrera wrote: > > > static void > > > -ZeroBuffer(Buffer buffer, ReadBufferMode mode) > > > +ZeroBuffer(Buffer buffer, ReadBufferMode mode, bool zero) > > > > This change makes the API very strange.

[clang] [llvm] [APFloat] Add APFloat support for FP6 data types (PR #94735)

2024-06-07 Thread Thomas Raoux via cfe-commits
https://github.com/ThomasRaoux approved this pull request. LGTM, please wait to confirm that everybody is happy with the naming before merging. @krzysz00 was your comment meant to be a blocker? https://github.com/llvm/llvm-project/pull/94735 ___

Bug#1072080: murano-agent: diff for NMU version 1:12.0.0-1.1

2024-06-07 Thread thomas
I haven't look at details but I trust fellow DDs. Please go ahead! MR on Salsa are always welcome for NMUs too... Thomas Sent from Workspace ONE Boxer On Jun 7, 2024 3:39 PM, Chris Hofstaedtler wrote: Control: tags 1072080 + patch Control: tags 1072080 + pending Dear maintainer

[clang] [llvm] [APFloat] Add APFloat support for FP6 data types (PR #94735)

2024-06-07 Thread Thomas Raoux via cfe-commits
ThomasRaoux wrote: > (If it's for MLIR support, I'd like to have a discussion there, since I don't > thisk these scalars belong in `FloatType` and that the long-term solution is > to allow arbitrary newtypes / tags on bits / ... up there) I don't want to speak for the author but I'm

[clang] [llvm] [APFloat] Add APFloat support for FP6 data types (PR #94735)

2024-06-07 Thread Thomas Raoux via cfe-commits
https://github.com/ThomasRaoux commented: Looks good to me once the other comments are addressed. Thanks for the patch. https://github.com/llvm/llvm-project/pull/94735 ___ cfe-commits mailing list cfe-commits@lists.llvm.org

Re: Batik cannot render bar charts generated by XChart

2024-06-07 Thread Thomas DeWeese
to lead to harder and harder to understand error conditions (like this patch could lead to non-conformant elements silently being dropped not generating proper update regions etc). Thomas On Fri, Jun 7, 2024 at 10:11 AM Peter Hull wrote: > On Fri, 7 Jun 2024 at 14:31, Thomas DeWeese >

Bug#1072746: Further investigation

2024-06-07 Thread Thomas Goirand
* it becomes LTS. Thanks. Cheers, Thomas Goirand (zigo)

Bug#1072746: Further investigation

2024-06-07 Thread Thomas Goirand
* it becomes LTS. Thanks. Cheers, Thomas Goirand (zigo)

Bug#1072746: Patch header updated

2024-06-07 Thread Thomas Goirand
Hi, FYI, I have updated the patch header to contain the upstream comments, and giving back original authorship. Cheers, Thomas Goirand (zigo)

Bug#1072746: Patch header updated

2024-06-07 Thread Thomas Goirand
Hi, FYI, I have updated the patch header to contain the upstream comments, and giving back original authorship. Cheers, Thomas Goirand (zigo)

[Wurfpost] Umzug der Wurfpost auf neuen Server und neue Adresse!

2024-06-07 Thread Thomas Griesbaum via Wurfpost
Lust und Thomas Griesbaum ___ Wurfpost mailing list Wurfpost@list.uni-koblenz.de https://list.uni-koblenz.de/mailman/listinfo/wurfpost

[drm:amdgpu_fill_buffer [amdgpu]] *ERROR* Trying to clear memory with ring turned off.

2024-06-07 Thread Thomas Glanzmann
R14: 55a3eb64c470 R15: 55a3d0094ec1 [ 11.027385] [ 11.027386] ---[ end trace ]--- Full dmesg: https://tg.st/u/9c7ed52e84c5a1fa8aa0943139b47f7312c66b70f6dec0deb409ead1a635c8c5.txt Cheers, Thomas

Re: Batik cannot render bar charts generated by XChart

2024-06-07 Thread Thomas DeWeese
suspect that would be a long road. On Fri, Jun 7, 2024 at 9:12 AM Thomas DeWeese wrote: > Any content that uses values outside of the range specified to be > supported by the standard is relying on undefined behavior so from a > compliance perspective the renderer is free to do whatever is c

Re: Batik cannot render bar charts generated by XChart

2024-06-07 Thread Thomas DeWeese
the built in float parsers at the time) so that might not even be that hard to do. On Fri, Jun 7, 2024 at 7:13 AM Peter Hull wrote: > On Wed, 5 Jun 2024 at 23:30, Thomas DeWeese > wrote: > > Unless stated otherwise for a particular attribute or property, a > has the capacity for at

Re: Problem with a certain domain

2024-06-07 Thread Thomas Barth via bind-users
Am 2024-06-06 18:35, schrieb Matus UHLAR - fantomas: if the problem happens again, you can call 'rndc dumpdb' to dump named's cache and see all records your named remembers about mallorcazeitung.es and epi.es perhaps they can help to explain why named can't resolve anything. Yes, it always

Re: Question on updating Turbine core

2024-06-07 Thread Thomas Vandahl
ire some updates. > At least all components which fulfill web tasks (parser, intake, localization?) Torque should not be affected AFAICT. Bye, Thomas - To unsubscribe, e-mail: dev-unsubscr...@turbine.apache.org Fo

Bug#1072746: bullseye-pu: package pyroute2/0.5.14-2

2024-06-07 Thread Thomas Goirand
important that we proceed with this fix ASAP. Cheers, Thomas Goirand (zigo) diff -Nru pyroute2-0.5.14/debian/changelog pyroute2-0.5.14/debian/changelog --- pyroute2-0.5.14/debian/changelog2020-10-13 14:31:06.0 +0200 +++ pyroute2-0.5.14/debian/changelog2024-06-07 12:06:04.0

Bug#1072746: bullseye-pu: package pyroute2/0.5.14-2

2024-06-07 Thread Thomas Goirand
important that we proceed with this fix ASAP. Cheers, Thomas Goirand (zigo) diff -Nru pyroute2-0.5.14/debian/changelog pyroute2-0.5.14/debian/changelog --- pyroute2-0.5.14/debian/changelog2020-10-13 14:31:06.0 +0200 +++ pyroute2-0.5.14/debian/changelog2024-06-07 12:06:04.0

Notes from Tomcat security day

2024-06-07 Thread Mark Thomas
Hi all, I have added the notes from yesterday's security day to the wiki. https://cwiki.apache.org/confluence/display/TOMCAT/Security+Day+EU+2024 We discussed lots of things and while there are quite a few things the folks present agreed would be worth doing, all the actaul decisions need to

Re: [PROPOSAL] Implement additional security checks in SecurityLifecycleListener

2024-06-07 Thread Mark Thomas
On 06/06/2024 18:13, Konstantin Kolinko wrote: чт, 6 июн. 2024 г. в 17:49, Christopher Schultz : All, Tomcat's SecurityLifecycleListener currently checks the current working user's name, the umask and not much else at the moment. I'd like to add "administrator" as another username to look

Re: [PROPOSAL] Tomcat 10: Remove CGI Servlet

2024-06-07 Thread Mark Thomas
On 06/06/2024 16:39, Christopher Schultz wrote: All, Resurrecting this thread from 2019. I will be proceeding with this 4.5-year-old plan to extract the CGI servlet to a separate JAR file to make it easy to "remove" from Tomcat if operators would prefer to do such things. I think I'll also

Re: [PROPOSAL] Tomcat 10: Remove Server-Side Includes (SSI)

2024-06-07 Thread Mark Thomas
On 06/06/2024 16:30, Christopher Schultz wrote: All, Resurrecting this thread from 2019. I'd like to remove the SSI configuration from conf/web.xml and put it into webapps/docs/ssi-howto.html. Are there any objections? None here. Do we want to go further and consider removing it entirely

[gentoo-commits] repo/gentoo:master commit in: media-radio/gpredict/

2024-06-07 Thread Thomas Beierlein
commit: bc59cfeb155f1279badf3be5cfe8451627e6720a Author: Thomas Beierlein gentoo org> AuthorDate: Fri Jun 7 07:27:57 2024 + Commit: Thomas Beierlein gentoo org> CommitDate: Fri Jun 7 07:30:03 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc

Re: [Patch, Fortran/90068] Add finalizer creation to array constructor for functions of derived type.

2024-06-07 Thread Paul Richard Thomas
Hi Andre, I had been working in exactly the same area to correct the implementation of finalization of function results in array constructors. However, I couldn't see a light way of having the finalization occur at the correct time; "If an executable construct references a nonpointer function,

Re: [Patch, Fortran/90068] Add finalizer creation to array constructor for functions of derived type.

2024-06-07 Thread Paul Richard Thomas
Hi Andre, I had been working in exactly the same area to correct the implementation of finalization of function results in array constructors. However, I couldn't see a light way of having the finalization occur at the correct time; "If an executable construct references a nonpointer function,

Re: [Patch, PR Fortran/90072] Polymorphic Dispatch to Polymophic Return Type Memory Leak

2024-06-07 Thread Paul Richard Thomas
Hi Andre, I apologise for the slow response. It's been something of a heavy week... This is good for mainline. Thanks Paul PS That's good news about the funding. Maybe we will get to see "built in" coarrays soon? On Tue, 4 Jun 2024 at 11:25, Andre Vehreschild wrote: > Hi all, > > attached

Re: [Patch, PR Fortran/90072] Polymorphic Dispatch to Polymophic Return Type Memory Leak

2024-06-07 Thread Paul Richard Thomas
Hi Andre, I apologise for the slow response. It's been something of a heavy week... This is good for mainline. Thanks Paul PS That's good news about the funding. Maybe we will get to see "built in" coarrays soon? On Tue, 4 Jun 2024 at 11:25, Andre Vehreschild wrote: > Hi all, > > attached

Re: [PATCH 0/5] s390x: Add Full Boot Order Support

2024-06-07 Thread Thomas Huth
On 06/06/2024 21.22, Jared Rossi wrote: On 6/5/24 4:02 AM, Thomas Huth wrote: On 29/05/2024 17.43, jro...@linux.ibm.com wrote: From: Jared Rossi This patch set primarily adds support for the specification of multiple boot devices, allowing for the guest to automatically use an alternative

  1   2   3   4   5   6   7   8   9   10   >