Re: [PATCH v2 07/10] ppc/pnv: Add a PSI bridge model for Power11

2024-04-26 Thread Aditya Gupta
On Fri, Apr 26, 2024 at 04:33:23PM +0200, Cédric Le Goater wrote: > On 4/26/24 13:00, Aditya Gupta wrote: > > Power11 core is same as Power10, reuse PNV10_PSI initialisation, by > > declaring 'PNV11_PSI' as child class of 'PNV10_PSI' > > > > Cc: Cédric Le Goater >

Re: [PATCH v2 06/10] ppc/pnv: Add OCC for Power11

2024-04-26 Thread Aditya Gupta
On Fri, Apr 26, 2024 at 04:33:13PM +0200, Cédric Le Goater wrote: > On 4/26/24 13:00, Aditya Gupta wrote: > > Power11 core is same as Power10, reuse PNV10_OCC initialisation, > > by declaring `PNV11_OCC` as child class of `PNV10_OCC` > > Reviewed-by: Cédric Le Goater Than

Re: [PATCH v2 05/10] ppc/pnv: Add a LPC controller for POWER11

2024-04-26 Thread Aditya Gupta
On Fri, Apr 26, 2024 at 04:32:52PM +0200, Cédric Le Goater wrote: > On 4/26/24 13:00, Aditya Gupta wrote: > > Power11 core is same as Power10 core, declare PNV11_LPC as a child > > class of PNV10_LPC, so it goes through same class init > > > > Cc: Cédric Le Goater >

Re: [PATCH v2 04/10] ppc/pnv: Add HOMER for POWER11

2024-04-26 Thread Aditya Gupta
On Fri, Apr 26, 2024 at 04:32:37PM +0200, Cédric Le Goater wrote: > On 4/26/24 13:00, Aditya Gupta wrote: > > Power11 core is same as Power10, declare PNV11_HOMER as a child > > class of PNV10_HOMER, so it goes through same class init > > > > Cc: Cédric Le Goater >

Re: [PATCH v2 03/10] ppc/pnv: Add a Power11 Pnv11Chip, and a Power11 Machine

