[Issue 24576] Now that OMF support has been dropped, the standard library should be called `phobos32` not `phobos32mscoff`

2024-06-01 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=24576 kinke changed: What|Removed |Added CC||ki...@gmx.net --- Comment #1 from kinke --- I'd

Issue with logrotate and mariadb?? After upgrade to Fedora 40

2024-06-01 Thread Michael D. Setzer II via users
. ++ Michael D. Setzer II - Computer Science Instructor (Retired) mailto:mi...@guam.net mailto:msetze...@gmail.com mailto:msetze...@gmx.com Guam - Where America's Day Begins G4L Disk

[Issue 15587] Enable use of D keywords as identifiers when interfacing to C/C++

2024-06-01 Thread d-bugmail--- via Digitalmars-d-bugs
--- Using `pragma(mangle)` is also annoying for type names, because every function using the renamed type needs to use the changed mangling. This is for example necessary for `std::function`, because `function` is a keyword in D. It would be nice if you could change the mangled name of a type once

[Issue 24577] New: Struct with constructor returned from C++ wrong

2024-06-01 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=24577 Issue ID: 24577 Summary: Struct with constructor returned from C++ wrong Product: D Version: D2 Hardware: x86_64 OS: Windows Status: NEW Severity: normal

[Issue 24577] Struct with constructor returned from C++ wrong

2024-06-01 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=24577 Tim changed: What|Removed |Added Keywords||C++ --

[Issue 24576] New: Now that OMF support has been dropped, the standard library should be called `phobo32` not `phobos32mscoff`

2024-06-01 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=24576 Issue ID: 24576 Summary: Now that OMF support has been dropped, the standard library should be called `phobo32` not `phobos32mscoff` Product: D Version: D2

[Issue 24576] Now that OMF support has been dropped, the standard library should be called `phobos32` not `phobos32mscoff`

2024-06-01 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=24576 Nicholas Wilson changed: What|Removed |Added Summary|Now that OMF support has|Now that OMF support has

Re: Socket and spawn()

2024-05-31 Thread Jonathan M Davis via Digitalmars-d-learn
On Friday, May 31, 2024 6:28:27 PM MDT Andy Valencia via Digitalmars-d-learn wrote: > On Friday, 31 May 2024 at 16:59:08 UTC, Jonathan M Davis wrote: > > Speaking as an old kernel engineer for the Sequent multiprocessor > product line, this is all very comfortable to me. I'm very g

Re: Socket and spawn()

2024-05-31 Thread Andy Valencia via Digitalmars-d-learn
. the appropriate mutex has been locked). Thank you; this is the most complete explanation I've found yet for hwo to look at data sharing in D. On the other hand, if you're actively sharing an object across threads, then you cast it to shared and give it to the other thread. But then you have

[Issue 24135] Eponymous template member overloads not shown as call candidates

2024-05-31 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=24135 Dlang Bot changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

Re: Socket and spawn()

2024-05-31 Thread Andy Valencia via Digitalmars-d-learn
On Friday, 31 May 2024 at 19:48:37 UTC, kdevel wrote: Have you taken into consideration that each of the (pre-spawned) threads can call accept()? Your program may also accept in multiple processes on the same socket. [1] Yes, but I am planning on some global behavior--mostly concerning

[Issue 24575] sumtype fails to match lambdas with anonymous arguments

2024-05-31 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=24575 Richard (Rikki) Andrew Cattermole changed: What|Removed |Added CC||alphaglosi...@gmail.com

[Issue 24575] New: sumtype fails to match lambdas with anonymous arguments

2024-05-31 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=24575 Issue ID: 24575 Summary: sumtype fails to match lambdas with anonymous arguments Product: D Version: D2 Hardware: x86_64 OS: Linux Status: NEW

Re: [EXTERNAL] Re: [DISCUSS] Adding experimental vtables and rules around them

2024-05-31 Thread J. D. Jordan
We have already agreed in the past that having experimental features, behind feature flags, in stable releases is a good thing for keeping those features up to date, for getting feedback from end users, and many others. The question here is about how we ensure that end users are aware something

Re: RFR: 8333130: MakeJAR2.sh uses hard-coded JDK version [v2]

