Re: RFR: 8333893: Optimization for StringBuilder append boolean & null

2024-06-10 Thread Dean Long
On Mon, 10 Jun 2024 12:12:58 GMT, Shaojin Wen wrote: > After PR https://github.com/openjdk/jdk/pull/16245, C2 optimizes stores into > primitive arrays by combining values ​​into larger stores. > > This PR rewrites the code of appendNull and append(boolean) methods so that > these two methods

[Cscwg-public] CSCWG Agenda June 13, 2024

2024-06-10 Thread Dean Coclin via Cscwg-public
(Martijn) 6. Simplifying EV (Bruce) 7. Other business 8. Next meeting - F2F 9. Adjourn Dean Coclin CSCWG Chair smime.p7s Description: S/MIME cryptographic signature ___ Cscwg-public mailing list Cscwg-public@cabforum.org

Re: Proposal to include --exclude-extension Flag in pg_dump

2024-06-10 Thread Dean Rasheed
On Sat, 8 Jun 2024 at 19:39, Ayush Vatsa wrote: > > > Attached is a patch for the --filter docs, covering the omissions I can see. > Thanks Dean for working on this. > I have reviewed the changes and they look good to me. > Thanks for checking. I have committed this now. Regards, Dean

pgsql: doc: Mention all options equivalent to pg_dump --filter patterns

2024-06-10 Thread Dean Rasheed
doc: Mention all options equivalent to pg_dump --filter patterns. In the documentation for pg_dump's new --filter option, added by commit a5cf808be5, each object pattern should match some other existing pg_dump option, but some had been omitted, so add them. Noted by Daniel Gustafsson, reviewed

Re: Proposal to include --exclude-extension Flag in pg_dump

2024-06-07 Thread Dean Rasheed
docs, covering the omissions I can see. Regards, Dean diff --git a/doc/src/sgml/ref/pg_dump.sgml b/doc/src/sgml/ref/pg_dump.sgml new file mode 100644 index 08d7753..b1dfa21 --- a/doc/src/sgml/ref/pg_dump.sgml +++ b/doc/src/sgml/ref/pg_dump.sgml @@ -866,13 +866,14 @@ PostgreSQL documentation

Re: First draft of PG 17 release notes

2024-06-05 Thread Dean Rasheed
integers to hex and binary strings should read: Add functions to convert integers to binary and octal strings The "Improve psql tab completion" item should include this commit: Author: Michael Paquier 2024-05-01 [2800fbb2b] Add tab completion for EXPLAIN (MEMORY|SERIALIZE) and credit Jian He. Regards, Dean

[Bug 2068071] [NEW] package linux-headers-6.8.0-35-generic 6.8.0-35.35 failed to install/upgrade: installed linux-headers-6.8.0-35-generic package post-installation script subprocess returned error ex

2024-06-04 Thread David Dean
Public bug reported: Bug report was waiting when I started using the computer in the morning. No idea what it is about, sorry. ProblemType: Package DistroRelease: Ubuntu 24.04 Package: linux-headers-6.8.0-35-generic 6.8.0-35.35 ProcVersionSignature: Ubuntu 6.8.0-31.31-generic 6.8.1 Uname: Linux

Re: plpgsql: fix parsing of integer range with underscores

2024-06-04 Thread Dean Rasheed
On Fri, 17 May 2024 at 09:22, Dean Rasheed wrote: > > On Wed, 15 May 2024 at 02:14, Erik Wienhold wrote: > > > > plpgsql fails to parse 1_000..1_000 as 1000..1000 in FOR loops: > > > > Fixed in the attached patch. > > > > Nice catch! The patch looks go

pgsql: Fix PL/pgSQL's handling of integer ranges containing underscores

2024-06-04 Thread Dean Rasheed
Fix PL/pgSQL's handling of integer ranges containing underscores. Commit faff8f8e47 allowed integer literals to contain underscores, but failed to update the lexer's "numericfail" rule. As a result, a decimal integer literal containing underscores would fail to parse, if used in an integer range

pgsql: Fix PL/pgSQL's handling of integer ranges containing underscores

2024-06-04 Thread Dean Rasheed
Fix PL/pgSQL's handling of integer ranges containing underscores. Commit faff8f8e47 allowed integer literals to contain underscores, but failed to update the lexer's "numericfail" rule. As a result, a decimal integer literal containing underscores would fail to parse, if used in an integer range

Re: Minor fixes for couple some comments around MERGE RETURNING

2024-06-04 Thread Dean Rasheed
nother couple of similar comments that also needed updating, so I've pushed a fix for them too. Regards, Dean

pgsql: Fix another couple of outdated comments for MERGE RETURNING.

2024-06-04 Thread Dean Rasheed
Fix another couple of outdated comments for MERGE RETURNING. Oversights in c649fa24a4 which added RETURNING support to MERGE. Discussion: https://postgr.es/m/caaphdvpqp6vtuzg-_josueibgyqnrnvxj-vdf+hjlxjhdhz...@mail.gmail.com Branch -- master Details ---

Keyboard shortcut binding issues