2024-04-26 Thread Aditya Gupta
PE(power10, "power10_v2.0"), > > +{ > > +.parent = TYPE_PNV_CORE, > > +.name = PNV_CORE_TYPE_NAME("power10_v2.0"), > > +.class_init = pnv_core_power10_class_init, > > +.class_base_init = pnv_core_power10_class_init, >

Re: [PATCH v2 02/10] ppc/pnv: Introduce 'PnvChipClass::chip_type'

2024-04-26 Thread Aditya Gupta
ggested one possible way in patch #3, to replicate the *_dt_populate and quad_realize functions for Power11 also. Another way to do this was depending on the type string in qemu object's class type name, or object_cast_cache, but I decided not to go with string comparison or depending on internal strings. Will use your suggestion in patch #3. Thanks, Aditya Gupta > > Thanks, > > C. > >

Re: [PATCH v2 01/10] ppc/pseries: Add Power11 cpu type

2024-04-26 Thread Aditya Gupta
I bus. I can see that 'chipTOD' was added in commit 9a69950feb098. I2C mentions yet to merge, is it merged yet ? I will check whether this needs updating, but might do it in a separate patch than this series. Thanks, - Aditya Gupta > > > + * Interrupt Controller, XICS (POWER8)

Re: [PATCH v2 01/10] ppc/pseries: Add Power11 cpu type

2024-04-26 Thread Aditya Gupta
Hello Cédric, Thanks for your reviews. On Fri, Apr 26, 2024 at 04:27:04PM +0200, Cédric Le Goater wrote: > Hello Aditya > > On 4/26/24 13:00, Aditya Gupta wrote: > > Add base support for "--cpu power11" in QEMU. > > > > Power11 core is same as P

[PATCH v2 08/10] ppc/pnv: Add SBE model for Power11

2024-04-26 Thread Aditya Gupta
Power11 core is same as Power10, reuse PNV10_SBER initialisation, by declaring PNV11_PSI as child class of PNV10_PSI Cc: Cédric Le Goater Cc: Frédéric Barrat Cc: Mahesh J Salgaonkar Cc: Madhavan Srinivasan Cc: Nicholas Piggin Signed-off-by: Aditya Gupta --- hw/ppc/pnv_sbe.c | 15

[PATCH v2 07/10] ppc/pnv: Add a PSI bridge model for Power11

2024-04-26 Thread Aditya Gupta
Power11 core is same as Power10, reuse PNV10_PSI initialisation, by declaring 'PNV11_PSI' as child class of 'PNV10_PSI' Cc: Cédric Le Goater Cc: Frédéric Barrat Cc: Mahesh J Salgaonkar Cc: Madhavan Srinivasan Cc: Nicholas Piggin Signed-off-by: Aditya Gupta --- hw/ppc/pnv_psi.c | 24

[PATCH v2 05/10] ppc/pnv: Add a LPC controller for POWER11

2024-04-26 Thread Aditya Gupta
Power11 core is same as Power10 core, declare PNV11_LPC as a child class of PNV10_LPC, so it goes through same class init Cc: Cédric Le Goater Cc: Frédéric Barrat Cc: Mahesh J Salgaonkar Cc: Madhavan Srinivasan Cc: Nicholas Piggin Signed-off-by: Aditya Gupta --- hw/ppc/pnv_lpc.c

[PATCH v2 00/10] Power11 support for QEMU

2024-04-26 Thread Aditya Gupta
+ update skiboot.lid Aditya Gupta (10): ppc/pseries: Add Power11 cpu type ppc/pnv: Introduce 'PnvChipClass::chip_type' ppc/pnv: Add a Power11 Pnv11Chip, and a Power11 Machine ppc/pnv: Add HOMER for POWER11 ppc/pnv: Add a LPC controller for POWER11 ppc/pnv: Add OCC for Power11 ppc/pnv

[PATCH v2 04/10] ppc/pnv: Add HOMER for POWER11

2024-04-26 Thread Aditya Gupta
Power11 core is same as Power10, declare PNV11_HOMER as a child class of PNV10_HOMER, so it goes through same class init Cc: Cédric Le Goater Cc: Frédéric Barrat Cc: Mahesh J Salgaonkar Cc: Madhavan Srinivasan Cc: Nicholas Piggin Signed-off-by: Aditya Gupta --- hw/ppc/pnv_homer.c

[PATCH v2 01/10] ppc/pseries: Add Power11 cpu type

2024-04-26 Thread Aditya Gupta
Signed-off-by: Aditya Gupta --- docs/system/ppc/pseries.rst | 6 +-- hw/ppc/spapr_cpu_core.c | 1 + target/ppc/compat.c | 7 +++ target/ppc/cpu-models.c | 2 + target/ppc/cpu-models.h | 2 + target/ppc/cpu_init.c | 99 + 6 files ch

[PATCH v2 03/10] ppc/pnv: Add a Power11 Pnv11Chip, and a Power11 Machine

2024-04-26 Thread Aditya Gupta
: Nicholas Piggin Signed-off-by: Aditya Gupta --- docs/system/ppc/powernv.rst | 9 ++-- hw/ppc/pnv.c| 98 +++-- hw/ppc/pnv_core.c | 16 +- include/hw/ppc/pnv.h| 5 ++ include/hw/ppc/pnv_chip.h | 10 5 files changed, 130

[PATCH v2 06/10] ppc/pnv: Add OCC for Power11

2024-04-26 Thread Aditya Gupta
Power11 core is same as Power10, reuse PNV10_OCC initialisation, by declaring `PNV11_OCC` as child class of `PNV10_OCC` Cc: Cédric Le Goater Cc: Frédéric Barrat Cc: Mahesh J Salgaonkar Cc: Madhavan Srinivasan Cc: Nicholas Piggin Signed-off-by: Aditya Gupta --- hw/ppc/pnv_occ.c | 14

[PATCH v2 09/10] ppc: Make Power11 as default cpu type for 'pseries' and 'powernv'

2024-04-26 Thread Aditya Gupta
Srinivasan Cc: Nicholas Piggin Signed-off-by: Aditya Gupta --- hw/ppc/pnv.c | 4 ++-- hw/ppc/spapr.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/hw/ppc/pnv.c b/hw/ppc/pnv.c index 06e272f3bdd3..0c5a6bc424af 100644 --- a/hw/ppc/pnv.c +++ b/hw/ppc/pnv.c @@ -2531,8 +2531,6

[PATCH v2 02/10] ppc/pnv: Introduce 'PnvChipClass::chip_type'

2024-04-26 Thread Aditya Gupta
: Madhavan Srinivasan Cc: Nicholas Piggin Signed-off-by: Aditya Gupta --- hw/ppc/pnv.c | 5 + include/hw/ppc/pnv_chip.h | 10 ++ 2 files changed, 15 insertions(+) diff --git a/hw/ppc/pnv.c b/hw/ppc/pnv.c index 6e3a5ccdec76..74e7908e5ffb 100644 --- a/hw/ppc/pnv.c +++ b/hw

[NTG-context] Re: The graph is not visible.

2024-04-26 Thread Aditya Mahajan
On Fri, 26 Apr 2024, Taco Hoekwater wrote: > > > > On 25 Apr 2024, at 23:12, Fabrice Couvreur > > wrote: > > > > Hi, > > Here is the code that interferes with the graph from the last chapter but > > why ? > > Because of this “path b”: > > > path circle, p, q, b; > >

Re: Lock Layout

2024-04-24 Thread Aditya Toshniwal
om the first screenshot? > -- Thanks, Aditya Toshniwal pgAdmin Hacker | Sr. Software Architect | *enterprisedb.com* <https://www.enterprisedb.com/> "Don't Complain about Heat, Plant a TREE"

Re: Support for postgresql/pgAdmin

2024-04-24 Thread Aditya Toshniwal
pted by PRSP in this regard and the > recipient should carry out such virus and other checks, as it considers > appropriate and on its own responsibility and risk. > -- Thanks, Aditya Toshniwal pgAdmin Hacker | Sr. Software Architect | *enterprisedb.com* <https://www.enterprisedb.com/> "Don't Complain about Heat, Plant a TREE"

[webkit-changes] [WebKit/WebKit] e1e849: REGRESSION (277389@main): [iOS] AutoFill not offer...

2024-04-24 Thread Aditya Keerthi
Branch: refs/heads/main Home: https://github.com/WebKit/WebKit Commit: e1e849f259d0a32e603e644d6fc6b6ef8774ed22 https://github.com/WebKit/WebKit/commit/e1e849f259d0a32e603e644d6fc6b6ef8774ed22 Author: Aditya Keerthi Date: 2024-04-24 (Wed, 24 Apr 2024) Changed paths: M

[lttng-dev] LTTng UST Benchmarks

2024-04-24 Thread Aditya Kurdunkar via lttng-dev
ry which has no documentation on how to run it, apart from one commit message on how to run the benchmark script. Any help is really appreciated. Thank you. Regards, Aditya ___ lttng-dev mailing list lttng-dev@lists.lttng.org https://lists.lttng.org/cgi

[Crash-utility] Re: crash maintainers update

2024-04-24 Thread Aditya Gupta
gave. I had recently started contributing to open-source, and crash-utility was one of the first I started contributing to. You have been an amazing maintainer, my interactions as a open-source contributor started very nicely due to maintainers like you. Thanks again, - Aditya Gupta

Re: Query regarding UPSERT Mode in Flink

2024-04-24 Thread Aditya Narayan Gupta
Hi Péter, Thanks a lot for explaining and sharing the reference thread, I will follow it. Regards, Aditya On Mon, Apr 22, 2024 at 8:39 PM Péter Váry wrote: > Very high change rate means that it is most probably worth it to rewrite > the data files from time to time. > The high ch

Re: pgAdmin 4 v8.5 Released

2024-04-23 Thread Aditya Toshniwal
>>>- >>> >>>Fixed an issue where Triggers, Rules, and Indexes were absent from >>>the Schema Diff when comparing views. >>>- >>> >>>Fixed an issue where taking a backup of a shared server was using >>>the serv

Re: pga_schedule_jscmonthdays_size error

2024-04-22 Thread Aditya Toshniwal
s electronic message is strictly prohibited and may be unlawful. If > received in error, please do not disclose the contents to anyone, but > notify the sender by return email and delete this email (and any > attachments) from your system.* > > *Thank you.* > -- Thanks, Aditya Toshniwa

[PATCH v4] Drivers: hv: Cosmetic changes for hv.c and balloon.c

2024-04-22 Thread Aditya Nagesh
Fix issues reported by checkpatch.pl script in hv.c and balloon.c - Remove unnecessary parentheses - Remove extra newlines - Remove extra spaces - Add spaces between comparison operators - Remove comparison with NULL in if statements No functional changes intended Signed-off-by: Aditya

Re: Getting 415 Unsupported Media Type error while recording Postman request by Jmeter

2024-04-22 Thread Aditya Singh
Try with Content-Type value as “application/xml“ or “application/json” depending upon your response type. Adi On Tue, 23 Apr 2024 at 6:50 AM, Nuwan Mudalige wrote: > multipart/form-data; boundary=bzfW > > > > On Mon, Apr 22, 2024 at 8:48 PM Aditya Singh >

Re: Getting 415 Unsupported Media Type error while recording Postman request by Jmeter

2024-04-22 Thread Aditya Singh
What is the content-type header value? Adi On Tue, 23 Apr 2024 at 5:41 AM, Nuwan Mudalige wrote: > Yes, Adi. Tried that but still the same result in Jmeter. > > On Mon, Apr 22, 2024 at 8:01 PM Aditya Singh > wrote: > > > Hi, > > Try checking the header th

Re: Getting 415 Unsupported Media Type error while recording Postman request by Jmeter

2024-04-22 Thread Aditya Singh
Hi, Try checking the header that’s being passed in JMeter. Is it similar to what you have in Postman?If not, make it similar and give it a try. Regards Adi On Tue, 23 Apr 2024 at 4:21 AM, Nuwan Mudalige wrote: > Hi, > > I have a file upload API call which is working fine on Postman. > > While

Re: Query regarding UPSERT Mode in Flink

2024-04-22 Thread Aditya Narayan Gupta
rocedure run at higher frequency vs having run compaction? or are there any other suggestions? Regards, Aditya On Mon, Apr 22, 2024 at 2:35 PM Péter Váry wrote: > Hi Aditya, > > See my answers below: > > Aditya Narayan Gupta ezt írta (időpont: > 2024. ápr. 20., Szo, 11:05): >

Re: Regarding feature #6841

2024-04-22 Thread Aditya Toshniwal
Hi Dave, On Fri, Apr 19, 2024 at 7:15 PM Aditya Toshniwal < aditya.toshni...@enterprisedb.com> wrote: > Hi Dave, > > On Fri, Apr 19, 2024 at 7:05 PM Dave Page wrote: > >> Hi >> >> On Fri, 19 Apr 2024 at 14:32, Aditya Toshniwal < >> aditya.tosh

Re: Query regarding UPSERT Mode in Flink

2024-04-20 Thread Aditya Narayan Gupta
is interface in spark or flink? Regards, Aditya On Thu, Apr 18, 2024 at 9:32 PM Péter Váry wrote: > Hi Aditya, > > The definition of UPSERT is that we have 2 types of messages: > - DELETE - we need to remove the old record with the given id. > - UPSERT - we need to remove the old

[Bug 2062552] Re: Ubuntu 24.04 LTS Cloud Image ova error during deployment

2024-04-19 Thread Aditya Irawan
1. I was testing this on VMware ESXi, 7.0.3, 20842708 (that is ESXi 7 Update 3i). 3. Since you mentioned this, I did further investigation. I had deployed Ubuntu 22.04 (Jammy Jellyfish) [20230302] successfully before, and you're right, its ovf file contained the exact same serial port

Re: Regarding feature #6841

2024-04-19 Thread Aditya Toshniwal
Hi Dave, On Fri, Apr 19, 2024 at 7:05 PM Dave Page wrote: > Hi > > On Fri, 19 Apr 2024 at 14:32, Aditya Toshniwal < > aditya.toshni...@enterprisedb.com> wrote: > >> Hi Dave, >> >> On Fri, Apr 19, 2024 at 6:22 PM Dave Page wrote: >> >>> Hi

Re: Regarding feature #6841

2024-04-19 Thread Aditya Toshniwal
Hi Dave, On Fri, Apr 19, 2024 at 6:22 PM Dave Page wrote: > Hi > > On Fri, 19 Apr 2024 at 11:56, Aditya Toshniwal < > aditya.toshni...@enterprisedb.com> wrote: > >> >>> Even if you put the cursor on the "SELECT"? If so, that would imply the

Re: Regarding feature #6841

2024-04-19 Thread Aditya Toshniwal
Hi Dave, On Fri, Apr 19, 2024 at 4:10 PM Dave Page wrote: > > > On Fri, 19 Apr 2024 at 05:15, Aditya Toshniwal < > aditya.toshni...@enterprisedb.com> wrote: > >> Hi Dave, >> >> On Thu, Apr 18, 2024 at 8:07 PM Dave Page wrote: >> >>&g

Re: Request Support with getting Postgresql 4.8 to run.

2024-04-18 Thread Aditya Toshniwal
kw) > File "C:\Users\jchaa\AppData\Local\Programs\pgAdmin > 4\python\lib\site-packages\sqlalchemy\sql\schema.py", line 485, in _new > with util.safe_reraise(): > File "C:\Users\jchaa\AppData\Local\Programs\pgAdmin > 4\python\lib\site-packages\sqlalchemy\util\lang

