Re: RFR: 8319779: SystemMenu: memory leak due to listener never being removed [v2]

2024-06-12 Thread Johan Vos
On Wed, 13 Dec 2023 09:20:12 GMT, Jose Pereda wrote: >> Johan Vos has updated the pull request incrementally with one additional >> commit since the last revision: >> >> process reviewers comments > > About adding an automated test, the lea

[Perl/perl5] 1af8c2: cpan/Getopt-Long - Update to version 2.58

2024-06-12 Thread Johan Vromans via perl5-changes
Branch: refs/heads/blead Home: https://github.com/Perl/perl5 Commit: 1af8c2511d913103b8c3b3909277d06696acea8f https://github.com/Perl/perl5/commit/1af8c2511d913103b8c3b3909277d06696acea8f Author: Johan Vromans Date: 2024-06-12 (Wed, 12 Jun 2024) Changed paths: M

Re: Gestore configurazioni display

2024-06-11 Thread Johan Haggi
mar 11 giugno 2024, alle 22:08 (GMT+0200), Johan Haggi ha scritto: > Il 11/06/24 10:22, Marco Bertorello ha scritto: > > [,,,] > > > Sto cercando un tool (se fosse un'extension di gnome ancora > > meglio) che mi > > > permetta di memorizzare de

Re: Gestore configurazioni display

2024-06-11 Thread Johan Haggi
, notable for being the only listed program to be Qt based LXDE's LXRandR, notable for storing configuration in ~/.config/autostart/lxrandr-autostart urandr zarfy, notable for its nice use of a current screenshot -- Cura ut valeasJohan Haggi OpenPGP key: https://keys.op

[Galette-users] Re: Test Nightly 1.1.0 rc2 du 21-05-2024

2024-06-11 Thread Johan Cwiklinski
un fichier local_paths.inc.php avec : define('GALETTE_URI', 'http://s5XXXx.onlinehome.fr/'); Tu peux aussi le mettre dans galette/config/behavior.inc.php - mais oui, c'est nécessaire de définir l'URL de l'instance qu'on ne peut "deviner" depuis la co

[Galette-users] Re: Test Nightly 1.1.0 rc2 du 21-05-2024

2024-06-11 Thread Johan Cwiklinski
Salut, Le 11/06/2024 à 16:37, tezorc a écrit : Johan, Je n'ai rien dans les logs Comment faire? J'ai vu l'erreur que j'ai corrigée en lançant le script galette/cron/reminder.php "à la main" depuis la console. Depuis une crontab standard, ça devrait être envoyé par email. Pour le

[Galette-users] Re: Log

2024-06-11 Thread Johan Cwiklinski
=DEV. ++ -- Johan ___ Galette-users mailing list -- galette-users@mailman3.com To unsubscribe send an email to galette-users-le...@mailman3.com

[Galette-users] Re: Tri colonne gestion des envois

2024-06-11 Thread Johan Cwiklinski
::$orderby is deprecated Fichier : /homepages/21/d595234059/htdocs/galette/lib/Galette/Filters/MailingsList.php Ligne : 115 En effet, merci pour le signalement. Voici le correctif : https://github.com/galette/galette/pull/515/commits/74232397ae184d2c1edb83474bc40fed17b01c98 ++ -- Johan

[Galette-users] Re: Test Nightly 1.1.0 rc2 du 21-05-2024

2024-06-11 Thread Johan Cwiklinski
avoir d'infos. ++ -- Johan ___ Galette-users mailing list -- galette-users@mailman3.com To unsubscribe send an email to galette-users-le...@mailman3.com

[clang] [test][OpenMP] Avoid writing to a potentially write-protected dir (PR #94931)

2024-06-10 Thread Karl-Johan Karlsson via cfe-commits
https://github.com/karka228 closed https://github.com/llvm/llvm-project/pull/94931 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

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

2024-06-10 Thread Johan Sjölen
s fine to be excessive when parsing strings as those parts of the code are not really performance critical. All the best, Johan src/hotspot/share/runtime/os.cpp line 96: > 94: DEBUG_ONLY(bool os::_mutex_init_done = false;) > 95: > 96: int os::is_space(int c) { `os::isspace` test/hotsp

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

2024-06-10 Thread Johan Sjölen
s fine to be excessive when parsing strings as those parts of the code are not really performance critical. All the best, Johan src/hotspot/share/runtime/os.cpp line 96: > 94: DEBUG_ONLY(bool os::_mutex_init_done = false;) > 95: > 96: int os::is_space(int c) { `os::isspace` test/hotsp

[clang] [test][OpenMP] Avoid writing to a potentially write-protected dir (PR #94931)

2024-06-10 Thread Karl-Johan Karlsson via cfe-commits
https://github.com/karka228 edited https://github.com/llvm/llvm-project/pull/94931 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [test][OpenMP] Avoid writing to a potentially write-protected dir (PR #94931)

2024-06-10 Thread Karl-Johan Karlsson via cfe-commits
https://github.com/karka228 updated https://github.com/llvm/llvm-project/pull/94931 >From c5b2765d9f4bd2a8412c0722a052148673411f94 Mon Sep 17 00:00:00 2001 From: Karl-Johan Karlsson Date: Mon, 10 Jun 2024 07:45:48 +0200 Subject: [PATCH 1/2] [test][OpenMP] Avoid writing to a potentially wr

[clang] [test][OpenMP] Avoid writing to a potentially write-protected dir (PR #94931)

2024-06-10 Thread Karl-Johan Karlsson via cfe-commits
@@ -1,4 +1,4 @@ -// RUN: %clang_cc1 -emit-llvm -verify -fopenmp %s +// RUN: %clang_cc1 -fsyntax-only -verify -fopenmp %s karka228 wrote: It seems like this was a bad idea. When I test this locally this test works for me, but it seems like the it fail in the

[clang] [test][OpenMP] Avoid writing to a potentially write-protected dir (PR #94931)

2024-06-09 Thread Karl-Johan Karlsson via cfe-commits
the -emit-llvm option with -fsyntax-only as it don't care about the outputed llvm IR. >From c5b2765d9f4bd2a8412c0722a052148673411f94 Mon Sep 17 00:00:00 2001 From: Karl-Johan Karlsson Date: Mon, 10 Jun 2024 07:45:48 +0200 Subject: [PATCH] [test][OpenMP] Avoid writing to a potentially wr

Re: JavaFX on Windows ARM

2024-06-09 Thread Johan Vos
. It would be good to know if someone is compiling media/webkit for Win/AArch64. - Johan On Sat, Jun 8, 2024 at 10:01 PM Christopher Schnick wrote: > Hello there, > > with the latest releases of ARM hardware with Windows I just wanted to > ask whether there are any plans on officiall

[Galette-users] Release Galette 1.1.0!

2024-06-08 Thread Johan Cwiklinski
la mise à jour ! https://galette.eu/site/fr/post/2024/06/08/galette-1-1-0.html Bonne Galette :) ++ -- Johan ___ Galette-users mailing list -- galette-users@mailman3.com To unsubscribe send an email to galette-users-le...@mailman3.com

[Galette-users] Re: Test Nightly 1.1.0 rc2 du 21-05-2024

2024-06-08 Thread Johan Cwiklinski
... Et pourtant ; c'est bel et bien le cas : Je retrouve trace de cela dans lea gestion des images, en 2009 - pour la version 0.7. Les champs dynamiques de type fichier sont arrivé bien après, et ont repris la même logique que les autres fichiers. ++ -- Johan

Re: RFR: 8333566: Remove unused methods

2024-06-07 Thread Johan Sjölen
so don't understand why you comment out tests. If you can make these into smaller and more localized PRs, then I'll be happy to take a look if I think I'm the right person to review it. All the best, Johan - PR Comment: https://git.openjdk.org/jdk/pull/19550#issuecomment-2154676801

[Galette-users] Re: Test Nightly 1.1.0 rc2 du 21-05-2024

2024-06-05 Thread Johan Cwiklinski
Re, Le 06/06/2024 à 07:41, Johan Cwiklinski a écrit : Salut, Le 05/06/2024 à 22:08, tezorc a écrit : Par contre, les rappels à partir d'une tâche cron ne sont plus fonctionnelles. En testant vite fait dans la foulée, j'ai détecté un problème de format sur une date ; c'est corrigé là

[Galette-users] Re: Test Nightly 1.1.0 rc2 du 21-05-2024

2024-06-05 Thread Johan Cwiklinski
-debug) pour ne rien louper. ++ -- Johan ___ Galette-users mailing list -- galette-users@mailman3.com To unsubscribe send an email to galette-users-le...@mailman3.com

[Openvpn-devel] IRC community meeting summary

2024-06-05 Thread Johan Draaisma
network every Wednesday at 14:00 Central European Time. Kind regards, Johan Draaisma ___ Openvpn-devel mailing list Openvpn-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/openvpn-devel

Re: [PATCH v1 0/4] lm3533: Remove the outdated drivers

2024-06-05 Thread Johan Hovold
On Fri, May 31, 2024 at 08:17:34PM +0300, Andy Shevchenko wrote: > +Cc: Johan (via kernel.org) > > On Fri, May 31, 2024 at 08:14:43PM +0300, Andy Shevchenko wrote: > > On Fri, May 31, 2024 at 07:56:12PM +0300, Andy Shevchenko wrote: > > > Driver is quite outdated from t

[OpenSIPS-Users] on DB read or write.

2024-06-05 Thread Johan De Clercq
Hello, is it possible to split out DB module connections (e.g. auth_db) in multiple connections (e.g. 1 for read and 1 for write) ? BR, JOhan. ___ Users mailing list Users@lists.opensips.org http://lists.opensips.org/cgi-bin/mailman/listinfo/users

Re: [rsyslog] Metrics: rsyslog_queue_full_counter vs rsyslog_queue_discarded_full_counter?

2024-06-04 Thread Johan Ryberg via rsyslog
Yes, I'm exporting that to Prometheus. That's how I found out the full counter. That's the only thing that I can find that stands out. Regards Johan Den tis 4 juni 2024 20:12David Lang skrev: > to see what's happening with the queues, enable impstats so you can see > queue >

[jfx21u] Integrated: 8332539: Update libxml2 to 2.12.7

2024-06-04 Thread Johan Vos
On Tue, 4 Jun 2024 17:39:04 GMT, Johan Vos wrote: > 8332539: Update libxml2 to 2.12.7 This pull request has now been integrated. Changeset: 1d2bc14d Author: Johan Vos URL: https://git.openjdk.org/jfx21u/commit/1d2bc14df14d09a921194b273249e394fb1012ff Stats: 67 lines in 9 fi

[jfx17u] Integrated: 8332539: Update libxml2 to 2.12.7

2024-06-04 Thread Johan Vos
On Tue, 4 Jun 2024 17:39:07 GMT, Johan Vos wrote: > 8332539: Update libxml2 to 2.12.7 This pull request has now been integrated. Changeset: 14575c54 Author: Johan Vos URL: https://git.openjdk.org/jfx17u/commit/14575c54a2b665384bbf4d81a1e2672912691562 Stats: 67 lines in 9 fi

[jfx21u] RFR: 8332539: Update libxml2 to 2.12.7

2024-06-04 Thread Johan Vos
8332539: Update libxml2 to 2.12.7 - Commit messages: - Backport dedcf1d236b5429dcf3c42f5fd1095b28d5da063 Changes: https://git.openjdk.org/jfx21u/pull/60/files Webrev: https://webrevs.openjdk.org/?repo=jfx21u=60=00 Issue: https://bugs.openjdk.org/browse/JDK-8332539 Stats: 67

[jfx17u] RFR: 8332539: Update libxml2 to 2.12.7

2024-06-04 Thread Johan Vos
8332539: Update libxml2 to 2.12.7 - Commit messages: - Backport dedcf1d236b5429dcf3c42f5fd1095b28d5da063 Changes: https://git.openjdk.org/jfx17u/pull/192/files Webrev: https://webrevs.openjdk.org/?repo=jfx17u=192=00 Issue: https://bugs.openjdk.org/browse/JDK-8332539 Stats: 67

[jfx17u] Integrated: 8331748: Update libxml2 to 2.12.6

2024-06-04 Thread Johan Vos
On Tue, 4 Jun 2024 14:18:04 GMT, Johan Vos wrote: > 8331748: Update libxml2 to 2.12.6 This pull request has now been integrated. Changeset: 1dfcbed2 Author: Johan Vos URL: https://git.openjdk.org/jfx17u/commit/1dfcbed2f5586c3efceed4c95ebec3d23ee99573 Stats: 24912 lines in

[jfx21u] Integrated: 8331748: Update libxml2 to 2.12.6

2024-06-04 Thread Johan Vos
On Tue, 4 Jun 2024 14:19:52 GMT, Johan Vos wrote: > 8331748: Update libxml2 to 2.12.6 This pull request has now been integrated. Changeset: f8e75ca6 Author: Johan Vos URL: https://git.openjdk.org/jfx21u/commit/f8e75ca6b9fc2005285f76fe958c589cb9a328c3 Stats: 24912 lines in

[jfx17u] Integrated: 8332328: [GHA] GitHub Actions build fails on Linux: unable to find gcc-13

2024-06-04 Thread Johan Vos
On Tue, 4 Jun 2024 14:36:16 GMT, Johan Vos wrote: > 8332328: [GHA] GitHub Actions build fails on Linux: unable to find gcc-13 This pull request has now been integrated. Changeset: 3a7cad84 Author: Johan Vos URL: https://git.openjdk.org/jfx17u/com

[jfx21u] Integrated: 8332328: [GHA] GitHub Actions build fails on Linux: unable to find gcc-13

2024-06-04 Thread Johan Vos
On Tue, 4 Jun 2024 14:35:28 GMT, Johan Vos wrote: > 8332328: [GHA] GitHub Actions build fails on Linux: unable to find gcc-13 This pull request has now been integrated. Changeset: 20866584 Author: Johan Vos URL: https://git.openjdk.org/jfx21u/com

[jfx17u] RFR: 8331748: Update libxml2 to 2.12.6

2024-06-04 Thread Johan Vos
8331748: Update libxml2 to 2.12.6 - Commit messages: - Backport 97b1402501983f121f75c24a510f466837fa2ecc Changes: https://git.openjdk.org/jfx17u/pull/190/files Webrev: https://webrevs.openjdk.org/?repo=jfx17u=190=00 Issue: https://bugs.openjdk.org/browse/JDK-8331748 Stats:

[jfx17u] RFR: 8332328: [GHA] GitHub Actions build fails on Linux: unable to find gcc-13

2024-06-04 Thread Johan Vos
8332328: [GHA] GitHub Actions build fails on Linux: unable to find gcc-13 - Commit messages: - Backport d7ab55184f757a614f9fc8f191c3c5794a16cc88 Changes: https://git.openjdk.org/jfx17u/pull/191/files Webrev: https://webrevs.openjdk.org/?repo=jfx17u=191=00 Issue:

[jfx21u] RFR: 8332328: [GHA] GitHub Actions build fails on Linux: unable to find gcc-13

2024-06-04 Thread Johan Vos
8332328: [GHA] GitHub Actions build fails on Linux: unable to find gcc-13 - Commit messages: - Backport d7ab55184f757a614f9fc8f191c3c5794a16cc88 Changes: https://git.openjdk.org/jfx21u/pull/59/files Webrev: https://webrevs.openjdk.org/?repo=jfx21u=59=00 Issue:

[jfx21u] RFR: 8331748: Update libxml2 to 2.12.6

2024-06-04 Thread Johan Vos
8331748: Update libxml2 to 2.12.6 - Commit messages: - Backport 97b1402501983f121f75c24a510f466837fa2ecc Changes: https://git.openjdk.org/jfx21u/pull/58/files Webrev: https://webrevs.openjdk.org/?repo=jfx21u=58=00 Issue: https://bugs.openjdk.org/browse/JDK-8331748 Stats:

[jira] [Created] (SPARK-48526) Allow passing custom sink to StreamTest::testStream

2024-06-04 Thread Johan Lasperas (Jira)
Johan Lasperas created SPARK-48526: -- Summary: Allow passing custom sink to StreamTest::testStream Key: SPARK-48526 URL: https://issues.apache.org/jira/browse/SPARK-48526 Project: Spark

Re: [rsyslog] Metrics: rsyslog_queue_full_counter vs rsyslog_queue_discarded_full_counter?

2024-06-04 Thread Johan Ryberg via rsyslog
n tell is that the pushback is an introduced delay in the psh ack to let off the pressure on the queue? Since the affected queue is my omprog it's probably safe to say that I'm on the limit of what the current code can handle or is there any other tuning that might be suggested if we play with the thought t

Re: Ofbiz starting slow

2024-06-04 Thread Johan Cronje
') } } tasks.named('distZip').configure { onlyIf { project.hasProperty('includeDistZip') } } This made our startup significantly faster. Kind Regards, Johan On Tue, 4 Jun 2024 at 14:32, Ingo Wolfmayr wrote: > > Hi everybody, > > I have an OFBiz installation (multiple te

[cooperation-wg] Reminder to register for the June 6th Open House session

2024-06-03 Thread Johan Helsingius via cooperation-wg
Dear members and colleagues, I hope you'll join me and my co-chairs for our virtual Interim session on "The Future of Europe's Digital Infrastructure and Regulation" this Thursday, 6 June 2024, from 08:30 – 09:30 UTC (10:30 - 11:30 CET). During this session, Peter Stuckmann of the European

Re: linux-image backports metapackage

2024-06-01 Thread Johan Kröckel
rnels are > heavily tested and ‘special case’ for the LTS release (which is different > than Debian). > > > > [1]: https://wiki.ubuntu.com/UbuntuBackports#Forbidden_packages > > > > > > Thomas > > Ubuntu Developer > > Ubuntu Backporter > Hello Thomas, Th

Re: linux-image backports metapackage

2024-06-01 Thread Johan Kröckel
o keep the last kernel installed as a fallback as well. Yes, I run only one, but I have two installed anyway, so why not four? Am Sa., 1. Juni 2024 um 22:21 Uhr schrieb Michael Tokarev : > 01.06.2024 14:34, Johan Kröckel wrote: > > Hello everybody, > > > > I think I

linux-image backports metapackage

2024-06-01 Thread Johan Kröckel
-image-6.7.12+bpo-amd64, it stays at that version. I think (not sure anymore) Ubuntu-backports uses a meta-package like linux-image-amd64-bookworm-backports. Wouldn't this be a solution or why would that be a bad/unfeasible idea? Thank you Johan

Re: [Talk-se] Diskussion om badplatser

2024-06-01 Thread Johan
Då skulle jag rekommendera att ni byter till att följa forumet istället. Det är där saker händer nu. Om det är viktigt att få e-post så kan man confa forumet att maila updates, och inloggningen är med OSM-kontot. Lägre tröskel är svårt att uppbringa. Johan / <https://www.openstreetmap.org/u

[Wikimedia-l] Re: Celebrating 15 years of Wikimedia Ukraine

2024-05-31 Thread Johan Jönsson
Happy birthday, Wikimedia Ukraine, and thank you for your work. Vänliga hälsningar, //Johan Jönsson -- Den fre 31 maj 2024 kl 10:39 skrev Anton Protsiuk < anton.prots...@wikimedia.org.ua>: > Hi all, > > Today Wikimedia Ukraine, the nonprofit organization that supports >

Re: [update] audio/beets update to 2.0.0; taking maintainer

2024-05-30 Thread Johan Huldtgren
hello, On 2024-05-30 14:00, Kirill A. Korinsky wrote: > On Thu, 30 May 2024 13:26:26 +0100, > Stuart Henderson wrote: > > > > On 2024/05/30 13:20, Kirill A. Korinsky wrote: > > > -RUN_DEPENDS+=audio/py-discogs-client${MODPY_FLAVOR}>=2.0.2 \ > > > +RUN_DEPENDS+=

[ceph-users] MDS crashing

2024-05-29 Thread Johan
2.7 (b12291d110049b2f35e32e0de30d70e9a4c060d2) quincy (stable) Why is the mds (in error state) for the backupfs-filesystem shown with the cloudfs-filesystem? Now... Is there a way back to normal? /Johan ___ ceph-users mailing list -- ceph-users@ceph

Re: JavaFX applications fail to build with Maven 3.9.7

2024-05-29 Thread Johan Vos
Yes, that is why I filed https://bugs.openjdk.org/browse/JDK-8333147 (which hints at a fix: Instead of `classifier "$t.name"` we should now use `archiveClassifier.set( t.name)` ) - Johan On Wed, May 29, 2024 at 4:58 PM John Neffenger wrote: > On 5/29/24 12:19 AM, Joeri Sykora wro

[Galette-users] Re: Favicon personnalisé

2024-05-29 Thread Johan Cwiklinski
faire cette modification via un css ? La surcharge des CSS est expliqué là : https://doc.galette.eu/fr/develop/usermanual/avancee.html#adapt-to-your-graphical-chart L'image de fond est définie par la règle ".loggedin #main". ++ -- Johan _

[Openvpn-devel] IRC community meeting summary

2024-05-29 Thread Johan Draaisma
works but wants to clean things up and make a PR./ As always you're welcome to join at #openvpn-meeting on Libera IRC network every Wednesday at 14:00 Central European Time. Kind regards, Johan Draaisma ___ Openvpn-devel mailing list Openvpn

[OpenSIPS-Users] opensips not failing over on 500.

2024-05-29 Thread Johan De Clercq
? Br, Johan. ___ Users mailing list Users@lists.opensips.org http://lists.opensips.org/cgi-bin/mailman/listinfo/users

Re: RFR: 8333047: Remove arena-size-workaround in jvmtiUtils.cpp

2024-05-29 Thread Johan Sjölen
On Tue, 28 May 2024 12:36:41 GMT, Thomas Stuefe wrote: > In `JvmtiUtil::single_threaded_resource_area()`, we create a resource area > that is supposed to work even if the current thread is not attached yet and > there is no associated Thread or the Thread has no valid ResourceArea. > > It

[Galette-users] Re: Galette 1.0.4

2024-05-29 Thread Johan Cwiklinski
s, quid de la réponse de GEORGES *BEYNA* concernant "le cache" ? Au pire, il faut vider ce dossier après migration depuis une 1.0.3. Je n'ai néanmoins connaissance d'aucun problème - la version 1.0.4 fonctionne parfaitement telle quelle. ++ -- Johan __

[Galette-users] Re: Galette 1.1.0-rc2

2024-05-29 Thread Johan Cwiklinski
s; but I'm very limited; I'll have to setup a complete reliable UI tests (maybe with something like selenium). It's a quite huge job; I'll work on that later. ++ -- Johan ___ Galette-users mailing list -- galette-users@mailman3.com To unsubscribe sen

Re: [EXTERNAL] Re: svn checkout Hangs/Crashes/Succeeds Over HTTP

2024-05-27 Thread Johan Corveleyn
reverse-proxy, security scanning soft, ...) that messes with the network transfer (http or https). That would explain the symptoms you're seeing (client hangs waiting for network (and sometimes crashes), server has nothing to do and doesn't report anything special). -- Johan

[Galette-devel] Re: Plugin Prêt d’objets

2024-05-27 Thread Johan Cwiklinski
Salut, Le 26/05/2024 à 20:31, Johan Cwiklinski a écrit : Salut, Le 26/05/2024 à 19:59, tezorc a écrit : Avec la dernière nightly de Galette & du plugin "prêt d'objet" J'ai les deux messages d'erreurs suivants lors de la mise à jour : A partir de la page "liste d'objet&qu

[Galette-devel] Re: Plugin Prêt d’objets

2024-05-26 Thread Johan Cwiklinski
/plugin-objectslend/pull/23 ++ -- Johan ___ Galette-devel mailing list -- galette-devel@mailman3.com To unsubscribe send an email to galette-devel-le...@mailman3.com

Re: GUI interface to Subversion via web browser?

2024-05-24 Thread Johan Corveleyn
On Fri, May 24, 2024 at 3:18 PM Mark Phippard wrote: > On Fri, May 24, 2024 at 9:11 AM Johan Corveleyn wrote: > > What lots of people these days are looking for (myself included) is a > > modern "Code Forge" ... > > Beanstalk has always seemed like a solid ser

Re: GUI interface to Subversion via web browser?

2024-05-24 Thread Johan Corveleyn
la one day, I'd be interested in joining the effort :-). [1] https://www.wikidata.org/wiki/Wikidata:WikiProject_Informatics/Forges [2] https://en.wikipedia.org/wiki/Forge_(software) [3] https://en.wikipedia.org/wiki/Comparison_of_source-code-hosting_facilities [4] https://forgejo.org/ [5] https://codeberg.org/ -- Johan

Re: RFR: 8323511: Scrollbar Click jumps inconsistent amount of pixels [v9]

2024-05-24 Thread Johan Vos
On Wed, 22 May 2024 15:50:46 GMT, Florian Kirmaier wrote: >> As seen in the unit test of the PR, when we click on the area above/below >> the scrollbar the position jumps - but the jump is now not always consistent. >> In the current version on the last cell - the UI always jumps to the top.

Re: Svenska ubuntu-se.org nere

2024-05-24 Thread Johan Ramm-Ericson
Hej Michael, Pratar gärna med dig om ubuntu.se - har dock varit helt sänkt av allergi de senaste 2 veckorna. Återkommer så fort jag bara orkar. /Johan On Fri, May 24, 2024 at 1:48 PM Michael Hamberg wrote: > Hej, > > Om ni är intresserade kan vi hitta på något med ubuntu.se. >

[Galette-users] Re: Erreur avec la dernière nightly

2024-05-23 Thread Johan Cwiklinski
Salut, Le 22/05/2024 à 15:03, Frederic Tezorc a écrit : Hello, Lors du test de la dernière nightly, j'ai ce message. Pourtant, tout fonctionne bien avec la RC1 image.png Je ne reproduit pas. Tu obtient ça en faisant quelque chose de particulier ? ++ -- Johan

[Galette-users] Re: Galette 1.1.0-rc2

2024-05-23 Thread Johan Cwiklinski
ll bug. I've fixed it in: https://github.com/galette/galette/commit/f2fbb5419692789b7f3174ce6e005a0008ca4761 It will be part of tomorrow nightly build :) ++ -- Johan ___ Galette-users mailing list -- galette-users@mailman3.com To unsubscribe send an email t

[Galette-users] Re: Galette 1.0.4

2024-05-23 Thread Johan Cwiklinski
le dans un fichier php par exemple ... ? ). Il suffit de regarder le fichier galette/docs/CHANGES. ++ -- Johan ___ Galette-users mailing list -- galette-users@mailman3.com To unsubscribe send an email to galette-users-le...@mailman3.com

[cooperation-wg] Cooperation WG session, Thursday 9:00

2024-05-22 Thread Johan Helsingius via cooperation-wg
As a reminder, here is the agenda for the cooperation WG session in the main room on Thursday morning at 9:00: 9:00-9:05 Intro - co-chairs 9:05-9:25 Update on EUROPOL activities - Emmanuel Kessler, Head of Prevention and Outreach Team, EUROPOL 9:30-9:50 Update on NetMundial 10+ - Jeanette

Re: RFR: 8332313: Update code review guidelines [v4]

2024-05-22 Thread Johan Vos
On Tue, 21 May 2024 22:32:21 GMT, Kevin Rushforth wrote: >> Update the code review guidelines for JavaFX. >> >> The JavaFX >> [CONTRIBUTING](https://github.com/kevinrushforth/jfx/blob/8332313-contributing/CONTRIBUTING.md) >> guidelines includes guidance for creating, reviewing, and

[Openvpn-devel] IRC community meeting summary

2024-05-22 Thread Johan Draaisma
Wednesday at 14:00 Central European Time. Kind regards, Johan Draaisma ___ Openvpn-devel mailing list Openvpn-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/openvpn-devel

Re: RFR: 8323511: Scrollbar Click jumps inconsistent amount of pixels [v8]

2024-05-22 Thread Johan Vos
ily have to be the same value." -> can you elaborate a bit about > > this? > > I share this concern. I think that removing that last clause and putting a > period after "clip view" is probably the best. > > Johan: what do you think? I agree that removing

Re: [Framers] Test Post

2024-05-21 Thread Johan Anglemark
As can be seen in the list archive, it never reached the list server. -j -Original Message- From: Framers On Behalf Of Tammy Van Boening Sent: den 21 maj 2024 15:45 To: An email list for people using Adobe FrameMaker software. Subject: [Framers] Test Post The usual testing to see if

InlineSecondarySupersTest only available in c2?

2024-05-21 Thread Johan Vos
on those platforms as well (it works fine on the server variant, as that grabs c2_globals.hpp). Is this a more generic issue than just mobile? Thanks, - Johan [1] https://github.com/openjdk/jdk/commit/47377a2ad398eadd7acb8cccf1e95703c76328fe#diff

[Galette-users] Re: Galette 1.1.0-rc2

2024-05-21 Thread Johan Cwiklinski
Hello, Le 21/05/2024 à 02:22, Mhel Marcelo a écrit : [...] Can I use that I'm gonna be on my 52nd yrs in a few days as an excuse :-), :-D No problem, no need for any excuse ;) Thanks for testing and giving feedback on RCs releases! ++ -- Johan

[Galette-users] Re: Galette 1.1.0-rc2

2024-05-20 Thread Johan Cwiklinski
Hi, Le 20/05/2024 à 14:31, Mhel Marcelo a écrit : In "member profile" page, "Gender" does not appear anymore, is that intentional? Gender, Name, First name and Title are all displayed one line on member profile; that's not something new nor recently cha

[Galette-users] Re: local_export_fields

2024-05-20 Thread Johan Cwiklinski
Hi, Le 18/05/2024 à 14:55, Johan Cwiklinski a écrit : First, the member's status ('priorite_adh') always get exported no matter what ( but without column header viewing with libreoffice calc). It's an issue that exists since version 1.0.0. I've committed a fix yesterday, but it had too much

[Galette-users] Re: local_export_fields

2024-05-18 Thread Johan Cwiklinski
80 that's all for now folk's :) I confirm I can reproduce on my local instance. I've created a ticket for that: https://bugs.galette.eu/issues/1834 ++ -- Johan ___ Galette-users mailing list -- galette-users@mailman3.com To unsubscribe send

[Galette-devel] Galette 1.1.0-rc2

2024-05-18 Thread Johan Cwiklinski
, je suis heureux d'annoncer une nouvelle release candidate pour la prochaine version majeure de Galette ! https://galette.eu/site/fr/post/2024/05/18/galette-1-1-0rc2.html ++ -- Johan ___ Galette-devel mailing list -- galette-devel@mailman3.com

[Galette-users] Galette 1.1.0-rc2

2024-05-18 Thread Johan Cwiklinski
, je suis heureux d'annoncer une nouvelle release candidate pour la prochaine version majeure de Galette ! https://galette.eu/site/fr/post/2024/05/18/galette-1-1-0rc2.html ++ -- Johan ___ Galette-users mailing list -- galette-users@mailman3.com

[jira] [Commented] (MBUILDCACHE-78) Maven reactor doesn't work well for a multimodule project when enabling build cache

2024-05-17 Thread Johan Parent (Jira)
[ https://issues.apache.org/jira/browse/MBUILDCACHE-78?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17847243#comment-17847243 ] Johan Parent commented on MBUILDCACHE-78: - Hello [~honnix] , I tried on your cache project

Re: Unsupported class file major version 65 when running on java 21

2024-05-17 Thread Johan Compagner via users
.. But nothing related to what the latest versions can be because of that ASM johan On Fri, 17 May 2024 at 08:20, Schalk Cronje wrote: > Is there a page on the doc website that has this info ? > > On 17/05/2024 02:42, Paul King wrote: > > Our JDK version support is determined fir

Re: [connect-wg] Connect WG Chairs: Call for nominations

2024-05-17 Thread Johan Helsingius via connect-wg
On 17/05/2024 01:39, Randy Epstein wrote: Paul Hoogsteder has my support as co-chair of the Connect-WG. I likewise support Paul. Julf ___ connect-wg mailing list connect-wg@ripe.net https://lists.ripe.net/mailman/listinfo/connect-wg To

[plasmashell] [Bug 393781] wallpaper cannot span multiple screens

2024-05-17 Thread Johan Toft
https://bugs.kde.org/show_bug.cgi?id=393781 Johan Toft changed: What|Removed |Added CC||johan.t...@gmail.com -- You are receiving

[jira] [Updated] (SPARK-48308) Unify getting data schema without partition columns in FileSourceStrategy

2024-05-16 Thread Johan Lasperas (Jira)
[ https://issues.apache.org/jira/browse/SPARK-48308?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Johan Lasperas updated SPARK-48308: --- Description: In [FileSourceStrategy,|https://github.com/apache/spark/blob/master/sql/core

Re: vmm guest does not get IP after upgrade to 7.5

2024-05-16 Thread Johan Huldtgren
hello, On 2024-05-16 16:14, Claudio Jeker wrote: > On Thu, May 16, 2024 at 10:00:20AM -0400, Johan Huldtgren wrote: > > hello, > > Removed a lot of text to keep this under control. > > > > > > >> > Relevant configs: > > > >

Re: vmm guest does not get IP after upgrade to 7.5

2024-05-16 Thread Johan Huldtgren
hello, On 2024-05-16 15:06, Claudio Jeker wrote: > On Thu, May 16, 2024 at 08:52:24AM -0400, Johan Huldtgren wrote: > > hello, > > > > On 2024-05-16 8:14, Dave Voutila wrote: > > > > > > Johan Huldtgren writes: > > > > > > > he

Re: vmm guest does not get IP after upgrade to 7.5

2024-05-16 Thread Johan Huldtgren
hello, On 2024-05-16 8:14, Dave Voutila wrote: > > Johan Huldtgren writes: > > > hello, > > > > On 2024-05-15 17:31, Dave Voutila wrote: > >> > >> Johan Huldtgren writes: > >> > >> >> Synopsis: vmm g

[jira] [Updated] (SPARK-48308) Unify getting data schema without partition columns in FileSourceStrategy

2024-05-16 Thread Johan Lasperas (Jira)
[ https://issues.apache.org/jira/browse/SPARK-48308?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Johan Lasperas updated SPARK-48308: --- Description: In [FileSourceStrategy,|https://github.com/apache/spark/blob/master/sql/core

[jira] [Created] (SPARK-48308) Unify getting data schema without partition columns in FileSourceStrategy

2024-05-16 Thread Johan Lasperas (Jira)
Johan Lasperas created SPARK-48308: -- Summary: Unify getting data schema without partition columns in FileSourceStrategy Key: SPARK-48308 URL: https://issues.apache.org/jira/browse/SPARK-48308

Re: RFR: 8332327: Return _methods_jmethod_ids field back in VMStructs

2024-05-16 Thread Johan Sjölen
On Wed, 15 May 2024 21:12:03 GMT, Andrei Pangin wrote: > The fix for [JDK-8313332](https://bugs.openjdk.org/browse/JDK-8313332) has > [removed](https://github.com/openjdk/jdk/commit/21867c929a2f2c961148f2cd1e79d672ac278d27#diff-7d448441e80a0b784429d5d8aee343fcb131c224b8ec7bc70ea636f78d561ecd >

Unsupported class file major version 65 when running on java 21

2024-05-16 Thread Johan Compagner via users
and what groovy is supporting (not from but until) I do find more people with the same problem, but no real answers on those questions.. johan -- Johan Compagner Servoy

Re: RFR: 8332313: Update code review guidelines

2024-05-16 Thread Johan Vos
On Wed, 15 May 2024 21:57:23 GMT, Kevin Rushforth wrote: >> CONTRIBUTING.md line 233: >> >>> 231: * Don't worry too much about import order. Try not to change it but >>> don't worry about fighting your IDE to stop it from doing so. >>> 232: >>> 233: New code should be formatted consistently

Re: RFR: 8332313: Update code review guidelines

2024-05-16 Thread Johan Vos
On Wed, 15 May 2024 19:39:10 GMT, Kevin Rushforth wrote: >> README-code-reviews.md line 66: >> >>> 64: * Focus first on substantive comments rather than stylistic comments >>> 65: * Consider the risk of regression >>> 66: * Consider any compatibility concerns >> >> regression and compatibility

[jira] [Comment Edited] (MBUILDCACHE-78) Maven reactor doesn't work well for a multimodule project when enabling build cache

2024-05-15 Thread Johan Parent (Jira)
[ https://issues.apache.org/jira/browse/MBUILDCACHE-78?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17846817#comment-17846817 ] Johan Parent edited comment on MBUILDCACHE-78 at 5/16/24 5:38 AM

[jira] [Commented] (MBUILDCACHE-78) Maven reactor doesn't work well for a multimodule project when enabling build cache

2024-05-15 Thread Johan Parent (Jira)
[ https://issues.apache.org/jira/browse/MBUILDCACHE-78?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17846817#comment-17846817 ] Johan Parent commented on MBUILDCACHE-78: - Hi, I confirm. The checksum for the pom seems

Re: vmm guest does not get IP after upgrade to 7.5

2024-05-15 Thread Johan Huldtgren
hello, On 2024-05-15 17:31, Dave Voutila wrote: > > Johan Huldtgren writes: > > >> Synopsis: vmm guest does not get IP after upgrade to 7.5 > >> Category: vmd > >> Environment: > > System : OpenBSD 7.5 > > Details : OpenBSD 7.

vmm guest does not get IP after upgrade to 7.5

2024-05-15 Thread Johan Huldtgren
m" { disk "/home/vm/guest.img" owner johan memory 4G local interface tap0 } $ doas cat /etc/hostname.tap0 up $ doas cat /etc/hostname.bridge0 add trunk0 add tap0 $ doas ifconfig tap0 tap0: flags=8943 mtu 1500 lladdr fe:e1:ba:d0:78:97

[kwin] [Bug 427545] Dual DisplayPort monitors (tiled, MST, e.g. 5k) are not supported by KWin

2024-05-15 Thread Johan Toft
https://bugs.kde.org/show_bug.cgi?id=427545 Johan Toft changed: What|Removed |Added CC||johan.t...@gmail.com -- You are receiving

Re: RFR: 8319779: SystemMenu: memory leak due to listener never being removed [v16]

2024-05-15 Thread Johan Vos
On Thu, 9 May 2024 19:48:19 GMT, Johan Vos wrote: >> A listener was added but never removed. >> This patch removes the listener when the menu it links to is cleared. Fix >> for https://bugs.openjdk.org/browse/JDK-8319779 > > Johan Vos has updated the pull reques

[Wikitech-l] Wikimedia AI Zoom call 16 May

2024-05-15 Thread Johan Jönsson
Hey everyone, Of potential interest to this mailing list, there's a Wikimedia AI Zoom call tomorrow: https://meta.wikimedia.org/wiki/Wikimedia_Foundation_Annual_Plan/2024-2025/Collaboration/AI_call (It will be recorded.) Best, *Johan Jönsson*Manager, Movement Communications Wikimedia

Re: [EXTERNAL] Re: svn checkout Hangs/Crashes/Succeeds Over HTTP

2024-05-15 Thread Johan Corveleyn
or disable / create an exclude rule), as a diagnostic step to see whether this might be the cause. -- Johan

  1   2   3   4   5   6   7   8   9   10   >