2024-06-03 Thread Michael Dean Pugh
Hello! I just upgraded to 2.4, something I have been looking forward to doing for quite a while. I am having a minor problem that may be a bug. I had added quite a few additional keyboard shortcuts which LyX stored in a user.bind file in the bind subdirectory of the user directory. The old

[mailop] Microsoft failing to connect?

2024-05-30 Thread Dean Walsh via mailop
Hi All, We're seeing a weird issue with random servers on our network failing to connect from Microsoft. It's only some prefixes, and only seems to be affecting Microsoft. Is anyone else having this problem? I've been unable to have someone from Microsoft investigate further. Reason:

[Cscwg-public] CSC-24 (v3): Timestamping Private Key Protection: BALLOT RESULTS

2024-05-29 Thread Dean Coclin via Cscwg-public
the ballot fails. The proposer and endorsers are urged to review the ballot and coordinate a re-vote. Dean Coclin CSCWG Char From: Cscwg-public On Behalf Of Martijn Katerbarg via Cscwg-public Sent: Monday, May 20, 2024 11:05 AM To: cscwg-public@cabforum.org Subject: [Cscwg-public] [Voting

Re: View / test *-ttf fonts

2024-05-25 Thread Thomas D. Dean
On 5/25/24 07:22, Todd Gruhn wrote: Is there a way to view the *-ttf fonts? So I know what it will look like ... xfd Tom Dean

Re: RFR: 8327964: Simplify BigInteger.implMultiplyToLen intrinsic [v6]

2024-05-22 Thread Dean Long
On Wed, 22 May 2024 14:28:41 GMT, Yudi Zheng wrote: >> src/hotspot/cpu/aarch64/stubGenerator_aarch64.cpp line 4693: >> >>> 4691: const Register xlen = r1; >>> 4692: const Register z = r2; >>> 4693: const Register zlen = r3; >> >> LibraryCallKit::inline_squareToLen() is still

Re: plpgsql: fix parsing of integer range with underscores

2024-05-17 Thread Dean Rasheed
ince it's a v16+ bug. Regards, Dean

Re: avoid MERGE_ACTION keyword?

2024-05-17 Thread Dean Rasheed
chema-qualified function name, if necessary (something that the keyword approach saves us from). Regards, Dean

[Cscwg-public] Final CSCWG May 2nd, 2024 Minutes

2024-05-16 Thread Dean Coclin via Cscwg-public
), Richard Kisley (IBM), Brianca Martin (Amazon), Martijn Katerbarg (Sectigo), Wangmo Tenzing (Wangmo Tenzing), Tim Hollebeek (DigiCert), Janet Hines (VikingCloud), Atsushi INABA (GlobalSign), Dean Coclin (DigiCert), Inigo Barreira (Sectigo), Janet Hines (VikingCloud) Minute-taker: Brian Winters AntiTrust

Re: [LincolnTalk] state moving bear from Lincoln - Process? Bear Dens?

2024-05-15 Thread dean stillings
If you read Linda Macmillan’s post which is below. You would know that the bear did not get moved to Lincoln by the state. That he had moved 35 miles in the last week. Thank you Dean On Wed, May 15, 2024 at 11:53 AM ROY HARVEY wrote: > Franklin Park is planning "safety improvements&quo

[Cscwg-public] CSCWG Agenda May16, 2024

2024-05-14 Thread Dean Coclin via Cscwg-public
. Proposal for PCi-HSM acceptance for CA HSMs evaluation (R.Kisley) 7. Further discuss F2F Agenda 8. Other business 9. Next meeting - F2F 10. Adjourn Dean Coclin CSCWG Chair smime.p7s Description: S/MIME cryptographic signature

Re: Underscore in positional parameters?

2024-05-14 Thread Dean Rasheed
arked > parameters, so I guess that the answer to my question is no. My take > is all these cases should be rejected for params, only apply to > numeric and integer constants in the queries. > > Adding Dean in CC as the committer of faff8f8e47f, Peter E for the SQL > specification part,

Re: RFR: 8330171: Lazy W^X switch implementation

2024-05-12 Thread Dean Long
On Fri, 12 Apr 2024 14:40:05 GMT, Sergey Nazarkin wrote: > An alternative for preemptively switching the W^X thread mode on macOS with > an AArch64 CPU. This implementation triggers the switch in response to the > SIGBUS signal if the *si_addr* belongs to the CodeCache area. With this >

Re: E-comm live project

2024-05-06 Thread Dean Mahori
Add me +263786881635 Sent from Outlook for Android From: django-users@googlegroups.com on behalf of amruth bitla Sent: Monday, May 6, 2024 6:23:52 PM To: Django users Subject: Re: E-comm live project Hi 1001_prabhjot Singh, I am

[no subject]

2024-05-05 Thread Dean Mahori
Dear Programmers, My name is Dean Mahori and I'm a student at Chinhoyi University . I'm working on a university project to build a website using the Django framework. I'm currently in the process of developing a website to better connect with our community and raise awareness about our cause

Re: E-comm live project

2024-05-04 Thread Dean Mahori
add me +263786881635 On Tue, Apr 30, 2024 at 3:23 PM Kintu Peter wrote: > Watsap +256789746493 > > > On Monday, March 18, 2024 at 8:26:50 PM UTC+3 1001_prabhjot Singh wrote: > >> so i am working on a full stack e-comm website and this project is really >> very big for me because it's a live