Re: Regarding feature #6841

2024-04-18 Thread Aditya Toshniwal
micolons in > PostgreSQL, I am resistant to the idea of supporting them without for > specific features. > There is a requirement by many users to execute a query instead of the current execute script which essentially executes all the code in the editor if you don't have selection. Th

Re: Regarding feature #6841

2024-04-18 Thread Aditya Toshniwal
f these changes look okay >>>> to you. >>>> >>> >>> How is this parsing the query to figure out the correct text to send to >>> the server? For example, I notice you have no semi-colons on many of the >>> queries in your test; is it breaking on newlines? What if there's a newline >>> (or multiple of them) in the query string? How does it cope with an >>> anonymous block containing multiple queries, or a pl/whatever function >>> definition that might contain queries within its text? Or a view definition? >>> >>> -- >>> Dave Page >>> pgAdmin: https://www.pgadmin.org >>> PostgreSQL: https://www.postgresql.org >>> EDB: https://www.enterprisedb.com >>> >>> > > -- > Dave Page > pgAdmin: https://www.pgadmin.org > PostgreSQL: https://www.postgresql.org > EDB: https://www.enterprisedb.com > > -- Thanks, Aditya Toshniwal pgAdmin Hacker | Sr. Software Architect | *enterprisedb.com* <https://www.enterprisedb.com/> "Don't Complain about Heat, Plant a TREE"