2024-05-31 Thread Daniel D . Daugherty
On Fri, 31 May 2024 12:01:14 GMT, Jaikiran Pai wrote: >> Can I please get a review of this test-only change which addresses >> https://bugs.openjdk.org/browse/JDK-8333130? >> >> There are a couple of tests `NativeMethodPrefixApp` and `RetransformApp` >> under `test/jdk/java/lang/instrument/`

Re: [ANNOUNCE] Apache Commons Net 3.11.0

2024-05-31 Thread Gary D. Gregory
Stu, Does the reply line read exactly: '* OK The Microsoft Exchange IMAP4 service is ready. [x]' ? Are the x's really there or is that a placeholder? Are the spaces all plain spaces or tabs? TY, Gary On 2024/05/31 19:11:11 Stuart Maclean wrote: > I have

Re: [pool] Resilience against factory outages (POOL-407)

2024-05-31 Thread Gary D. Gregory
lure=false` This change will eventually make it other README files. TY, Gary On 2024/05/31 20:44:51 "Gary D. Gregory" wrote: > Hello Phil, > > Before you push, run 'mvn' (buy itself), this runs the default goal, which > contains all build checks. > > If see the code c

Re: [pool] Resilience against factory outages (POOL-407)

2024-05-31 Thread Gary D. Gregory
Hello Phil, Before you push, run 'mvn' (buy itself), this runs the default goal, which contains all build checks. If see the code coverage report, regardless of coverage failures, run: mvn clean site -Dcommons.jacoco.haltOnFailure=false I'll update the readme... TY, Gary On 2024/05/31

Re: Socket and spawn()

2024-05-31 Thread kdevel via Digitalmars-d-learn
On Friday, 31 May 2024 at 16:07:23 UTC, Andy Valencia wrote: I'm coding a server which takes TCP connections. I end up in the main thread with .accept() which hands me a Socket. I'd like to hand this off to a spawn()'ed thread to do the actual work. Have you taken into consideration that

[Issue 23487] std.experimental.logger assigning FileLogger to sharedLog no longer works

2024-05-31 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=23487 Forest changed: What|Removed |Added CC||fores...@nom.one --- Comment #2 from Forest ---

[Issue 24261] Cannot define calling convention of a function prototype in a function scope

2024-05-31 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=24261 Nick Treleaven changed: What|Removed |Added CC||n...@geany.org --- Comment #1 from Nick

[jira] [Commented] (CLI-335) Defining Default Properties documentation has errors.

2024-05-31 Thread Gary D. Gregory (Jira)
[ https://issues.apache.org/jira/browse/CLI-335?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17851167#comment-17851167 ] Gary D. Gregory commented on CLI-335: - [~claude]  Thank you for finding this hole in our documentation

Re: Socket and spawn()

2024-05-31 Thread Jonathan M Davis via Digitalmars-d-learn
On Friday, May 31, 2024 10:07:23 AM MDT Andy Valencia via Digitalmars-d-learn wrote: > I'm coding a server which takes TCP connections. I end up in the > main thread with .accept() which hands me a Socket. I'd like to > hand this off to a spawn()'ed thread to do the ac

[Bug 1662552] Re: snaps don't work with NFS home

2024-05-31 Thread Jason D. Kelleher
I purged and marked snapd hold to prevent reinstall. Get rid of it. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1662552 Title: snaps don't work with NFS home To manage notifications about this

Socket and spawn()

2024-05-31 Thread Andy Valencia via Digitalmars-d-learn
I'm coding a server which takes TCP connections. I end up in the main thread with .accept() which hands me a Socket. I'd like to hand this off to a spawn()'ed thread to do the actual work. Aliases to mutable thread-local data not allowed. Is there some standard way to get something

[jira] [Updated] (NET-709) IMAP Memory considerations with large ‘FETCH’ sizes.

2024-05-31 Thread Gary D. Gregory (Jira)
[ https://issues.apache.org/jira/browse/NET-709?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Gary D. Gregory updated NET-709: Fix Version/s: 3.11.1 (was: 3.11.0) > IMAP Memory considerations with la

Integrated: 8332863: Crash in JPEG decoder if we enable MEM_STATS

2024-05-31 Thread Jayathirth D V
On Fri, 24 May 2024 06:48:50 GMT, Jayathirth D V wrote: > In IJG library's jmemmgr.c file we can define MEM_STATS(by default this flag > is not defined and we don't see any issue) to enable printing of memory > statistics log. But if we enable it, we get crash while disposing I

[Issue 23666] Recognize template opApply pattern

2024-05-31 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=23666 --- Comment #4 from Nick Treleaven --- Sorry, yes. This proposal seems workable. --

[Issue 22903] IFTI for immediately-invoked lambda keeps qualifier for pointer/slice argument

2024-05-31 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=22903 timon.g...@gmx.ch changed: What|Removed |Added CC||timon.g...@gmx.ch --- Comment #1 from

Re: [edk2-devel] GitHub PR Code Review process now active

2024-05-30 Thread Michael D Kinney
Hi Michael, Do you know why there would be dependabot commits in PRs not related to dependabot updates? For example: https://github.com/tianocore/edk2/pull/5708/commits Thanks, Mike > -Original Message- > From: Kinney, Michael D > Sent: Thursday, May 30, 2024

Re: Re: [LANG] Support single quotes in DurationFormatUtils methods' formats

2024-05-30 Thread Gary D. Gregory
I'm OK with Sebb's solution [1] Any further thoughts here? Gary [1] https://github.com/apache/commons-lang/pull/1227 On 2024/05/29 13:37:40 Mike Drob wrote: > On Wed, May 29, 2024 at 8:17 AM Gary Gregory wrote: > > > (Sorry for the top post, phone) > > > > A case I can imagine an empty ''

Re: [edk2-devel] GitHub PR Code Review process now active

2024-05-30 Thread Michael D Kinney
Yes. Mike > -Original Message- > From: Kasbekar, Saloni > Sent: Thursday, May 30, 2024 10:39 AM > To: devel@edk2.groups.io; mikub...@linux.microsoft.com; Kinney, Michael D > ; Rebecca Cran ; > kra...@redhat.com; Kubacki, Michael > Subject: RE: [edk2-devel] GitHub P

Re: [TV orNotTV] Re: Gillis Netflix Sitcom Gets Premature Renewal

2024-05-30 Thread M-D November
Moving the action to Vegas definitely hurt the overall story arc. On Wednesday, May 29, 2024 at 1:54:16 PM UTC-4 Tom Wolper wrote: > I thought it was a blessing that they canceled GLOW. The last season > really felt like they ran out of ideas. > > On Wed, May 29, 2024 at 1:03 PM

Re: [edk2-devel] GitHub PR Code Review process now active

2024-05-30 Thread Michael D Kinney
All Maintainer.txt rules are matches and all maintainers/reviewers are combined CODEOWNERS only matches the last rule. I do not think your suggestion works. Mike > -Original Message- > From: kra...@redhat.com > Sent: Thursday, May 30, 2024 1:33 AM > To: Kinney, Mic

[Issue 24574] Scope not inferred on this parameter

2024-05-30 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=24574 --- Comment #2 from zopsi...@use.startmail.com --- Adding const would mitigate that, but still does not infer scope on f: - struct A { void* p; @safe nothrow pure void f() const; } @safe nothrow pure void g(ref const(A)); @safe void

[Issue 24574] Scope not inferred on this parameter

2024-05-30 Thread d-bugmail--- via Digitalmars-d-bugs
||dkor...@live.nl Hardware|x86_64 |All OS|Linux |All --- Comment #1 from Dennis --- I think both calls should fail to compile, because they can escape through self-assignment: ```D struct A { A* p; @safe nothrow pure

[Issue 24574] New: Scope not inferred on this parameter

2024-05-30 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=24574 Issue ID: 24574 Summary: Scope not inferred on this parameter Product: D Version: D2 Hardware: x86_64 OS: Linux Status: NEW Severity: normal Priority

[jira] [Resolved] (CONFIGURATION-846) Unable to load multivalued configurations into Spring using ConfigurationPropertySource

2024-05-30 Thread Gary D. Gregory (Jira)
[ https://issues.apache.org/jira/browse/CONFIGURATION-846?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Gary D. Gregory resolved CONFIGURATION-846. --- Fix Version/s: 2.10.2 Resolution: Fixed > Unable to l

Re: [Intel-wired-lan] [PATCH v8 10/12] pps: generators: Add PPS Generator TIO Driver

2024-05-29 Thread D, Lakshmi Sowjanya
> -Original Message- > From: Andy Shevchenko > Sent: Monday, May 27, 2024 8:04 PM > To: D, Lakshmi Sowjanya > Cc: Andy Shevchenko ; t...@linutronix.de; > jstu...@google.com; giome...@enneenne.com; cor...@lwn.net; linux- > ker...@vger.kernel.org; x...@kernel.org; n

[Issue 9024] Inferring function argument types from other template parameters

2024-05-29 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=9024 basile-z changed: What|Removed |Added See Also||https://issues.dlang.org/sh |

[Issue 10228] Type deduction fails with dependencies between parameter types

2024-05-29 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=10228 basile-z changed: What|Removed |Added See Also||https://issues.dlang.org/sh |

[Issue 24556] Allow IFTI for dotted template parameters used as function type parameter

2024-05-29 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=24556 basile-z changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

Re: [edk2-devel] libspdm Breaking Builds

2024-05-29 Thread Michael D Kinney
Hi Pete, https://github.com/tianocore/edk2/pull/5697 was merged and should resolve your issue. Please let us know if it does not. Mike > -Original Message- > From: Pete Batard > Sent: Wednesday, May 29, 2024 3:01 PM > To: Kinney, Michael D ; devel@edk2.groups.io; > Yao,

[jira] [Commented] (COLLECTIONS-855) Update the EnhancedDoubleHasher to correct the cube component of the hash

2024-05-29 Thread Gary D. Gregory (Jira)
[ https://issues.apache.org/jira/browse/COLLECTIONS-855?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17850490#comment-17850490 ] Gary D. Gregory commented on COLLECTIONS-855: - There is no compatibility to worry about

Re: [edk2-devel] GitHub PR Code Review process now active

2024-05-29 Thread Michael D Kinney
are available to help. We need to focus on a process that works until those automations can be deployed and supported. Mike > -Original Message- > From: Michael Kubacki > Sent: Wednesday, May 29, 2024 12:25 PM > To: devel@edk2.groups.io; Kinney, Michael D ; > Rebecca Cran ; kr

Re: [edk2-devel] libspdm Breaking Builds

2024-05-29 Thread Michael D Kinney
git clone https://github.com/tianocore/edk2 --recursive Best regards, Mike > -Original Message- > From: Kinney, Michael D > Sent: Wednesday, May 29, 2024 11:33 AM > To: Pete Batard ; devel@edk2.groups.io; Yao, Jiewen > ; mikub...@linux.microsoft.com > Cc: Kinney, Mich

Re: [edk2-devel] libspdm Breaking Builds

2024-05-29 Thread Michael D Kinney
> -Original Message- > From: Pete Batard > Sent: Wednesday, May 29, 2024 11:18 AM > To: devel@edk2.groups.io; Yao, Jiewen ; Kinney, Michael > D ; mikub...@linux.microsoft.com > Subject: Re: [edk2-devel] libspdm Breaking Builds > > Hello all, > > On 2024.05.24 03

Re: [edk2-devel] GitHub PR Code Review process now active

2024-05-29 Thread Michael D Kinney
being an assigned reviewer. Mike > -Original Message- > From: Rebecca Cran > Sent: Wednesday, May 29, 2024 11:19 AM > To: devel@edk2.groups.io; Kinney, Michael D ; > kra...@redhat.com; Kubacki, Michael > Subject: Re: [edk2-devel] GitHub PR Code Review process now active

[jira] [Resolved] (LANG-1733) Add null-safe Consumers.accept() and Functions.apply()

2024-05-29 Thread Gary D. Gregory (Jira)
[ https://issues.apache.org/jira/browse/LANG-1733?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Gary D. Gregory resolved LANG-1733. --- Fix Version/s: 3.15.0 Resolution: Fixed > Add null-safe Consumers.acc

[jira] [Updated] (LANG-1733) Add null-safe Consumers.accept() and Functions.apply()

2024-05-29 Thread Gary D. Gregory (Jira)
[ https://issues.apache.org/jira/browse/LANG-1733?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Gary D. Gregory updated LANG-1733: -- Summary: Add null-safe Consumers.accept() and Functions.apply() (was: `null` handling feature

Re: [edk2-devel] GitHub PR Code Review process now active

2024-05-29 Thread Michael D Kinney
to be involved in reviewing newly submitted PRs. Mike > -Original Message- > From: devel@edk2.groups.io On Behalf Of Gerd Hoffmann > Sent: Wednesday, May 29, 2024 9:38 AM > To: devel@edk2.groups.io; Kinney, Michael D > Subject: Re: [edk2-devel] GitHub PR Code Review pro

[TV orNotTV] Re: Gillis Netflix Sitcom Gets Premature Renewal

2024-05-29 Thread M-D November
flag he waved for Dave Chappelle for other >> comics with dicy material. >> > -- You received this message because you are subscribed to the Google Groups "TVorNotTV" group. To unsubscribe from this group and stop receiving emails from it, send an email to tvornot

[TV orNotTV] Re: So long, Morgan Spurlock

2024-05-29 Thread M-D November
group. To unsubscribe from this group and stop receiving emails from it, send an email to tvornottv+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/tvornottv/58e7ea32-82f7-453a-ba8f-3f4a6911ea38n%40googlegroups.com.

Re: [TV orNotTV] Re: TNT’s NBA Turnover

2024-05-29 Thread M-D November
>> >>>> Zaslav and Silberwasser could still match one of these deals, or they >>>> could somehow finagle a tiny fourth package to keep *some* NBA. But >>>> why would Silver allow that to happen? He’s got great deals at the finish >>>> line that

[TV orNotTV] Re: "Sia Prize" over at "Survivor"

2024-05-29 Thread M-D November
oup. To unsubscribe from this group and stop receiving emails from it, send an email to tvornottv+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/tvornottv/9fcd798d-0d50-4730-b547-397411d3dea0n%40googlegroups.com.

Re: [edk2-devel] GitHub PR Code Review process now active

2024-05-29 Thread Michael D Kinney
the process discussion. Best regards, Mike > -Original Message- > From: devel@edk2.groups.io On Behalf Of Gerd Hoffmann > Sent: Tuesday, May 28, 2024 11:39 PM > To: devel@edk2.groups.io; Kinney, Michael D > Subject: Re: [edk2-devel] GitHub PR Code Review process now active >

Re: [edk2-devel] GitHub PR Code Review process now active

2024-05-29 Thread Michael D Kinney
s.io; Kinney, Michael D > Subject: RE: GitHub PR Code Review process now active > > [AMD Official Use Only - AMD Internal Distribution Only] > > Hi Mike, > Wondering if we also plan to apply GitHub PR process on edk2-platforms repo? > Or other repos under tianocore? I fo

[Issue 24573] qualified identifiers confuse IFTI

2024-05-29 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=24573 --- Comment #1 from basile-z --- The error message is > Error: undefined identifier `T` It's probable that IFTI actually works but when the time comes to run the semantics of `m.Tuple!T`, the scope used is wrong. --

[jira] [Commented] (COLLECTIONS-855) Update the EnhancedDoubleHasher to correct the cube component of the hash

2024-05-29 Thread Gary D. Gregory (Jira)
[ https://issues.apache.org/jira/browse/COLLECTIONS-855?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17850338#comment-17850338 ] Gary D. Gregory commented on COLLECTIONS-855: - PRs welcome :) I'd like to go for an M2

Re: Supporting multi-branch for custom SCM plugin

2024-05-29 Thread Berend D.
Thanks - that was the missing bit of magic. On Tue, May 28, 2024 at 4:22 PM 'Jesse Glick' via Jenkins Developers < jenkinsci-dev@googlegroups.com> wrote: > On Tue, May 28, 2024 at 8:45 AM Berend D. wrote: > >> From my understanding, if the SCMFile::content(

[Issue 24573] qualified identifiers confuse IFTI

2024-05-29 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=24573 basile-z changed: What|Removed |Added Summary|qualified identifiers |qualified identifiers |conduse

[Issue 24573] New: qualified identifiers conduse IFTI

2024-05-29 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=24573 Issue ID: 24573 Summary: qualified identifiers conduse IFTI Product: D Version: D2 Hardware: All OS: All Status: NEW Keywords: rejects-valid Severity

[Issue 20491] extern(C) is not inferred for lambda arguments

2024-05-29 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=20491 Bolpat changed: What|Removed |Added CC||qs.il.paperi...@gmail.com --- Comment #2 from

[Issue 23666] Recognize template opApply pattern

2024-05-29 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=23666 --- Comment #3 from Bolpat --- (In reply to Nick Treleaven from comment #2) > You can use `auto opApply` to infer attributes instead of a template. ```d struct S { auto opApply(int delegate(ref int) callback) { int x; ret

Re: need help to use C++ callback from garnet

2024-05-29 Thread evilrat via Digitalmars-d-learn
On Wednesday, 29 May 2024 at 07:47:01 UTC, Dakota wrote: I try use https://github.com/microsoft/garnet/blob/main/libs/storage/Tsavorite/cc/src/device/native_device_wrapper.cc from D Not sure how to make this work with D: ```c++ EXPORTED_SYMBOL FASTER::core::Status NativeDevice_ReadAsync

[clang-tools-extra] [clangd] Add config option to allow detection of unused system headers (PR #87208)

2024-05-29 Thread Vadim D. via cfe-commits
vvd170501 wrote: @HighCommander4, overall it looks good, but I'd replace "enables include-cleaner checks" with "enables unused include check", because the option doesn't affect missing include check. https://github.com/llvm/llvm-project/pull/87208

need help to use C++ callback from garnet

2024-05-29 Thread Dakota via Digitalmars-d-learn
I try use https://github.com/microsoft/garnet/blob/main/libs/storage/Tsavorite/cc/src/device/native_device_wrapper.cc from D Not sure how to make this work with D: ```c++ EXPORTED_SYMBOL FASTER::core::Status NativeDevice_ReadAsync(NativeDevice* device, uint64_t source, void* dest, uint32_t

Re: Get milliseconds from time and construct time based on milliseconds

2024-05-29 Thread bauss via Digitalmars-d-learn
(unixTimeToStdTime(0))` to get a SysTime that is at the unix epoch. Also figured out the second question based on your result. Simply doing: ``` SysTime(DateTime(1970, 1, 1), UTC()) + dur!"msecs"(milliseconds) ``` Seems to work. Note there is an `msecs` function: ```d SysTime(unixTimeT

[Issue 24468] stdThreadLocalLog does not print `log` and `trace` logs

2024-05-28 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=24468 --- Comment #4 from Forest --- Also, is `(cast()sharedLog).logLevel = LogLevel.all` thread-safe? If so, how is the user supposed to know that? If not, where is the thread-safe equivalent? --

[RBW] Re: FS 48 Sam Hillborne $2100 OBO plus shipping

2024-05-28 Thread Jonathan D.
Bump and dropped to $2100. Please reach out if you have any questions. On Sunday, May 19, 2024 at 11:15:29 AM UTC-7 Jonathan D. wrote: > Bump and dropped to $2400 > > On Wednesday, May 15, 2024 at 10:14:52 AM UTC-7 Jonathan D. wrote: > >> BUMP with price reduction and a

[Issue 24570] printing a range of ranges consumes sub-ranges

2024-05-28 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=24570 --- Comment #4 from Steven Schveighoffer --- (In reply to Salih Dincer from comment #2) > If you do the following instead of `auto save() => return this;`, the > problem is solved: > > ``` > struct R > { > wchar* ptr; > size_t len; > >

Re: Get milliseconds from time and construct time based on milliseconds

2024-05-28 Thread Steven Schveighoffer via Digitalmars-d-learn
figured out the second question based on your result. Simply doing: ``` SysTime(DateTime(1970, 1, 1), UTC()) + dur!"msecs"(milliseconds) ``` Seems to work. Note there is an `msecs` function: ```d SysTime(unixTimeToStdTime(0)) + milliseconds.msecs; ``` https://dlang.

[Issue 24468] stdThreadLocalLog does not print `log` and `trace` logs

2024-05-28 Thread d-bugmail--- via Digitalmars-d-bugs
of it (and nearly giving up on D because this is far from the first Phobos usability problem to bite me) I see that I could work around it in my own programs by using @trusted code. However, I'm writing a library, and I really don't want to require that its users resort to library-specific functions or @trusted

[Boost-users] Fwd: [beast] Trying to Integrate Chunked Encoding into server-sync Example

2024-05-28 Thread Max D via Boost-users
Hi everyone, I'm trying to integrate the manual chunked encoding example [0] into the sync-server example [1] and have difficulties understanding a compiler error. I thought I might find some help in this mailing list. Here's my diff to the original example: @@ -151,6 +151,22 @@ handle_request(

Bug#1072098: systemd 252.26-1~deb12u1 flagged for acceptance

2024-05-28 Thread Adam D Barratt
package release.debian.org tags 1072098 = bookworm pending thanks Hi, The upload referenced by this bug report has been flagged for acceptance into the proposed-updates queue for Debian bookworm. Thanks for your contribution! Upload details == Package: systemd Version:

Bug#1071574: netcfg 1.187+deb12u1 flagged for acceptance

2024-05-28 Thread Adam D Barratt
package release.debian.org tags 1071574 = bookworm pending thanks Hi, The upload referenced by this bug report has been flagged for acceptance into the proposed-updates queue for Debian bookworm. Thanks for your contribution! Upload details == Package: netcfg Version:

Bug#1071574: netcfg 1.187+deb12u1 flagged for acceptance

2024-05-28 Thread Adam D Barratt
package release.debian.org tags 1071574 = bookworm pending thanks Hi, The upload referenced by this bug report has been flagged for acceptance into the proposed-updates queue for Debian bookworm. Thanks for your contribution! Upload details == Package: netcfg Version:

Bug#1072098: systemd 252.26-1~deb12u1 flagged for acceptance

2024-05-28 Thread Adam D Barratt
package release.debian.org tags 1072098 = bookworm pending thanks Hi, The upload referenced by this bug report has been flagged for acceptance into the proposed-updates queue for Debian bookworm. Thanks for your contribution! Upload details == Package: systemd Version:

[jira] [Resolved] (VFS-853) Due to double weak references the file listener are not executed

2024-05-28 Thread Gary D. Gregory (Jira)
[ https://issues.apache.org/jira/browse/VFS-853?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Gary D. Gregory resolved VFS-853. - Resolution: Fixed PR merged. TY [~b.eckenfels]! > Due to double weak references the file liste

Re: North Korean Hackers Developing Malware in Dlang Programming Language

2024-05-28 Thread Vladimir Marchevsky via Digitalmars-d-announce
On Monday, 27 May 2024 at 17:08:55 UTC, Ferhat Kurtulmuş wrote: I asked chatgpt if it wrote this paragraph, and it said yes. So?.. If you believe what ChatGPT "says" then generated article is perfectly fine.

[edk2-devel] GitHub PR Code Review process now active

2024-05-28 Thread Michael D Kinney
Hello, The GitHub PR code review process is now active. Please use the new PR based code review process for all new submissions starting today. * The Wiki has been updated with the process changes. https://github.com/tianocore/tianocore.github.io/wiki/EDK-II-Development-Process Big

Re: Get milliseconds from time and construct time based on milliseconds

2024-05-28 Thread bauss via Digitalmars-d-learn
On Tuesday, 28 May 2024 at 18:29:17 UTC, Ferhat Kurtulmuş wrote: On Tuesday, 28 May 2024 at 17:37:42 UTC, bauss wrote: I have two questions that I can't seem to find a solution to after looking at std.datetime. First question is how do I get the current time but in milliseconds? Second is

Re: Get milliseconds from time and construct time based on milliseconds

2024-05-28 Thread Ferhat Kurtulmuş via Digitalmars-d-learn
On Tuesday, 28 May 2024 at 17:37:42 UTC, bauss wrote: I have two questions that I can't seem to find a solution to after looking at std.datetime. First question is how do I get the current time but in milliseconds? Second is how do I construct a time ex. systime or datetime based on

[jira] [Resolved] (CLI-329) Support "Deprecated" CLI Options

2024-05-28 Thread Gary D. Gregory (Jira)
[ https://issues.apache.org/jira/browse/CLI-329?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Gary D. Gregory resolved CLI-329. - Resolution: Fixed > Support "Deprecated"

Get milliseconds from time and construct time based on milliseconds

2024-05-28 Thread bauss via Digitalmars-d-learn
I have two questions that I can't seem to find a solution to after looking at std.datetime. First question is how do I get the current time but in milliseconds? Second is how do I construct a time ex. systime or datetime based on milliseconds? Thanks

Re: [edk2-devel] PR Process Wiki Updates

2024-05-28 Thread Michael D Kinney
Hi Michael, Reviewed-by: Michael D Kinney Mike > -Original Message- > From: Kinney, Michael D > Sent: Thursday, May 23, 2024 1:55 PM > To: Michael Kubacki ; devel@edk2.groups.io; > r...@edk2.groups.io > Cc: quic_llind...@quicinc.com; af...@apple.com; Kinney, Michael

Re: Planning for 12.6/11.10

2024-05-28 Thread Adam D. Barratt
On Mon, 2024-05-27 at 13:07 +0100, Jonathan Wiltshire wrote: > The final bullseye point release 11.10 (and therefore also 12.6 for > versioning) should be soon after 10th June, when security team > support > will end. > > Please indicate availability for: > >   Saturday 15th June >   Saturday

Re: Planning for 12.6/11.10

2024-05-28 Thread Adam D. Barratt
On Mon, 2024-05-27 at 13:07 +0100, Jonathan Wiltshire wrote: > The final bullseye point release 11.10 (and therefore also 12.6 for > versioning) should be soon after 10th June, when security team > support > will end. > > Please indicate availability for: > >   Saturday 15th June >   Saturday

Re: Planning for 12.6/11.10

2024-05-28 Thread Adam D. Barratt
On Mon, 2024-05-27 at 13:07 +0100, Jonathan Wiltshire wrote: > The final bullseye point release 11.10 (and therefore also 12.6 for > versioning) should be soon after 10th June, when security team > support > will end. > > Please indicate availability for: > >   Saturday 15th June >   Saturday

[Issue 7205] Function attribute inference fails in case of mutual dependencies

2024-05-28 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=7205 Bolpat changed: What|Removed |Added CC||qs.il.paperi...@gmail.com --

[jira] [Commented] (CLI-334) Fix Javadoc pathing

2024-05-28 Thread Gary D. Gregory (Jira)
[ https://issues.apache.org/jira/browse/CLI-334?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17850086#comment-17850086 ] Gary D. Gregory commented on CLI-334: - PR merged. TY [~epugh]. > Fix Javadoc path

[jira] [Resolved] (CLI-334) Fix Javadoc pathing

2024-05-28 Thread Gary D. Gregory (Jira)
[ https://issues.apache.org/jira/browse/CLI-334?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Gary D. Gregory resolved CLI-334. - Fix Version/s: 1.8.1 Resolution: Fixed > Fix Javadoc path

[jira] [Updated] (CLI-334) Fix Javadoc pathing

2024-05-28 Thread Gary D. Gregory (Jira)
[ https://issues.apache.org/jira/browse/CLI-334?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Gary D. Gregory updated CLI-334: Summary: Fix Javadoc pathing (was: Some bad javadoc links) > Fix Javadoc path

Re: cpu vmx migration issue

2024-05-28 Thread d tbsky
Hi: Jiri Denemark > Oh, are you saying that a domain with such active XML cannot be migrated > and you see these three features reported as missing? Could you please > provide debug logs from virtqemud (or libvirtd if you're running > monolithic daemon) from both sides of migration covering the

Re: Hide console on Windows with app running SDL2

2024-05-28 Thread bauss via Digitalmars-d-learn
On Tuesday, 28 May 2024 at 12:45:39 UTC, Steven Schveighoffer wrote: On Tuesday, 28 May 2024 at 12:35:42 UTC, bauss wrote: Running into a couple of problems trying to hide the console that opens when running an app that uses sdl2. First of all I am trying to compile with this using dub: ```

Re: Hide console on Windows with app running SDL2

2024-05-28 Thread Steven Schveighoffer via Digitalmars-d-learn
On Tuesday, 28 May 2024 at 12:35:42 UTC, bauss wrote: Running into a couple of problems trying to hide the console that opens when running an app that uses sdl2. First of all I am trying to compile with this using dub: ``` "lflags": ["/SUBSYSTEM:windows"] ``` However that gives me the

Supporting multi-branch for custom SCM plugin

2024-05-28 Thread Berend D.
s" group. To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-dev+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-dev/CAJBx0ENQSALNPT1Vu%2BR-1bOjxVMufwsnBDPDRe9ZFSsvj-Y-Zw%40mail.gmail.com.

[Issue 24565] out contract variable is implicitly const

2024-05-28 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=24565 Dlang Bot changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

ATTENTION DConf Submitters

2024-05-28 Thread Mike Parker via Digitalmars-d-announce
I have just finished emailing all DConf submitters news on the status of their submissions. If you do not see my email, please check your spam folder. If you still can't find one, please email me.

[Issue 24572] New: [REG 2.108.0] Faulty template instantiation with lambda expressions

2024-05-28 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=24572 Issue ID: 24572 Summary: [REG 2.108.0] Faulty template instantiation with lambda expressions Product: D Version: D2 Hardware: All OS: All Status: NEW

<    1   2   3   4   5   6   7   8   9   10   >