[netbeans-mavenutils-nb-repository-plugin] 01/01: Merge pull request #19 from apache/dependabot/maven/master/org.codehaus.plexus-plexus-utils-3.4.2

2022-05-25 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

skygo pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/netbeans-mavenutils-nb-repository-plugin.git

commit ea4b3519c3b92529eb65b3c6cc1d24758f5e09db
Merge: 88446e7 4769cd9
Author: Eric Barboni 
AuthorDate: Wed May 25 18:05:41 2022 +0200

Merge pull request #19 from 
apache/dependabot/maven/master/org.codehaus.plexus-plexus-utils-3.4.2

Bump plexus-utils from 3.1.0 to 3.4.2

 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[netbeans-mavenutils-nb-repository-plugin] branch master updated (be9b0a3 -> 88446e7)

2022-05-25 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

skygo pushed a change to branch master
in repository 
https://gitbox.apache.org/repos/asf/netbeans-mavenutils-nb-repository-plugin.git


from be9b0a3  Merge pull request #16 from ebarboni/buildfix
 add 72f7ec2  Bump nb-shared from 1.3 to 1.4
 add 88446e7  Merge pull request #20 from 
apache/dependabot/maven/master/org.apache.netbeans.utilities-nb-shared-1.4

No new revisions were added by this update.

Summary of changes:
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[netbeans-mavenutils-nb-repository-plugin] branch master updated (88446e7 -> ea4b351)

2022-05-25 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

skygo pushed a change to branch master
in repository 
https://gitbox.apache.org/repos/asf/netbeans-mavenutils-nb-repository-plugin.git


from 88446e7  Merge pull request #20 from 
apache/dependabot/maven/master/org.apache.netbeans.utilities-nb-shared-1.4
 add 4769cd9  Bump plexus-utils from 3.1.0 to 3.4.2
 new ea4b351  Merge pull request #19 from 
apache/dependabot/maven/master/org.codehaus.plexus-plexus-utils-3.4.2

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[netbeans] branch delivery updated: Avoid dependency on ReferenceQueue internals

2022-05-25 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

skygo pushed a commit to branch delivery
in repository https://gitbox.apache.org/repos/asf/netbeans.git


The following commit(s) were added to refs/heads/delivery by this push:
 new eeaa76483c Avoid dependency on ReferenceQueue internals
 new f44633889a Merge pull request #4130 from anthonyvdotbe/fix-activequeue
eeaa76483c is described below

commit eeaa76483c7900a921239e52e3574d925936e8b8
Author: Anthony Vanelverdinghe 
AuthorDate: Sat May 21 13:30:59 2022 +0200

Avoid dependency on ReferenceQueue internals

Signed-off-by: Anthony Vanelverdinghe 
---
 .../openide/util/lookup/implspi/ActiveQueue.java   | 29 +-
 1 file changed, 17 insertions(+), 12 deletions(-)

diff --git 
a/platform/openide.util.lookup/src/org/openide/util/lookup/implspi/ActiveQueue.java
 
b/platform/openide.util.lookup/src/org/openide/util/lookup/implspi/ActiveQueue.java
index dd57b504c8..abf380a998 100644
--- 
a/platform/openide.util.lookup/src/org/openide/util/lookup/implspi/ActiveQueue.java
+++ 
b/platform/openide.util.lookup/src/org/openide/util/lookup/implspi/ActiveQueue.java
@@ -57,17 +57,23 @@ public final class ActiveQueue {
 }
 
 @Override