Re: Missing Database in pgadmin4

2024-04-17 Thread Aditya Toshniwal
intended only for the use of the addressee. Unauthorized use, disclosure > or copying of this communication or any part hereof is strictly prohibited > and may be unlawful. If you have received this communication in error, > please notify me by return e-mail, and destroy this communication and all

Query regarding UPSERT Mode in Flink

2024-04-17 Thread Aditya Gupta
s for CDC tables, right? is it expected that fresh INSERTS will also have equality delete entries ? If yes, what is the benefit of having equality delete entry for INSERTS ? Regards, Aditya

Re: Regarding feature #6841

2024-04-17 Thread Aditya Toshniwal
> > www.enterprisedb.com > > Power to Postgres > > <https://www.linkedin.com/company/edbpostgres> > <https://twitter.com/edbpostgres?lang=en> > <https://www.facebook.com/EDBpostgres> > <https://www.instagram.com/EDBpostgres/> > -- Thanks, Aditya Toshniwal pgAdmin Hacker | Sr. Software Architect | *enterprisedb.com* <https://www.enterprisedb.com/> "Don't Complain about Heat, Plant a TREE"

Re: Keyboard shortcut challenges

2024-04-17 Thread Aditya Toshniwal
Hi Yogesh, The difference between other editors and pgAdmin is that pgAdmin can run on the web. Which means, a pgAdmin server hosted on linux can be opened on a Mac machine browser. On Wed, Apr 17, 2024 at 10:49 AM Yogesh Mahajan < yogesh.maha...@enterprisedb.com> wrote: > Hi Aditya,

Re: Keyboard shortcut challenges

2024-04-16 Thread Aditya Toshniwal
Hi, Just came to my mind - We could add one more checkbox - "Is Meta?" for Ctrl. That way - users will have more control. On Tue, Apr 16, 2024 at 4:26 PM Aditya Toshniwal < aditya.toshni...@enterprisedb.com> wrote: > Hi Hackers, > > I'm working on removing the usage of

Keyboard shortcut challenges

2024-04-16 Thread Aditya Toshniwal
: image.png] -- Thanks, Aditya Toshniwal pgAdmin Hacker | Sr. Software Architect | *enterprisedb.com* <https://www.enterprisedb.com/> "Don't Complain about Heat, Plant a TREE"

[webkit-changes] [WebKit/WebKit] bbd3a8: [Unified PDF] Data Detectors are offset from detec...

2024-04-15 Thread Aditya Keerthi
Branch: refs/heads/main Home: https://github.com/WebKit/WebKit Commit: bbd3a8dd40bdb2cbbe6d8f20cf98bf18ee430619 https://github.com/WebKit/WebKit/commit/bbd3a8dd40bdb2cbbe6d8f20cf98bf18ee430619 Author: Aditya Keerthi Date: 2024-04-15 (Mon, 15 Apr 2024) Changed paths: M

[webkit-changes] [WebKit/WebKit] 4e5ea6: [Unified PDF] Active form entry fields can get det...

2024-04-12 Thread Aditya Keerthi
Branch: refs/heads/main Home: https://github.com/WebKit/WebKit Commit: 4e5ea69a3c5ff8a548af422b9df424616dd53c97 https://github.com/WebKit/WebKit/commit/4e5ea69a3c5ff8a548af422b9df424616dd53c97 Author: Aditya Keerthi Date: 2024-04-12 (Fri, 12 Apr 2024) Changed paths: M

[PATCH v3] Drivers: hv: Cosmetic changes for hv.c and balloon.c

2024-04-11 Thread Aditya Nagesh
Fix issues reported by checkpatch.pl script in hv.c and balloon.c - Remove unnecessary parentheses - Remove extra newlines - Remove extra spaces - Add spaces between comparison operators - Remove comparison with NULL in if statements No functional changes intended Signed-off-by: Aditya

Re: [VOTE] [SIP-95] Proposal for Catalog Support in SQL Lab

2024-04-11 Thread Aditya Garg
+1 > > > On Apr 11, 2024, at 5:53 AM, Beto Dealmeida > wrote: > > > > Hi, folks! > > > > I'd like to call for a vote on SIP-95: > https://github.com/apache/superset/issues/22862 > > > > Thank you, > > --Beto > > -- Best Regards, Aadi

[jira] [Updated] (HUDI-7602) Writer failing with exception when precision is different for two decimal fields with same name

2024-04-11 Thread Aditya Goenka (Jira)
[ https://issues.apache.org/jira/browse/HUDI-7602?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Aditya Goenka updated HUDI-7602: Description: Github issue - [https://github.com/apache/hudi/issues/10983]   Reproducible Code

[jira] [Updated] (HUDI-7602) Writer failing with exception when precision is different for two decimal fields with same name

2024-04-11 Thread Aditya Goenka (Jira)
[ https://issues.apache.org/jira/browse/HUDI-7602?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Aditya Goenka updated HUDI-7602: Description: Github issue - [https://github.com/apache/hudi/issues/10983]   Reproducible Code

[jira] [Created] (HUDI-7602) Writer failing with exception when precision is different for two decimal fields with same name

2024-04-11 Thread Aditya Goenka (Jira)
Aditya Goenka created HUDI-7602: --- Summary: Writer failing with exception when precision is different for two decimal fields with same name Key: HUDI-7602 URL: https://issues.apache.org/jira/browse/HUDI-7602

[webkit-changes] [WebKit/WebKit] 149814: [MultiRep HEIC] Ensure alt text is specified upon ...

2024-04-10 Thread Aditya Keerthi
Branch: refs/heads/main Home: https://github.com/WebKit/WebKit Commit: 149814d3029da500956d3ef729d7d86b3d64c1e5 https://github.com/WebKit/WebKit/commit/149814d3029da500956d3ef729d7d86b3d64c1e5 Author: Aditya Keerthi Date: 2024-04-10 (Wed, 10 Apr 2024) Changed paths: M

[webkit-changes] [WebKit/WebKit] 5d4211: REGRESSION (277259@main): ASSERT(!forVisitedLink) ...

2024-04-10 Thread Aditya Keerthi
Branch: refs/heads/main Home: https://github.com/WebKit/WebKit Commit: 5d42114d58682590ac6fb8e28dccc82c71538035 https://github.com/WebKit/WebKit/commit/5d42114d58682590ac6fb8e28dccc82c71538035 Author: Aditya Keerthi Date: 2024-04-10 (Wed, 10 Apr 2024) Changed paths: M

[webkit-changes] [WebKit/WebKit] 455df1: [macOS] Crash when using text indicator style

2024-04-09 Thread Aditya Keerthi
Branch: refs/heads/main Home: https://github.com/WebKit/WebKit Commit: 455df18d3888d8b3eda30175a45c868882f57734 https://github.com/WebKit/WebKit/commit/455df18d3888d8b3eda30175a45c868882f57734 Author: Aditya Keerthi Date: 2024-04-09 (Tue, 09 Apr 2024) Changed paths

[webkit-changes] [WebKit/WebKit] 75f3de: Exclude -apple-pay-button from applying to any ele...

2024-04-09 Thread Aditya Keerthi
Branch: refs/heads/main Home: https://github.com/WebKit/WebKit Commit: 75f3ded86715b6a6ab4c4e750a005fae5f9b8e8e https://github.com/WebKit/WebKit/commit/75f3ded86715b6a6ab4c4e750a005fae5f9b8e8e Author: Aditya Keerthi Date: 2024-04-09 (Tue, 09 Apr 2024) Changed paths: M

[jira] [Updated] (HUDI-7521) Fix Critical and High vulnerabilities reported in hudi jar

2024-04-09 Thread Aditya Goenka (Jira)
[ https://issues.apache.org/jira/browse/HUDI-7521?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Aditya Goenka updated HUDI-7521: Description: Github Issue - [https://github.com/apache/hudi/issues/10893]   There is one more

Re: Small change proposal on the 8.5 release notes

2024-04-08 Thread Aditya Toshniwal
is just me, but I had to look at source code to understand what the > current phrase means  > > > > Regards, > > > > Edson Richter > > > -- Thanks, Aditya Toshniwal pgAdmin Hacker | Sr. Software Architect | *enterprisedb.com* <https://www.enterprisedb.com/> "Don't Complain about Heat, Plant a TREE"

Re: [FFmpeg-user] Question about 2 pass encoding

2024-04-08 Thread Aditya Dandavate
But, in case of SVT-AV1, x264, and x265, we can see progress, but, idk why not in case of vpx and aom-av1. Anyways, fine enough. On Mon, 8 Apr, 2024, 7:23 am Syehoon Kim, wrote: > 2024년 4월 8일 (월) 오전 10:38, Aditya Dandavate 님이 > 작성: > > > > Even after waiting like 5 mins, I s

Re: [FFmpeg-user] Question about 2 pass encoding

2024-04-07 Thread Aditya Dandavate
Okay, thank you sir . On Mon, 8 Apr, 2024, 7:23 am Syehoon Kim, wrote: > 2024년 4월 8일 (월) 오전 10:38, Aditya Dandavate 님이 > 작성: > > > > Even after waiting like 5 mins, I saw the same status as the output of > the > > command, so what's the bug that is causing the

Re: [FFmpeg-user] Question about 2 pass encoding

2024-04-07 Thread Aditya Dandavate
Even after waiting like 5 mins, I saw the same status as the output of the command, so what's the bug that is causing the first pass to not progress ahead ? On Sun, 7 Apr, 2024, 1:16 pm Aditya Dandavate, wrote: > > ffmpeg -i Map11.mp4 -c:v libvpx -quality good -cpu-used 2 -pass 1 -b:v

Re: [FFmpeg-user] Question about 2 pass encoding

2024-04-07 Thread Aditya Dandavate
ffmpeg -i Map11.mp4 -c:v libvpx -quality good -cpu-used 2 -pass 1 -b:v 12000k -fps_mode cfr -pix_fmt yuv420p -f matroska NULL ffmpeg -i Map11.mp4 -c:v libvpx -quality good -cpu-used 2 -pass 2 -b:v 12000k -c:a copy -pix_fmt yuv420p pass1.mkv pause Output: F:\New folder\PrBoomX>ffmpeg -i

[webkit-changes] [WebKit/WebKit] 9b9edc: [MultiRep HEIC] Refactor attachment creation logic

2024-04-04 Thread Aditya Keerthi
Branch: refs/heads/main Home: https://github.com/WebKit/WebKit Commit: 9b9edc7971bf1bc083c3c02b329a3215adf0e4ad https://github.com/WebKit/WebKit/commit/9b9edc7971bf1bc083c3c02b329a3215adf0e4ad Author: Aditya Keerthi Date: 2024-04-04 (Thu, 04 Apr 2024) Changed paths: M

[Crash-utility] Re: [[PATCH v2]] Clean up on top of one-thread-v2

2024-04-04 Thread Aditya Gupta
Hi Tao & Alexey, On Mon, Apr 01, 2024 at 05:14:41PM +0800, Tao Liu wrote: > Hi Aditya & Alexey, > > On Mon, Apr 1, 2024 at 4:39 PM Aditya Gupta wrote: > > > > Hi Tao & Alexey, > > > > > Please have a test or review, any comments would be nice. &

Re: [users@httpd] HTTPD Github latest release

2024-04-03 Thread Aditya Shastri
Sounds good. I'll ignore it. On Wed, Apr 3, 2024 at 10:08 AM Eric Covener wrote: > > On Wed, Apr 3, 2024 at 1:06 PM Aditya Shastri > wrote: > > > > Hello, > > > > One of my pipelines triggered when the github apache httpd tags were > > created for 2.4.59-

[users@httpd] HTTPD Github latest release

2024-04-03 Thread Aditya Shastri
Hello, One of my pipelines triggered when the github apache httpd tags were created for 2.4.59-rc1-candidate (the next one on the list after the previous 2.4.59) and 2.4.55. I wonder if there was an issue with the 2.4.55 release or if it was created accidentally? The repo in question:

[webkit-changes] [WebKit/WebKit] 7a5dcd: [MultiRep HEIC] Fix debug test failures

2024-04-02 Thread Aditya Keerthi
Branch: refs/heads/main Home: https://github.com/WebKit/WebKit Commit: 7a5dcd0896035d1204c21257c254b547c7497699 https://github.com/WebKit/WebKit/commit/7a5dcd0896035d1204c21257c254b547c7497699 Author: Aditya Keerthi Date: 2024-04-02 (Tue, 02 Apr 2024) Changed paths: M

[webkit-changes] [WebKit/WebKit] e73b02: Fix linter error in css/css-images/gradient/color-...

2024-04-02 Thread Aditya Keerthi
Branch: refs/heads/main Home: https://github.com/WebKit/WebKit Commit: e73b02c81541f918c1e9f912dac22bfca5313a35 https://github.com/WebKit/WebKit/commit/e73b02c81541f918c1e9f912dac22bfca5313a35 Author: Aditya Keerthi Date: 2024-04-02 (Tue, 02 Apr 2024) Changed paths: M

Re: [PATCH 0/2] P11 support for QEMU

2024-04-02 Thread Aditya Gupta
, I will add these details also. > > > > Also, you will need an OPAL update. The above changes are pointless > > > without it. > > > The minimum for now is a git commit from the opal repo, then you will > > > need to > > > update QEMU with a binary. > > > > Agreed. I will consult when we push it to public. Will update this in > > next series. > > > > There might be some days delay in the next patch series. > > We have entered the QEMU 9.1 cycle. There is time. I will comment more > the next respin. Thanks Cédric - Aditya Gupta > > Thanks, > > C. >

Re: [PATCH 0/2] P11 support for QEMU

2024-04-02 Thread Aditya Gupta
Hello Cédric, Thanks for reviewing this. On Mon, Apr 01, 2024 at 10:25:31AM +0200, Cédric Le Goater wrote: > Hello Aditya, > > Please run ./scripts/get_maintainer.pl when sending a series. qemu-ppc should > be > in Cc: Tried it now, For some reason, get_maintainer.pl shows

[PATCH v2] Drivers: hv: Cosmetic changes for hv.c and balloon.c

2024-04-01 Thread Aditya Nagesh
Fix issues reported by checkpatch.pl script in hv.c and balloon.c - Remove unnecessary parentheses - Remove extra newlines - Remove extra spaces - Add spaces between comparison operators - Remove comparison with NULL in if statements No functional changes intended Signed-off-by: Aditya

[webkit-changes] [WebKit/WebKit] b52f2b: REGRESSION (273461@main): The value attribute is n...

2024-04-01 Thread Aditya Keerthi
Branch: refs/heads/main Home: https://github.com/WebKit/WebKit Commit: b52f2b8abac2656e9e7e1c3ca3748e4f4650bded https://github.com/WebKit/WebKit/commit/b52f2b8abac2656e9e7e1c3ca3748e4f4650bded Author: Aditya Keerthi Date: 2024-04-01 (Mon, 01 Apr 2024) Changed paths

Re: [FFmpeg-user] Question about 2 pass encoding

2024-04-01 Thread Aditya Dandavate
Okay sir, I will follow your advice and your all instructions. Thank you for guiding me. On Tue, 2 Apr, 2024, 12:17 am Srikanth Kotagiri, wrote: > On Mon, Apr 1, 2024 at 11:15 AM Aditya Dandavate > wrote: > > > > okay. > > > > thank you sir. > > &g

Re: [FFmpeg-user] Question about 2 pass encoding

2024-04-01 Thread Aditya Dandavate
okay. thank you sir. But, I had one more problem coming frequently while encoding in two-pass. The problem says `File Ended Prematurely`. What could be the reason for this frequent issue ? On Mon, 1 Apr, 2024, 11:42 pm Laine Lee, wrote: > > > > On Apr 1, 2024, at 9:35 AM, Adit

Re: [FFmpeg-user] Question about 2 pass encoding

2024-04-01 Thread Aditya Dandavate
this happening ? On Mon, 1 Apr, 2024, 8:01 pm Srikanth Kotagiri, wrote: > On Mon, Apr 1, 2024 at 3:40 AM Aditya Dandavate > wrote: > > > > and then > > > > ffmpeg -y -i Capture.mp4 -pix_fmt yuv420p -c:v libx264 -pass 1 -an > > -b:v 2600k -f mp4 NUL > > >

[jira] [Created] (HUDI-7561) Skip shuffling entire data in SortMergeJoin while upserting

2024-04-01 Thread Aditya Goenka (Jira)
Aditya Goenka created HUDI-7561: --- Summary: Skip shuffling entire data in SortMergeJoin while upserting Key: HUDI-7561 URL: https://issues.apache.org/jira/browse/HUDI-7561 Project: Apache Hudi

[jira] [Created] (HUDI-7560) Rollback with async cleaning creating deadlocks and failing the subsequent write

2024-04-01 Thread Aditya Goenka (Jira)
Aditya Goenka created HUDI-7560: --- Summary: Rollback with async cleaning creating deadlocks and failing the subsequent write Key: HUDI-7560 URL: https://issues.apache.org/jira/browse/HUDI-7560 Project

[FFmpeg-user] Question about 2 pass encoding

2024-04-01 Thread Aditya Dandavate
In words of Gyan Dev Sir, a maintainer of FFMPEG, "Two-pass is meant for when you have a fixed input and you wish to analyze the file beforehand, so that the encode is optimized for the target bitrate and other encoder parameters. Your 1st command is discarding the capture. And so your 2nd

[Crash-utility] Re: [[PATCH v2]] Clean up on top of one-thread-v2

2024-04-01 Thread Aditya Gupta
text (ulong task); + #endif /* !GDB_COMMON */ ``` Since 'gdb_change_cpu_context' is no more defined in any patch, and gdb_change_thread_context is defined in crash_target.c Thanks - Aditya Gupta > > Thanks, > Tao Liu > > On Wed, Mar 27, 2024 at 4:05 AM Alexey Makhalov > wro

[jira] [Created] (HUDI-7558) Support INSERT_OVERWRITE mode with deltastreamer

2024-04-01 Thread Aditya Goenka (Jira)
Aditya Goenka created HUDI-7558: --- Summary: Support INSERT_OVERWRITE mode with deltastreamer Key: HUDI-7558 URL: https://issues.apache.org/jira/browse/HUDI-7558 Project: Apache Hudi Issue Type

[PATCH 1/2] ppc: pseries: add P11 cpu type

2024-03-31 Thread Aditya Gupta
Base support for "--cpu power11" in QEMU Signed-off-by: Aditya Gupta --- docs/system/ppc/pseries.rst | 6 +- hw/ppc/spapr_cpu_core.c | 1 + target/ppc/compat.c | 7 ++ target/ppc/cpu-models.c | 2 + target/ppc/cpu-models.h | 2 + target/ppc/cpu_init.c

[PATCH 2/2] ppc: powernv11: add base support for P11 PowerNV

2024-03-31 Thread Aditya Gupta
Most of the base support is based on P10 PowerNV Signed-off-by: Aditya Gupta --- hw/ppc/pnv.c | 409 + hw/ppc/pnv_core.c | 94 + hw/ppc/pnv_homer.c | 64 ++ hw/ppc/pnv_lpc.c | 14 ++ hw/ppc/pnv_occ.c

[PATCH 0/2] P11 support for QEMU

2024-03-31 Thread Aditya Gupta
-g15-ibm/qemu/tree/p11 Aditya Gupta (2): ppc: pseries: add P11 cpu type ppc: powernv11: add base support for P11 PowerNV docs/system/ppc/pseries.rst | 6 +- hw/ppc/pnv.c| 409 hw/ppc/pnv_core.c | 94 + hw/ppc

[Bug 2059383] [NEW] I am unable to upgrade the system, its showing some error "Both /bin/uname and /usr/bin/uname exist"

2024-03-27 Thread PK Aditya
Public bug reported: There is an error being faced by me in my ubuntu 22.04 while trying to upgrade something or install something, i have provided the error details below. It would be very helpful if someone could help me to resolve this error, its kind of urgent to resolve the error. Thank you.

[webkit-changes] [WebKit/WebKit] afc670: Inserting consecutive elements displays ...

2024-03-27 Thread Aditya Keerthi
Branch: refs/heads/main Home: https://github.com/WebKit/WebKit Commit: afc67068fec68a95864c3a7c4b14d28c5dba277c https://github.com/WebKit/WebKit/commit/afc67068fec68a95864c3a7c4b14d28c5dba277c Author: Aditya Keerthi Date: 2024-03-27 (Wed, 27 Mar 2024) Changed paths

[PATCH] Drivers: hv: Fix Issues reported by checkpatch.pl script

2024-03-25 Thread Aditya Nagesh
Fix issues reported by checkpatch.pl script in hv.c and balloon.c - Remove unnecessary parentheses - Remove extra newlines - Remove extra spaces - Add spaces between comparison operators - Remove comparison with NULL in if statements No functional changes intended Signed-off-by: Aditya

[Sugar-devel] GSOC Project Proposal help

2024-03-25 Thread Aditya Kumar
I am interested in working on the Music Blocks project for Google Summer of Code (GSoC), with the goal of *Adding real-time collaboration features to Music Blocks* However, I am unsure what to include in the proposal timeline and would appreciate a clearer project description. Thank you in advance

Getting Connection is still allocated error during rest api call

2024-03-25 Thread Aditya Kavathekar
: Connection [Not Bound] is still allocated Please help me understand how to fix this issue. Thanks, Aditya

[webkit-changes] [WebKit/WebKit] 80d6b8: [macOS] Menu and MenuText system colors are incorrect

2024-03-23 Thread Aditya Keerthi
Branch: refs/heads/main Home: https://github.com/WebKit/WebKit Commit: 80d6b8db8ff38513395c9ed7c404f22874c94c09 https://github.com/WebKit/WebKit/commit/80d6b8db8ff38513395c9ed7c404f22874c94c09 Author: Aditya Keerthi Date: 2024-03-23 (Sat, 23 Mar 2024) Changed paths: M

[webkit-changes] [WebKit/WebKit] 1b69ad: [Unified Text Replacement] Add support for ephemer...

2024-03-21 Thread Aditya Keerthi
Branch: refs/heads/main Home: https://github.com/WebKit/WebKit Commit: 1b69ad8b77027a14ee721fc57e2477a5813cf1f3 https://github.com/WebKit/WebKit/commit/1b69ad8b77027a14ee721fc57e2477a5813cf1f3 Author: Aditya Keerthi Date: 2024-03-21 (Thu, 21 Mar 2024) Changed paths: M

[webkit-changes] [WebKit/WebKit] b50554: [Unified Text Replacement] Distinguish plain text ...

2024-03-21 Thread Aditya Keerthi
Branch: refs/heads/main Home: https://github.com/WebKit/WebKit Commit: b50554e8a29dcccba3b8ebd232d3bbf8ace3599a https://github.com/WebKit/WebKit/commit/b50554e8a29dcccba3b8ebd232d3bbf8ace3599a Author: Aditya Keerthi Date: 2024-03-21 (Thu, 21 Mar 2024) Changed paths: M

[Crash-utility] Re: [PATCH] crash_target: Support for GDB debugging of all tasks

2024-03-21 Thread Aditya Gupta
Hi Tao & Kazu, On 21/03/24 14:30, Tao Liu wrote: Thanks for the comments. Yes, I guess if we all agree that 1 thread gdb is better, then I and Aditya can work together to clean up the code, e.g. rearrange the powerpc series and mine. I agree the code which gets added and then removed sh

[Crash-utility] Re: [PATCH] crash_target: Support for GDB debugging of all tasks

2024-03-20 Thread Aditya Gupta
Hi Tao, On Wed, Mar 20, 2024 at 07:39:12PM +0800, Tao Liu wrote: > Hi Aditya & Alexey, > > On Wed, Mar 20, 2024 at 1:57 PM Aditya Gupta wrote: > > > > Hi Tao, > > > > > From my view, I think we can keep the current "gdb thread/CPUs = > > &

[jira] [Updated] (HUDI-7521) Fix Critical and High vulnerabilities reported in hudi jar

2024-03-20 Thread Aditya Goenka (Jira)
[ https://issues.apache.org/jira/browse/HUDI-7521?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Aditya Goenka updated HUDI-7521: Component/s: dependencies (was: code-quality) > Fix Critical and H

[jira] [Updated] (HUDI-7521) Fix Critical and High vulnerabilities reported in hudi jar

2024-03-20 Thread Aditya Goenka (Jira)
[ https://issues.apache.org/jira/browse/HUDI-7521?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Aditya Goenka updated HUDI-7521: Component/s: code-quality > Fix Critical and High vulnerabilities reported in hudi

[jira] [Created] (HUDI-7521) Fix Critical and High vulnerabilities reported in hudi jar

2024-03-20 Thread Aditya Goenka (Jira)
Aditya Goenka created HUDI-7521: --- Summary: Fix Critical and High vulnerabilities reported in hudi jar Key: HUDI-7521 URL: https://issues.apache.org/jira/browse/HUDI-7521 Project: Apache Hudi

[Crash-utility] Re: [PATCH] crash_target: Support for GDB debugging of all tasks

2024-03-19 Thread Aditya Gupta
to fetch registers again, after architectures have set 'machdep->get_cpu_reg'. Haven't tested this yet. Thanks, Aditya Gupta > > Do you have any thoughts? > > [1]: https://github.com/liutgnu/crash-dev/commits/one-thread > > Thanks, > Tao Liu > > > Thanks, &

[webkit-changes] [WebKit/WebKit] cfd869: REGRESSION (271805@main): [iOS] Updating options i...

2024-03-19 Thread Aditya Keerthi
Branch: refs/heads/main Home: https://github.com/WebKit/WebKit Commit: cfd86982fcdf69b0a1585024e43a477ffe8e7288 https://github.com/WebKit/WebKit/commit/cfd86982fcdf69b0a1585024e43a477ffe8e7288 Author: Aditya Keerthi Date: 2024-03-19 (Tue, 19 Mar 2024) Changed paths: M

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