[Cscwg-public] CSCWG April 18, 2024 Final meeting minutes

2024-05-02 Thread Dean Coclin via Cscwg-public
2024-04-18 Final Minutes Attendees: Andrea Holland (VikingCloud), Ben Dewberry (Keyfactor), Brian Winters (IdenTrust), Bruce Morton (Entrust), Christophe Bonjean (GlobalSign), Corey Bonnell (DigiCert), Dean Coclin (DigiCert), Dimitris Zacharopoulos (HARICA), Eva Vansteenberge (GlobalSign

[Cscwg-public] Final minutes of F2F CSCWG Feb 28, 2024

2024-05-02 Thread Dean Coclin via Cscwg-public
(eMudhra), Abhishek Bhat (eMudhra), Naveen Kumar (eMudhra), Yashwanth (eMudhra), Dean Coclin (DigiCert), Thomas Zermeno (SSL.com), Mohit Kumar (GlobalSign), Martijn Katerbarg (Sectigo), Nargis Mannan (Viking Cloud), Marco Schambach (IdenTrust), Tim Hollebeek (DigiCert), Atsushi Inaba (GlobalSign

[Cscwg-public] CSCWG Agenda May 2, 2024

2024-04-30 Thread Dean Coclin via Cscwg-public
6. Discuss F2F Agenda 7. Other business 8. Next meeting - May 16th 9. Adjourn Dean Coclin CSCWG Chair smime.p7s Description: S/MIME cryptographic signature ___ Cscwg-public mailing list Cscwg-public

Re: RFR: 8331087: Move immutable nmethod data from CodeCache [v2]

2024-04-29 Thread Dean Long
On Sun, 28 Apr 2024 23:37:22 GMT, Vladimir Kozlov wrote: >> Move immutable nmethod's data from CodeCache to C heap. It includes >> `dependencies, nul_chk_table, handler_table, scopes_pcs, scopes_data, >> speculations`. It amounts for about 30% (optimized VM) of space in CodeCache. >> >> Use

Re: RFR: 8331087: Move immutable nmethod data from CodeCache

2024-04-29 Thread Dean Long
On Sun, 28 Apr 2024 07:02:40 GMT, Dean Long wrote: >> Move immutable nmethod's data from CodeCache to C heap. It includes >> `dependencies, nul_chk_table, handler_table, scopes_pcs, scopes_data, >> speculations`. It amounts for about 30% (optimized VM) of space in Cod

Re: RFR: 8331087: Move immutable nmethod data from CodeCache

2024-04-28 Thread Dean Long
On Fri, 26 Apr 2024 21:16:03 GMT, Vladimir Kozlov wrote: > Move immutable nmethod's data from CodeCache to C heap. It includes > `dependencies, nul_chk_table, handler_table, scopes_pcs, scopes_data, > speculations, jvmci_data`. It amounts for about 30% (optimized VM) of space > in CodeCache.

Re: RFR: 8331087: Move immutable nmethod data from CodeCache

2024-04-26 Thread Dean Long
On Fri, 26 Apr 2024 21:16:03 GMT, Vladimir Kozlov wrote: > Move immutable nmethod's data from CodeCache to C heap. It includes > `dependencies, nul_chk_table, handler_table, scopes_pcs, scopes_data, > speculations, jvmci_data`. It amounts for about 30% (optimized VM) of space > in CodeCache.

Re: RFR: 8331087: Move immutable nmethod data from CodeCache

2024-04-26 Thread Dean Long
On Fri, 26 Apr 2024 21:16:03 GMT, Vladimir Kozlov wrote: > Move immutable nmethod's data from CodeCache to C heap. It includes > `dependencies, nul_chk_table, handler_table, scopes_pcs, scopes_data, > speculations, jvmci_data`. It amounts for about 30% (optimized VM) of space > in CodeCache.

Re: RFR: 8331087: Move immutable nmethod data from CodeCache

2024-04-26 Thread Dean Long
On Fri, 26 Apr 2024 21:16:03 GMT, Vladimir Kozlov wrote: > Move immutable nmethod's data from CodeCache to C heap. It includes > `dependencies, nul_chk_table, handler_table, scopes_pcs, scopes_data, > speculations, jvmci_data`. It amounts for about 30% (optimized VM) of space > in CodeCache.

Re: RFR: 8331087: Move immutable nmethod data from CodeCache

2024-04-26 Thread Dean Long
On Fri, 26 Apr 2024 21:36:50 GMT, Vladimir Kozlov wrote: >> Move immutable nmethod's data from CodeCache to C heap. It includes >> `dependencies, nul_chk_table, handler_table, scopes_pcs, scopes_data, >> speculations, jvmci_data`. It amounts for about 30% (optimized VM) of space >> in

[ccp4bb] Postdoctoral Research Associate – Biochemistry/Biophysics

2024-04-25 Thread Myles, Dean A A
The Diffraction Group in the Neutron Scattering Division (NSD) at Oak Ridge National Laboratory (ORNL) has an immediate opening for a postdoctoral Biochemist or Biophysicist to join a multi-disciplinary research team in development and application of paramagnetic labeling and proton

[tarlz] testsuite failure on Alpine (edge)

2024-04-24 Thread J Dean
0.25 against lzlib 1.14 and/or 1.15-pre1. dynamic and static builds all fail at the same point: g++ -march=native -O2 -fstack-protector-strong -fstack-clash-protection -ftrivial-auto-var-init=zero -fcf-protection=full -mshstk -Wformat -Werror=format-security -fomit-frame-pointer -flto=auto

Re: RPi 4b Wifi Device

2024-04-23 Thread Thomas D. Dean
card. I can 1. access the network 2. ssh into the RPi 3. build applications on a RPi 4B running NetBSD 10 booted from an SD card. What I can not do is get the RPi 4b to boot NetBSD from a USB-3 flash drive. I can get the RPi 4b to boot RPi OS from the USB-3 flask drive. Tom Dean

Re: [OAUTH-WG] WGLC for Cross-Device Flows BCP

2024-04-23 Thread Saxe, Dean
Thanks Pieter! -dhs -- Dean H. Saxe, CIDPRO<https://idpro.org/cidpro/> (he/him) Senior Security Engineer, AWS Identity Security Team | Amazon Web Services (AWS) E: deans...@amazon.com<mailto:deans...@amazon.com> | M: 206-659-7293 From: Pieter Kasselman Date: Tuesday, April 23, 202

Re: RPi 4b Wifi Device

2024-04-23 Thread Thomas D. Dean
ss flashes in groups of 3 or 4. I think this indicates an unreadable file, I think. When I do the the same actions with an SD card, NetBSD boots. What do you do? Tom Dean

Re: [OAUTH-WG] WGLC for Cross-Device Flows BCP

2024-04-22 Thread Saxe, Dean
Thanks, -dhs -- Dean H. Saxe, CIDPRO<https://idpro.org/cidpro/> (he/him) Senior Security Engineer, AWS Identity Security Team | Amazon Web Services (AWS) E: deans...@amazon.com<mailto:deans...@amazon.com> | M: 206-659-7293 From: OAuth on behalf of Rifaat Shekh-Yusef Date: Monday, A

Re: [PATCH] Replace magic constant 3 with NUM_MERGE_MATCH_KINDS

2024-04-22 Thread Dean Rasheed
w, such changes are material for v18. Agreed. This has been added to the next commitfest, so let's see what others think. Regards, Dean

NetBSD RPi 4b Install/Boot Failure

2024-04-20 Thread Thomas D. Dean
-rwxr-xr-x 1 root wheel 2979264 Apr 1 22:28 start.elf -rwxr-xr-x 1 root wheel 2253088 Jun 5 2023 start4.elf -rwxr-xr-x 1 root wheel808060 Apr 1 22:28 start4cd.elf -rwxr-xr-x 1 root wheel808060 Apr 1 22:28 start_cd.elf Any ideas? Tom Dean

Re: need your advice before new Raspberry Pi purchase

2024-04-20 Thread Thomas D. Dean
3 flash drive. Is the NetBSD installer available in the arm64.img? Is it possible to use the installer on the RPi 4b (booted from the SD card) to install NetBSD 10 on the USB 3 flash drive? Tom Dean

Re: RPi 4b Wifi Device

2024-04-20 Thread Thomas D. Dean
of 3 or 4. I think this indicates an unreadable file, I think. When I do the the same actions with an SD card, NetBSD boots. What do you do? Tom Dean

Re: RPi 4b Wifi Device

2024-04-20 Thread Thomas D. Dean
On 4/20/24 13:16, Michael van Elst wrote: tomd...@wavecable.com ("Thomas D. Dean") writes: # wpa_cli status Selected interface 'bwfm0' 21:58:44.815: bssid=60:38:e0:db:a9:7a freq=0 ssid=tddhome id=0 mode=station pairwise_cipher=TKIP group_cipher=TKIP key_mgmt=WPA-PSK wpa_state=GROUP

Re: RPi 4b Wifi Device

2024-04-20 Thread Thomas D. Dean
gmt=WPA-PSK psk="..." } Tom Dean

Re: RPi 4b Wifi Device

2024-04-20 Thread Thomas D. Dean
On 4/19/24 18:35, Michael van Elst wrote: tomd...@wavecable.com ("Thomas D. Dean") writes: How do I setup wpa_supplicant? That depends on what you want to do. Here are some examples: https://wiki.netbsd.org/tutorials/how_to_use_wpa_supplicant/ I saw that. dhcp is working over

Re: RPi 4b Wifi Device

2024-04-19 Thread Thomas D. Dean
< nothing found> I could not get NetBSD 10 to boot with the 1.37 files. With the 1.35 files, it booted and seems to work, other than WIFI. I created a link to "Raspberry Pi 4 Model B" and the error went away. How do I setup wpa_supplicant? Tom Dean

Re: RPi 4b Wifi Device

2024-04-19 Thread Thomas D. Dean
On 4/18/24 22:00, Michael van Elst wrote: tomd...@wavecable.com ("Thomas D. Dean") writes: What is the wifi device in the RPi 4b? Driver? It's a chip similar to the one in the older RPIs: bwfm0: chip 0x4345 rev 6 bwfm0: Firmware file default:brcmfmac43455-sdio.bin bwfm0

Re: [PATCH] Replace magic constant 3 with NUM_MERGE_MATCH_KINDS

2024-04-19 Thread Dean Rasheed
On Thu, 18 Apr 2024 at 13:00, Aleksander Alekseev wrote: > > Fair point. PFA the alternative version of the patch. > Thanks. Committed. Regards, Dean

pgsql: Use macro NUM_MERGE_MATCH_KINDS instead of '3' in MERGE code.

2024-04-19 Thread Dean Rasheed
Use macro NUM_MERGE_MATCH_KINDS instead of '3' in MERGE code. Code quality improvement for 0294df2f1f84. Aleksander Alekseev, reviewed by Richard Guo. Discussion: https://postgr.es/m/CAJ7c6TMsiaV5urU_Pq6zJ2tXPDwk69-NKVh4AMN5XrRiM7N%2BGA%40mail.gmail.com Branch -- master Details ---

RPi 4b Wifi Device

2024-04-18 Thread Thomas D. Dean
What is the wifi device in the RPi 4b? Driver? Tom Dean

Re: Install Failure RPi 4

2024-04-18 Thread Thomas D. Dean
On 4/18/24 13:56, Thomas D. Dean wrote: I followed: https://mail-index.netbsd.org/port-arm/2023/07/19/msg008301.html and it boots. download https://github.com/pftf/RPi4/releases/download/v1.35/RPi4_UEFI_Firmware_v1.35.zip > mount mmcblk0p1 /mnt > cd /mnt > unzip ~/RPi4_UEFI_Firmware_

Install Failure RPi 4

2024-04-18 Thread Thomas D. Dean
I have an RPi 4b using a USB flash drive and RPi OS. I attempted to install NetBSD 10 on an SD card. On the RPi, I downloaded arm64.img.gz and extracted arm64.img. > ls -l arm64.img rw-rw-r-- 1 tomdean tomdean 1582301184 Apr 3 15:02 arm64.img I used dd to copy the image to an SD card. > dd

[Cscwg-public] Final CSCWG Minutes April 4, 2024

2024-04-18 Thread Dean Coclin via Cscwg-public
business 10. Next meeting - April 18th 11. Adjourn Attendees: Brian Winters (Identrust), Bruce Morton (Entrust), Corey Bonnell (DigiCert), Dean Coclin (DigiCert), Ian McMillan (Microsoft), Inaba Atsushi (GlobalSign), Inigo Barreira (Sectigo), Marco Schambach - (IdenTrust), Mohit Kumar

[Cscwg-public] Final minutes of CSCWG March 21, 2024

2024-04-18 Thread Dean Coclin via Cscwg-public
Minutes for CSCWG Call 21 Mar 2024 Agenda: 1. Roll Call 2. Antitrust reminder 3. Minutes 4. Ballots 5. Membership 6. Other business 7. Next meeting - April 4th 8. Adjourn Attendees: Dean Coclin (DigiCert), Martijn Katerbarg (Sectigo), Brianca

Broken Link

2024-04-18 Thread Thomas D. Dean
On https://wiki.netbsd.org/ports/evbarm/ Select NetBSD/evbarm 10.0 INSTALL notes Produces Error 404. Tom Dean

Re: RFR: 8329433: Reduce nmethod header size [v8]

2024-04-17 Thread Dean Long
On Thu, 18 Apr 2024 00:41:03 GMT, Vladimir Kozlov wrote: >> This is part of changes which try to reduce size of `nmethod` and `codeblob` >> data vs code in CodeCache. >> These changes reduced size of `nmethod` header from 288 to 232 bytes. From >> 304 to 248 in optimized VM: >> >> Statistics

Re: RFR: 8330388: Remove invokedynamic cache index encoding

2024-04-17 Thread Dean Long
On Wed, 17 Apr 2024 15:26:52 GMT, Matias Saavedra Silva wrote: > Before [JDK-8307190](https://bugs.openjdk.org/browse/JDK-8307190), > [JDK-8309673](https://bugs.openjdk.org/browse/JDK-8309673), and > [JDK-8301995](https://bugs.openjdk.org/browse/JDK-8301995), invokedynamic > operands needed

Re: RFR: 8330388: Remove invokedynamic cache index encoding

2024-04-17 Thread Dean Long
On Wed, 17 Apr 2024 15:26:52 GMT, Matias Saavedra Silva wrote: > Before [JDK-8307190](https://bugs.openjdk.org/browse/JDK-8307190), > [JDK-8309673](https://bugs.openjdk.org/browse/JDK-8309673), and > [JDK-8301995](https://bugs.openjdk.org/browse/JDK-8301995), invokedynamic > operands needed

Re: RFR: 8330388: Remove invokedynamic cache index encoding

2024-04-17 Thread Dean Long
On Wed, 17 Apr 2024 15:26:52 GMT, Matias Saavedra Silva wrote: > Before [JDK-8307190](https://bugs.openjdk.org/browse/JDK-8307190), > [JDK-8309673](https://bugs.openjdk.org/browse/JDK-8309673), and > [JDK-8301995](https://bugs.openjdk.org/browse/JDK-8301995), invokedynamic > operands needed

Re: RFR: 8329433: Reduce nmethod header size [v3]

2024-04-17 Thread Dean Long
On Tue, 16 Apr 2024 16:09:21 GMT, Vladimir Kozlov wrote: >> src/hotspot/share/code/nmethod.cpp line 1441: >> >>> 1439: int deps_size = align_up((int)dependencies->size_in_bytes(), >>> oopSize); >>> 1440: int sum_size = oops_size + metadata_size + deps_size; >>> 1441:

Re: RFR: 8327964: Simplify BigInteger.implMultiplyToLen intrinsic [v5]

2024-04-17 Thread Dean Long
On Wed, 17 Apr 2024 12:35:54 GMT, Yudi Zheng wrote: >> Moving array construction within BigInteger.implMultiplyToLen intrinsic >> candidate to its caller simplifies the intrinsic implementation in JIT >> compiler. > > Yudi Zheng has updated the pull request incrementally with one additional >

Re: RFR: 8327964: Simplify BigInteger.implMultiplyToLen intrinsic [v5]

2024-04-17 Thread Dean Long
On Wed, 17 Apr 2024 12:35:54 GMT, Yudi Zheng wrote: >> Moving array construction within BigInteger.implMultiplyToLen intrinsic >> candidate to its caller simplifies the intrinsic implementation in JIT >> compiler. > > Yudi Zheng has updated the pull request incrementally with one additional >

Re: RFR: 8327964: Simplify BigInteger.implMultiplyToLen intrinsic [v5]

2024-04-17 Thread Dean Long
On Wed, 17 Apr 2024 19:45:02 GMT, Dean Long wrote: >> Yudi Zheng has updated the pull request incrementally with one additional >> commit since the last revision: >> >> address comment. > > src/hotspot/cpu/aarch64/stubGenerator_aarch64.cpp line 4702: >

Re: RFR: 8327964: Simplify BigInteger.implMultiplyToLen intrinsic [v5]

2024-04-17 Thread Dean Long
On Wed, 17 Apr 2024 12:35:54 GMT, Yudi Zheng wrote: >> Moving array construction within BigInteger.implMultiplyToLen intrinsic >> candidate to its caller simplifies the intrinsic implementation in JIT >> compiler. > > Yudi Zheng has updated the pull request incrementally with one additional >

Re: RFR: 8327964: Simplify BigInteger.implMultiplyToLen intrinsic [v5]

2024-04-17 Thread Dean Long
On Wed, 17 Apr 2024 12:35:54 GMT, Yudi Zheng wrote: >> Moving array construction within BigInteger.implMultiplyToLen intrinsic >> candidate to its caller simplifies the intrinsic implementation in JIT >> compiler. > > Yudi Zheng has updated the pull request incrementally with one additional >

[Cscwg-public] CSCWG Agenda April 18, 2024

2024-04-16 Thread Dean Coclin via Cscwg-public
References 5. Proposed ballot for Time-stamp Requirements update; CSC-24 6. Other business 7. Next meeting - May 2nd 8. Adjourn Dean Coclin CSCWG Chair smime.p7s Description: S/MIME cryptographic signature

Re: [PATCH] Replace magic constant 3 with NUM_MERGE_MATCH_KINDS

2024-04-16 Thread Dean Rasheed
w. So in the interests of code consistency, I think we should do the same here. Regards, Dean

Re: RFR: 8329433: Reduce nmethod header size [v3]

2024-04-16 Thread Dean Long
On Tue, 16 Apr 2024 03:12:48 GMT, Vladimir Kozlov wrote: >> src/hotspot/share/code/nmethod.hpp line 282: >> >>> 280: _has_flushed_dependencies:1, // Used for maintenance of >>> dependencies (under CodeCache_lock) >>> 281: _is_unlinked:1, // mark during class

Re: RFR: 8329433: Reduce nmethod header size [v3]

2024-04-16 Thread Dean Long
On Tue, 16 Apr 2024 03:06:13 GMT, Vladimir Kozlov wrote: >> src/hotspot/share/code/nmethod.hpp line 205: >> >>> 203: // offsets to find the receiver for non-static native wrapper >>> frames. >>> 204: ByteSize _native_receiver_sp_offset; >>> 205: ByteSize

Re: RFR: 8329433: Reduce nmethod header size [v3]

2024-04-16 Thread Dean Long
On Mon, 15 Apr 2024 03:24:07 GMT, Vladimir Kozlov wrote: >> This is part of changes which try to reduce size of `nmethod` and `codeblob` >> data vs code in CodeCache. >> These changes reduced size of `nmethod` header from 288 to 232 bytes. From >> 304 to 248 in optimized VM: >> >> Statistics

Re: RFR: 8329433: Reduce nmethod header size [v3]

2024-04-16 Thread Dean Long
On Mon, 15 Apr 2024 03:24:07 GMT, Vladimir Kozlov wrote: >> This is part of changes which try to reduce size of `nmethod` and `codeblob` >> data vs code in CodeCache. >> These changes reduced size of `nmethod` header from 288 to 232 bytes. From >> 304 to 248 in optimized VM: >> >> Statistics

Re: RFR: 8329433: Reduce nmethod header size [v3]

2024-04-16 Thread Dean Long
On Mon, 15 Apr 2024 03:24:07 GMT, Vladimir Kozlov wrote: >> This is part of changes which try to reduce size of `nmethod` and `codeblob` >> data vs code in CodeCache. >> These changes reduced size of `nmethod` header from 288 to 232 bytes. From >> 304 to 248 in optimized VM: >> >> Statistics

Re: RFR: 8329433: Reduce nmethod header size [v3]

2024-04-15 Thread Dean Long
On Mon, 15 Apr 2024 03:24:07 GMT, Vladimir Kozlov wrote: >> This is part of changes which try to reduce size of `nmethod` and `codeblob` >> data vs code in CodeCache. >> These changes reduced size of `nmethod` header from 288 to 232 bytes. From >> 304 to 248 in optimized VM: >> >> Statistics

Re: RFR: 8329433: Reduce nmethod header size [v3]

2024-04-15 Thread Dean Long
On Mon, 15 Apr 2024 03:24:07 GMT, Vladimir Kozlov wrote: >> This is part of changes which try to reduce size of `nmethod` and `codeblob` >> data vs code in CodeCache. >> These changes reduced size of `nmethod` header from 288 to 232 bytes. From >> 304 to 248 in optimized VM: >> >> Statistics

Re: RFR: 8329433: Reduce nmethod header size [v3]

2024-04-15 Thread Dean Long
On Mon, 15 Apr 2024 03:24:07 GMT, Vladimir Kozlov wrote: >> This is part of changes which try to reduce size of `nmethod` and `codeblob` >> data vs code in CodeCache. >> These changes reduced size of `nmethod` header from 288 to 232 bytes. From >> 304 to 248 in optimized VM: >> >> Statistics

Re: RFR: 8329433: Reduce nmethod header size [v3]

2024-04-15 Thread Dean Long
On Mon, 15 Apr 2024 03:24:07 GMT, Vladimir Kozlov wrote: >> This is part of changes which try to reduce size of `nmethod` and `codeblob` >> data vs code in CodeCache. >> These changes reduced size of `nmethod` header from 288 to 232 bytes. From >> 304 to 248 in optimized VM: >> >> Statistics

[Kernel-packages] [Bug 2060919] Re: Remote filesystems mounted as CIFS not working after update to Kernel "6.5.0-27-generic #28-Ubuntu" (amd64) or Kernel "6.5.0-1014-raspi #17-Ubuntu" (aarch64).

2024-04-11 Thread Dean Attewell
Same issue on 6.5.0-1017-azure -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux-hwe-6.5 in Ubuntu. https://bugs.launchpad.net/bugs/2060919 Title: Remote filesystems mounted as CIFS not working after update to Kernel

[Bug 2060919] Re: Remote filesystems mounted as CIFS not working after update to Kernel "6.5.0-27-generic #28-Ubuntu" (amd64) or Kernel "6.5.0-1014-raspi #17-Ubuntu" (aarch64).

2024-04-11 Thread Dean Attewell
Same issue on 6.5.0-1017-azure -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2060919 Title: Remote filesystems mounted as CIFS not working after update to Kernel "6.5.0-27-generic #28-Ubuntu"

Stus-List Re: Winch Sealant suggestions

2024-04-10 Thread Dean McNeill via CnC-List
Thanks for the great advice folks… Butyl tape (and nothing else) it is! Dean BarraWind 1980 C 34 Halifax NS > On Apr 10, 2024, at 8:13 PM, Jeffrey A. Laman wrote: > > Butyl is by far the best option. Removal of winch in future will be far > easier. Butyl is an excel

Stus-List Winch Sealant suggestions

2024-04-10 Thread Dean McNeill via CnC-List
thought of putting some 5200 under bases, but I never like using that under something I may need to remove someday! Should I use 4200? Or something else? What says the C brain trust? Thanks, Dean BarraWind 1980 C 34 Halifax NS Please show your appreciation for this list and the Photo Album site

Re: RFR: 8329331: Intrinsify Unsafe::setMemory [v7]

2024-04-08 Thread Dean Long
On Mon, 8 Apr 2024 19:11:19 GMT, Scott Gibbons wrote: >> This code makes an intrinsic stub for `Unsafe::setMemory` for x86_64. See >> [this PR](https://github.com/openjdk/jdk/pull/16760) for discussion around >> this change. >> >> Overall, making this an intrinsic improves overall

Re: RFR: 8329331: Intrinsify Unsafe::setMemory [v6]

2024-04-06 Thread Dean Long
On Sat, 6 Apr 2024 00:13:26 GMT, Scott Gibbons wrote: >> This code makes an intrinsic stub for `Unsafe::setMemory` for x86_64. See >> [this PR](https://github.com/openjdk/jdk/pull/16760) for discussion around >> this change. >> >> Overall, making this an intrinsic improves overall

Re: RFR: 8329331: Intrinsify Unsafe::setMemory [v4]

2024-04-04 Thread Dean Long
On Wed, 3 Apr 2024 15:15:24 GMT, Scott Gibbons wrote: >> This code makes an intrinsic stub for `Unsafe::setMemory` for x86_64. See >> [this PR](https://github.com/openjdk/jdk/pull/16760) for discussion around >> this change. >> >> Overall, making this an intrinsic improves overall

Re: RFR: 8329331: Intrinsify Unsafe::setMemory [v4]

2024-04-04 Thread Dean Long
On Wed, 3 Apr 2024 15:15:24 GMT, Scott Gibbons wrote: >> This code makes an intrinsic stub for `Unsafe::setMemory` for x86_64. See >> [this PR](https://github.com/openjdk/jdk/pull/16760) for discussion around >> this change. >> >> Overall, making this an intrinsic improves overall

AOO Writer - Line Spacing icons

2024-04-03 Thread Dean W
Dear all, On my copy of AOO Writer the icons for 1.0 and 1.5 line spacing seem to be transposed. I have 1.0, 1.5 and 2.0 line spacing in my toolbar, and the gap for 1.5 (on the icon) is smaller than the gap for the 1.0 line spacing (on the icon). Line spacing works as otherwise intended, except

[Cscwg-public] CSCWG Agenda April 4, 2024

2024-04-02 Thread Dean Coclin via Cscwg-public
Wangmo Tenzing (as an individual) 9. Other business 10. Next meeting - April 18th 11. Adjourn Dean Coclin CSCWG Chair smime.p7s Description: S/MIME cryptographic signature ___ Cscwg-public mailing list Cscwg-public@cabforum.org https

Re: RFR: 8329332: Remove CompiledMethod and CodeBlobLayout classes

2024-04-01 Thread Dean Long
On Fri, 29 Mar 2024 19:35:45 GMT, Vladimir Kozlov wrote: > Revert [JDK-8152664](https://bugs.openjdk.org/browse/JDK-8152664) RFE > [changes](https://github.com/openjdk/jdk/commit/b853eb7f5ca24eeeda18acbb14287f706499c365) > which was used for AOT [JEP 295](https://openjdk.org/jeps/295) >

[kwin] [Bug 483229] Sometimes unable to bring background apps to the front while Chrome/Chromium is running

2024-04-01 Thread Dean Hoover
https://bugs.kde.org/show_bug.cgi?id=483229 --- Comment #10 from Dean Hoover --- > by any chance are you using a scale factor below 100%, and is Chrome/Chromium running in native Wayland mode? I am running native Wayland on the laptop, but the scale factor is set to 100% (it was originally

pgsql: Add support for MERGE ... WHEN NOT MATCHED BY SOURCE.

2024-03-30 Thread Dean Rasheed
or BY TARGET is equivalent to writing WHEN NOT MATCHED BY TARGET. Dean Rasheed, reviewed by Alvaro Herrera, Ted Yu and Vik Fearing. Discussion: https://postgr.es/m/CAEZATCWqnKGc57Y_JanUBHQXNKcXd7r=0r4nezuvwp+syrk...@mail.gmail.com Branch -- master Details --- https://git.postgresql.org/pg

XZ Utils Compromised Releases

2024-03-29 Thread Frank Dean
I received a security announcement on the Debian mailing list [1]. It appears versions 5.6.0 of XY Utils and later may be compromised. I also found a discussion on Openwall [2]. [1]: https://lists.debian.org/debian-security-announce/2024/msg00057.html

Re: Adding OLD/NEW support to RETURNING

2024-03-27 Thread Dean Rasheed
d to add a substantial amount of new code to deal with the auto-updatable view case that I had completely overlooked. So on reflection, rather than trying to rush to get this into v17, I think it would be better to leave it to v18. Regards, Dean

Re: Functions to return random numbers in a given range

2024-03-27 Thread Dean Rasheed
On Tue, 26 Mar 2024 at 06:57, Dean Rasheed wrote: > > Based on the reviews so far, I think this is ready for commit, so > unless anyone objects, I will do so in a day or so. > Committed. Thanks for the reviews. Regards, Dean

pgsql: Add functions to generate random numbers in a specified range.

2024-03-27 Thread Dean Rasheed
file. The existing random(), random_normal(), and setseed() functions are moved there too, so that they can all share the same PRNG state, which is kept private to that file. Dean Rasheed, reviewed by Jian He, David Zhang, Aleksander Alekseev, and Tomas Vondra. Discussion: https://postgr.es

[Cscwg-public] Voting Results: Ballot CSC-23: Marking the EV Code Signing Guidelines SUPERCEDED

2024-03-26 Thread Dean Coclin via Cscwg-public
in favor: Microsoft Quorum was met. Therefore, the ballot passes. Dean Coclin CSCWG Chair From: Cscwg-public On Behalf Of Dimitris Zacharopoulos (HARICA) via Cscwg-public Sent: Tuesday, March 19, 2024 1:29 AM To: cscwg-public@cabforum.org Subject: [Cscwg-public] Voting

Re: Catalog domain not-null constraints

2024-03-26 Thread Dean Rasheed
On Tue, 26 Mar 2024 at 07:30, Alvaro Herrera wrote: > > On 2024-Mar-25, Dean Rasheed wrote: > > > Also (not this patch's fault), psql doesn't seem to offer a way to > > display domain constraint names -- something you need to know to drop > > or alter them. Perha

  1   2   3   4   5   6   7   8   9   10   >