-public Reference remove(long timeout) throws 
IllegalArgumentException, InterruptedException {
-throw new InterruptedException();
+public Reference remove(long timeout) throws 
IllegalArgumentException, InterruptedException {
+if (timeout < 0) {
+throw new IllegalArgumentException("Negative timeout value");
+} else if (Thread.currentThread() != Daemon.running) {
+throw new InterruptedException();
+}
+
+return super.remove(timeout);
 }
 
 @Override
-public Reference remove() throws InterruptedException {
-throw new InterruptedException();
-}
-
-final Reference removeSuper() throws 
InterruptedException {
-return super.remove(0);
+public Reference remove() throws 
InterruptedException {
+if (Thread.currentThread() != Daemon.running) {
+throw new InterruptedException();
+}
+
+return super.remove();
 }
 }
 
@@ -112,7 +118,7 @@ public final class ActiveQueue {
 if (impl == null) {
 return;
 }
-Reference ref = impl.removeSuper();
+Reference ref = impl.remove();
 LOGGER.log(Level.FINE, "Got dequeued reference {0}", new 
Object[] { ref });
 if (!(ref instanceof Runnable)) {
 LOGGER.log(Level.WARNING, "A reference not 
implementing runnable has been added to the Utilities.activeReferenceQueue(): 
{0}", ref.getClass());
@@ -131,9 +137,8 @@ public final class ActiveQueue {
 // to allow GC
 ref = null;
 }
-} catch (InterruptedException ex) {
-// Can happen during VM shutdown, it seems. Ignore.
-continue;
+} catch (InterruptedException ignored) {
+// Can happen during VM shutdown, it seems.
 }
 }
 }


-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[netbeans-jenkins-lib] branch master updated: remonving parenthesis

2022-05-25 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

skygo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/netbeans-jenkins-lib.git


The following commit(s) were added to refs/heads/master by this push:
 new ffcc2bc  remonving parenthesis
ffcc2bc is described below

commit ffcc2bc6737d4718b3b014c4049cda20e4d17b56
Author: Eric Barboni 
AuthorDate: Wed May 25 15:29:30 2022 +0200

remonving parenthesis
---
 jobs/netbeansreleasetlp.groovy | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/jobs/netbeansreleasetlp.groovy b/jobs/netbeansreleasetlp.groovy
index 8884c9d..0d1fc20 100755
--- a/jobs/netbeansreleasetlp.groovy
+++ b/jobs/netbeansreleasetlp.groovy
@@ -44,7 +44,7 @@ organizationFolder('NetBeans/netbeans-TLP') {
 buildNamedBranches {
 filters {
 regex {
-
regex('(master|release\\d+$|vsnetbeans_preview_\\d+$))')
+regex('(master|release\\d+$|vsnetbeans_preview_\\d+$)')
 caseSensitive(false)
 }
 }


-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[netbeans-jenkins-lib] branch master updated (c9afa5b -> 4d24409)

2022-05-25 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

skygo pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/netbeans-jenkins-lib.git


from c9afa5b  rc5
 add f43a4b6  job dsl to have a common way to generate base jobs
 new 4d24409  Merge pull request #60 from apache/ebarboni-patch-1

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 jobs/netbeansbase.groovy | 147 +++
 1 file changed, 147 insertions(+)
 create mode 100644 jobs/netbeansbase.groovy


-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[netbeans-jenkins-lib] 01/01: Merge pull request #60 from apache/ebarboni-patch-1

2022-05-25 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

skygo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/netbeans-jenkins-lib.git

commit 4d244091eb5c249b80c448f620d8ac28c50c74b4
Merge: c9afa5b f43a4b6
Author: Eric Barboni 
AuthorDate: Wed May 25 15:17:19 2022 +0200

Merge pull request #60 from apache/ebarboni-patch-1

job dsl to have a common way to generate base jobs

 jobs/netbeansbase.groovy | 147 +++
 1 file changed, 147 insertions(+)


-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-6382) String Variables longer 100000 Characters are shown as in Debug

2022-05-25 Thread Wolfgang Kockwelp (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-6382?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17541974#comment-17541974
 ] 

Wolfgang Kockwelp commented on NETBEANS-6382:
-

This Bug does not exist with Oracle or Coretto Java 8.

In Debug with Java 8 the first 10 Characters ar shown and a Button to write 
the hole String to File is shown.

> String Variables longer 10 Characters are shown as  in Debug
> 
>
> Key: NETBEANS-6382
> URL: https://issues.apache.org/jira/browse/NETBEANS-6382
> Project: NetBeans
>  Issue Type: Bug
>  Components: debugger - Java
>Reporter: Wolfgang Kockwelp
>Priority: Major
>
> String Variables longer 10 Characters are shown in Debugger as 
> 
> instead of its content.
> Tested with Netbeans 12.0 and 12.6 with Amazon Corretto open-jdk11.0.12_7 64 
> Bit and
> Amazon Corretto open-jdk15.0.2_7 64 Bit and Oracle JDK 11.0.2
>  



--
This message was sent by Atlassian Jira
(v8.20.7#820007)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists