[jira] [Comment Edited] (NETBEANS-421) Conditional breakpoints trigger when condition is false

2021-07-01 Thread Jeff Vincent (Jira)


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

Jeff Vincent edited comment on NETBEANS-421 at 7/1/21, 5:38 PM:


I'm seeing this using Netbeans 12.4 + Java 8u221.  The screenshot below shows 
the condition, the current breakpoint, the value of the field being checked.

In the Debugger Console I see the message below, but it does not make sense 
that the object was collected.  It is in scope and actively being referenced:

{{Breakpoint hit at line 281 in class 
com.bluecoat.webpulse.qa.entitlementsync.Test_EntitlementSync_ValidateImportFromFile
 by thread PoolService-15.}}
 {{***}}
 {{The object was collected.}}
 {{***}}

 

!image-2021-07-01-11-32-18-081.png!


was (Author: predatorvi):
I'm seeing this using Netbeans 12.4 + Java 8u221.  The screenshot below shows 
the condition, the current breakpoint, the value of the field being checked.

In the Debugger Console I see the message below, but it does not make sense 
that the object was collected.  It is in scope and actively being referenced:

{{Breakpoint hit at line 281 in class 
com.bluecoat.webpulse.qa.entitlementsync.Test_EntitlementSync_ValidateImportFromFile
 by thread PoolService-15.}}
 {{***}}
 {{The object was collected.}}
 {{***}}

 

!image-2021-07-01-11-32-18-081.png!

> Conditional breakpoints trigger when condition is false
> ---
>
> Key: NETBEANS-421
> URL: https://issues.apache.org/jira/browse/NETBEANS-421
> Project: NetBeans
>  Issue Type: Bug
>  Components: debugger - Java
> Environment: Product Version: Apache NetBeans IDE Dev (Build 
> incubator-netbeans-release-219-on-20180221)
> Updates: Updates available
> Java: 9.0.4; Java HotSpot(TM) 64-Bit Server VM 9.0.4+11
> Runtime: Java(TM) SE Runtime Environment 9.0.4+11
> System: Windows 10 version 10.0 running on amd64; Cp1252; en_CA (nb)
> User directory: C:\Users\Gili\AppData\Roaming\NetBeans\dev
> Cache directory: C:\Users\Gili\AppData\Local\NetBeans\Cache\dev
>Reporter: Gili
>Priority: Major
> Attachments: image-2021-07-01-11-32-18-081.png
>
>
> I set a conditional breakpoint which is triggering every time, even if the 
> condition is false. I opened the Debugger Console and saw:
> {code:java}
> Breakpoint hit at line 299 in class 
> com.holdmyspot.pyramid.binance.BinanceOrderStream$WebSocketListener by thread 
> WebSocketClient@1801942731-21.
> ***
> The object was collected.
> ***
> {code}
> I believe this is coming from 
> [https://github.com/apache/incubator-netbeans/blob/15bc442a91fa2be81488725b15c61386bf1d0b9b/debugger.jpda/src/org/netbeans/modules/debugger/jpda/JavaEvaluator.java#L168]
>  but it isn't clear what this means.
> If I enter the conditional expression in the "Variables" tab, it evaluates 
> correctly, so I don't think there is anything wrong with the expression.
> My conditional expression is 
> {{symbol.equals(CurrencyPair.fromString("BNB/USD"))}} where {{symbol}} is a 
> local String variable and {{CurrencyPair.fromString()}} is a static method.
> Please clarify what is going wrong, and improve the IDE so it explains to the 
> user what is wrong.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
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-421) Conditional breakpoints trigger when condition is false

2021-07-01 Thread Jeff Vincent (Jira)


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

Jeff Vincent commented on NETBEANS-421:
---

I'm seeing this using Netbeans 12.4 + Java 8u221.  The screenshot below shows 
the condition, the current breakpoint, the value of the field being checked.

In the Debugger Console I see but it does not make sense that the object was 
collected.  It is in scope and actively being referenced:

{{Breakpoint hit at line 281 in class 
com.bluecoat.webpulse.qa.entitlementsync.Test_EntitlementSync_ValidateImportFromFile
 by thread PoolService-15.}}
{{***}}
{{The object was collected.}}
{{***}}

 

!image-2021-07-01-11-32-18-081.png!

> Conditional breakpoints trigger when condition is false
> ---
>
> Key: NETBEANS-421
> URL: https://issues.apache.org/jira/browse/NETBEANS-421
> Project: NetBeans
>  Issue Type: Bug
>  Components: debugger - Java
> Environment: Product Version: Apache NetBeans IDE Dev (Build 
> incubator-netbeans-release-219-on-20180221)
> Updates: Updates available
> Java: 9.0.4; Java HotSpot(TM) 64-Bit Server VM 9.0.4+11
> Runtime: Java(TM) SE Runtime Environment 9.0.4+11
> System: Windows 10 version 10.0 running on amd64; Cp1252; en_CA (nb)
> User directory: C:\Users\Gili\AppData\Roaming\NetBeans\dev
> Cache directory: C:\Users\Gili\AppData\Local\NetBeans\Cache\dev
>Reporter: Gili
>Priority: Major
> Attachments: image-2021-07-01-11-32-18-081.png
>
>
> I set a conditional breakpoint which is triggering every time, even if the 
> condition is false. I opened the Debugger Console and saw:
> {code:java}
> Breakpoint hit at line 299 in class 
> com.holdmyspot.pyramid.binance.BinanceOrderStream$WebSocketListener by thread 
> WebSocketClient@1801942731-21.
> ***
> The object was collected.
> ***
> {code}
> I believe this is coming from 
> [https://github.com/apache/incubator-netbeans/blob/15bc442a91fa2be81488725b15c61386bf1d0b9b/debugger.jpda/src/org/netbeans/modules/debugger/jpda/JavaEvaluator.java#L168]
>  but it isn't clear what this means.
> If I enter the conditional expression in the "Variables" tab, it evaluates 
> correctly, so I don't think there is anything wrong with the expression.
> My conditional expression is 
> {{symbol.equals(CurrencyPair.fromString("BNB/USD"))}} where {{symbol}} is a 
> local String variable and {{CurrencyPair.fromString()}} is a static method.
> Please clarify what is going wrong, and improve the IDE so it explains to the 
> user what is wrong.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
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] [Comment Edited] (NETBEANS-421) Conditional breakpoints trigger when condition is false

2021-07-01 Thread Jeff Vincent (Jira)


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

Jeff Vincent edited comment on NETBEANS-421 at 7/1/21, 5:37 PM:


I'm seeing this using Netbeans 12.4 + Java 8u221.  The screenshot below shows 
the condition, the current breakpoint, the value of the field being checked.

In the Debugger Console I see the message below, but it does not make sense 
that the object was collected.  It is in scope and actively being referenced:

{{Breakpoint hit at line 281 in class 
com.bluecoat.webpulse.qa.entitlementsync.Test_EntitlementSync_ValidateImportFromFile
 by thread PoolService-15.}}
 {{***}}
 {{The object was collected.}}
 {{***}}

 

!image-2021-07-01-11-32-18-081.png!


was (Author: predatorvi):
I'm seeing this using Netbeans 12.4 + Java 8u221.  The screenshot below shows 
the condition, the current breakpoint, the value of the field being checked.

In the Debugger Console I see but it does not make sense that the object was 
collected.  It is in scope and actively being referenced:

{{Breakpoint hit at line 281 in class 
com.bluecoat.webpulse.qa.entitlementsync.Test_EntitlementSync_ValidateImportFromFile
 by thread PoolService-15.}}
{{***}}
{{The object was collected.}}
{{***}}

 

!image-2021-07-01-11-32-18-081.png!

> Conditional breakpoints trigger when condition is false
> ---
>
> Key: NETBEANS-421
> URL: https://issues.apache.org/jira/browse/NETBEANS-421
> Project: NetBeans
>  Issue Type: Bug
>  Components: debugger - Java
> Environment: Product Version: Apache NetBeans IDE Dev (Build 
> incubator-netbeans-release-219-on-20180221)
> Updates: Updates available
> Java: 9.0.4; Java HotSpot(TM) 64-Bit Server VM 9.0.4+11
> Runtime: Java(TM) SE Runtime Environment 9.0.4+11
> System: Windows 10 version 10.0 running on amd64; Cp1252; en_CA (nb)
> User directory: C:\Users\Gili\AppData\Roaming\NetBeans\dev
> Cache directory: C:\Users\Gili\AppData\Local\NetBeans\Cache\dev
>Reporter: Gili
>Priority: Major
> Attachments: image-2021-07-01-11-32-18-081.png
>
>
> I set a conditional breakpoint which is triggering every time, even if the 
> condition is false. I opened the Debugger Console and saw:
> {code:java}
> Breakpoint hit at line 299 in class 
> com.holdmyspot.pyramid.binance.BinanceOrderStream$WebSocketListener by thread 
> WebSocketClient@1801942731-21.
> ***
> The object was collected.
> ***
> {code}
> I believe this is coming from 
> [https://github.com/apache/incubator-netbeans/blob/15bc442a91fa2be81488725b15c61386bf1d0b9b/debugger.jpda/src/org/netbeans/modules/debugger/jpda/JavaEvaluator.java#L168]
>  but it isn't clear what this means.
> If I enter the conditional expression in the "Variables" tab, it evaluates 
> correctly, so I don't think there is anything wrong with the expression.
> My conditional expression is 
> {{symbol.equals(CurrencyPair.fromString("BNB/USD"))}} where {{symbol}} is a 
> local String variable and {{CurrencyPair.fromString()}} is a static method.
> Please clarify what is going wrong, and improve the IDE so it explains to the 
> user what is wrong.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
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] [Updated] (NETBEANS-421) Conditional breakpoints trigger when condition is false

2021-07-01 Thread Jeff Vincent (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-421?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jeff Vincent updated NETBEANS-421:
--
Attachment: image-2021-07-01-11-32-18-081.png

> Conditional breakpoints trigger when condition is false
> ---
>
> Key: NETBEANS-421
> URL: https://issues.apache.org/jira/browse/NETBEANS-421
> Project: NetBeans
>  Issue Type: Bug
>  Components: debugger - Java
> Environment: Product Version: Apache NetBeans IDE Dev (Build 
> incubator-netbeans-release-219-on-20180221)
> Updates: Updates available
> Java: 9.0.4; Java HotSpot(TM) 64-Bit Server VM 9.0.4+11
> Runtime: Java(TM) SE Runtime Environment 9.0.4+11
> System: Windows 10 version 10.0 running on amd64; Cp1252; en_CA (nb)
> User directory: C:\Users\Gili\AppData\Roaming\NetBeans\dev
> Cache directory: C:\Users\Gili\AppData\Local\NetBeans\Cache\dev
>Reporter: Gili
>Priority: Major
> Attachments: image-2021-07-01-11-32-18-081.png
>
>
> I set a conditional breakpoint which is triggering every time, even if the 
> condition is false. I opened the Debugger Console and saw:
> {code:java}
> Breakpoint hit at line 299 in class 
> com.holdmyspot.pyramid.binance.BinanceOrderStream$WebSocketListener by thread 
> WebSocketClient@1801942731-21.
> ***
> The object was collected.
> ***
> {code}
> I believe this is coming from 
> [https://github.com/apache/incubator-netbeans/blob/15bc442a91fa2be81488725b15c61386bf1d0b9b/debugger.jpda/src/org/netbeans/modules/debugger/jpda/JavaEvaluator.java#L168]
>  but it isn't clear what this means.
> If I enter the conditional expression in the "Variables" tab, it evaluates 
> correctly, so I don't think there is anything wrong with the expression.
> My conditional expression is 
> {{symbol.equals(CurrencyPair.fromString("BNB/USD"))}} where {{symbol}} is a 
> local String variable and {{CurrencyPair.fromString()}} is a static method.
> Please clarify what is going wrong, and improve the IDE so it explains to the 
> user what is wrong.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
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] [Comment Edited] (NETBEANS-3481) After install Netbeans 11.2

2020-01-14 Thread Jeff Vincent (Jira)


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

Jeff Vincent edited comment on NETBEANS-3481 at 1/14/20 8:50 PM:
-

Same experience here.  Very annoying for sure. 

Windows 10 x64, Oracle Java 1.8.0_221, NB 11.2, Maven 3.6.1

Log attached.  Exception below.  Seems the required libraries just disappear.

java.lang.ClassNotFoundException: com.sun.tools.javac.api.JavacTaskImpl 
starting from ModuleCL@b3f5789[org.netbeans.modules.java.source.base] with 
possible defining loaders null and declared parents 
[ModuleCL@3d8ae7ce[org.netbeans.modules.editor.document], 
org.netbeans.MainImpl$BootClassLoader@548c4f57, 
ModuleCL@6db4d67f[org.netbeans.modules.java.preprocessorbridge], 
org.netbeans.JarClassLoader@fb2b6d, 
ModuleCL@7277853c[org.netbeans.modules.editor.util], 
ModuleCL@250c2e7f[org.netbeans.modules.editor.guards], 
ModuleCL@1cb9c8ef[org.netbeans.modules.classfile], 
ModuleCL@4928b232[org.netbeans.lib.nbjavac], 
ModuleCL@17da2139[org.netbeans.api.scripting], 
ModuleCL@747ba45a[org.netbeans.libs.javacimpl], ...20 
more]java.lang.ClassNotFoundException: com.sun.tools.javac.api.JavacTaskImpl 
starting from ModuleCL@b3f5789[org.netbeans.modules.java.source.base] with 
possible defining loaders null and declared parents 
[ModuleCL@3d8ae7ce[org.netbeans.modules.editor.document], 
org.netbeans.MainImpl$BootClassLoader@548c4f57, 
ModuleCL@6db4d67f[org.netbeans.modules.java.preprocessorbridge], 
org.netbeans.JarClassLoader@fb2b6d, 
ModuleCL@7277853c[org.netbeans.modules.editor.util], 
ModuleCL@250c2e7f[org.netbeans.modules.editor.guards], 
ModuleCL@1cb9c8ef[org.netbeans.modules.classfile], 
ModuleCL@4928b232[org.netbeans.lib.nbjavac], 
ModuleCL@17da2139[org.netbeans.api.scripting], 
ModuleCL@747ba45a[org.netbeans.libs.javacimpl], ...20 more] at 
org.netbeans.ProxyClassLoader.loadClass(ProxyClassLoader.java:203) at 
java.lang.ClassLoader.loadClass(ClassLoader.java:351)Caused: 
java.lang.NoClassDefFoundError: com/sun/tools/javac/api/JavacTaskImpl at 
java.lang.Class.forName0(Native Method) at 
java.lang.Class.forName(Class.java:348) at 
org.netbeans.modules.java.source.ElementHandleAccessor.getInstance(ElementHandleAccessor.java:44)
 at 
org.netbeans.modules.java.source.indexing.JavaCustomIndexer.clear(JavaCustomIndexer.java:710)
 at 
org.netbeans.modules.java.source.indexing.JavaCustomIndexer.index(JavaCustomIndexer.java:338)
 at 
org.netbeans.modules.parsing.spi.indexing.Indexable$MyAccessor$2.run(Indexable.java:138)
 at 
org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater.runIndexer(RepositoryUpdater.java:275)
 at 
org.netbeans.modules.parsing.spi.indexing.Indexable$MyAccessor.index(Indexable.java:136)[catch]
 at 
org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$Work.doIndex(RepositoryUpdater.java:2750)
 at 
org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$Work.access$800(RepositoryUpdater.java:2154)
 at 
org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$Work$1.run(RepositoryUpdater.java:2636)
 at 
org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$Work$1.run(RepositoryUpdater.java:2634)
 at 
org.netbeans.modules.parsing.impl.indexing.errors.TaskCache.refreshTransaction(TaskCache.java:540)
 at 
org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$Work.index(RepositoryUpdater.java:2634)
 at 
org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$AbstractRootsWork$4.call(RepositoryUpdater.java:5714)
 at 
org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$AbstractRootsWork$4.call(RepositoryUpdater.java:5622)
 at 
org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$4.run(RepositoryUpdater.java:2127)
 at org.openide.util.lookup.Lookups.executeWith(Lookups.java:279) at 
org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater.runInContext(RepositoryUpdater.java:2123)
 at 
org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater.runInContext(RepositoryUpdater.java:2104)
 at 
org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater.access$1500(RepositoryUpdater.java:136)
 at 
org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$AbstractRootsWork.scanSource(RepositoryUpdater.java:5749)
 at 
org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$AbstractRootsWork.scanSources(RepositoryUpdater.java:5419)
 at 
org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$RootsWork.getDone(RepositoryUpdater.java:5038)
 at 
org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$InitialRootsWork.getDone(RepositoryUpdater.java:5821)
 at 
org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$Work.doTheWork(RepositoryUpdater.java:3420)
 at 
org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$Task._run(RepositoryUpdater.java:6183)
 at 

[jira] [Commented] (NETBEANS-3481) After install Netbeans 11.2

2020-01-14 Thread Jeff Vincent (Jira)


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

Jeff Vincent commented on NETBEANS-3481:


Same experience here.  Very annoying for sure.  Log attached.  Exception below. 
 Seems the required libraries just disappear.

java.lang.ClassNotFoundException: com.sun.tools.javac.api.JavacTaskImpl 
starting from ModuleCL@b3f5789[org.netbeans.modules.java.source.base] with 
possible defining loaders null and declared parents 
[ModuleCL@3d8ae7ce[org.netbeans.modules.editor.document], 
org.netbeans.MainImpl$BootClassLoader@548c4f57, 
ModuleCL@6db4d67f[org.netbeans.modules.java.preprocessorbridge], 
org.netbeans.JarClassLoader@fb2b6d, 
ModuleCL@7277853c[org.netbeans.modules.editor.util], 
ModuleCL@250c2e7f[org.netbeans.modules.editor.guards], 
ModuleCL@1cb9c8ef[org.netbeans.modules.classfile], 
ModuleCL@4928b232[org.netbeans.lib.nbjavac], 
ModuleCL@17da2139[org.netbeans.api.scripting], 
ModuleCL@747ba45a[org.netbeans.libs.javacimpl], ...20 
more]java.lang.ClassNotFoundException: com.sun.tools.javac.api.JavacTaskImpl 
starting from ModuleCL@b3f5789[org.netbeans.modules.java.source.base] with 
possible defining loaders null and declared parents 
[ModuleCL@3d8ae7ce[org.netbeans.modules.editor.document], 
org.netbeans.MainImpl$BootClassLoader@548c4f57, 
ModuleCL@6db4d67f[org.netbeans.modules.java.preprocessorbridge], 
org.netbeans.JarClassLoader@fb2b6d, 
ModuleCL@7277853c[org.netbeans.modules.editor.util], 
ModuleCL@250c2e7f[org.netbeans.modules.editor.guards], 
ModuleCL@1cb9c8ef[org.netbeans.modules.classfile], 
ModuleCL@4928b232[org.netbeans.lib.nbjavac], 
ModuleCL@17da2139[org.netbeans.api.scripting], 
ModuleCL@747ba45a[org.netbeans.libs.javacimpl], ...20 more] at 
org.netbeans.ProxyClassLoader.loadClass(ProxyClassLoader.java:203) at 
java.lang.ClassLoader.loadClass(ClassLoader.java:351)Caused: 
java.lang.NoClassDefFoundError: com/sun/tools/javac/api/JavacTaskImpl at 
java.lang.Class.forName0(Native Method) at 
java.lang.Class.forName(Class.java:348) at 
org.netbeans.modules.java.source.ElementHandleAccessor.getInstance(ElementHandleAccessor.java:44)
 at 
org.netbeans.modules.java.source.indexing.JavaCustomIndexer.clear(JavaCustomIndexer.java:710)
 at 
org.netbeans.modules.java.source.indexing.JavaCustomIndexer.index(JavaCustomIndexer.java:338)
 at 
org.netbeans.modules.parsing.spi.indexing.Indexable$MyAccessor$2.run(Indexable.java:138)
 at 
org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater.runIndexer(RepositoryUpdater.java:275)
 at 
org.netbeans.modules.parsing.spi.indexing.Indexable$MyAccessor.index(Indexable.java:136)[catch]
 at 
org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$Work.doIndex(RepositoryUpdater.java:2750)
 at 
org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$Work.access$800(RepositoryUpdater.java:2154)
 at 
org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$Work$1.run(RepositoryUpdater.java:2636)
 at 
org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$Work$1.run(RepositoryUpdater.java:2634)
 at 
org.netbeans.modules.parsing.impl.indexing.errors.TaskCache.refreshTransaction(TaskCache.java:540)
 at 
org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$Work.index(RepositoryUpdater.java:2634)
 at 
org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$AbstractRootsWork$4.call(RepositoryUpdater.java:5714)
 at 
org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$AbstractRootsWork$4.call(RepositoryUpdater.java:5622)
 at 
org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$4.run(RepositoryUpdater.java:2127)
 at org.openide.util.lookup.Lookups.executeWith(Lookups.java:279) at 
org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater.runInContext(RepositoryUpdater.java:2123)
 at 
org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater.runInContext(RepositoryUpdater.java:2104)
 at 
org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater.access$1500(RepositoryUpdater.java:136)
 at 
org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$AbstractRootsWork.scanSource(RepositoryUpdater.java:5749)
 at 
org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$AbstractRootsWork.scanSources(RepositoryUpdater.java:5419)
 at 
org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$RootsWork.getDone(RepositoryUpdater.java:5038)
 at 
org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$InitialRootsWork.getDone(RepositoryUpdater.java:5821)
 at 
org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$Work.doTheWork(RepositoryUpdater.java:3420)
 at 
org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$Task._run(RepositoryUpdater.java:6183)
 at 
org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$Task.access$4300(RepositoryUpdater.java:5834)
 at 

[jira] [Updated] (NETBEANS-3481) After install Netbeans 11.2

2020-01-14 Thread Jeff Vincent (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-3481?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jeff Vincent updated NETBEANS-3481:
---
Attachment: messages.log

> After install Netbeans 11.2 
> 
>
> Key: NETBEANS-3481
> URL: https://issues.apache.org/jira/browse/NETBEANS-3481
> Project: NetBeans
>  Issue Type: Bug
>  Components: ide - UI
>Affects Versions: 11.2
> Environment: Windows 7 Home Premium 64 bits, Sony Vaio, Intel Core2 
> Duo P7450, 6GB
>Reporter: Daniel Caril Kogevnikovs
>Priority: Major
>  Labels: beginner
> Attachments: messages.log, messages.log, messages.log.1, 
> messages.log.2, metrics, uigestures, updater.log.0
>
>
> Immediately after installation, I created a project, java with Maven / Java 
> Application. Netbeans started updating something and didn't finish, it froze. 
> I canceled the session and without booting Win 7 Home Premium, I opened 
> Netbeans again. The notification tab displays the message "Install nb-javac 
> Library" and then a new message "unexpected Exception", and requests to be 
> sent to Time Netbeans.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
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] [Updated] (NETBEANS-3692) "Java->Java Debugger: New breakpoints suspend: all threads" Doesn't work

2020-01-13 Thread Jeff Vincent (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-3692?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jeff Vincent updated NETBEANS-3692:
---
Description: 
In trying to set conditional breakpoints to debug specific issues with TestNG 
test cases, I am seeing odd results where Netbeans displays odd values for 
variables.  Thinking this was an issue with concurrency in my multi-threaded 
TestNG test class, I hoped to stop all running threads once a breakpoint is hit 
so I changed the option to suspend all threads when a new break point is hit:

       !image-2020-01-13-17-01-16-941.png|width=504,height=442!

However, when a break point is hit, all the threads in the pool remain running 
until they too hit a break point.  The interesting thing to note is that the 
condition specified should only be hit TWICE in the entire test run, yet 
multiple threads seem to hit the break point (I am going to enter this as 
separate issue):

       !image-2020-01-13-17-05-39-566.png|width=547,height=325!

I may be missing something, but my expectation is that all threads should pause 
once the first break point is hit.  Is this the expected behavior?

  was:
In trying to set conditional breakpoints to debug specific issues with TestNG 
test cases, I am seeing odd results where Netbeans displays odd values for 
variables.  Thinking this was an issue with concurrency in my multi-threaded 
TestNG test class, I hoped to stop all running threads once a breakpoint is hit 
so I changed the option to suspend all threads when a new break point is hit:

      !image-2020-01-13-17-01-16-941.png|width=504,height=442!

However, when a break point is hit, all the threads in the pool remain running 
until they too hit a break point.  The interesting thing to note is that the 
condition specified should only be hit TWICE in the entire test run, yet 
multiple threads seem to hit the break point (I am going to enter this as 
separate issue):



      !image-2020-01-13-17-05-39-566.png|width=547,height=325!

I may be missing something, but my expectation is that all threads should pause 
once the first break point is hit.  Is this the not the expected behavior?


> "Java->Java Debugger: New breakpoints suspend:  all threads" Doesn't work
> -
>
> Key: NETBEANS-3692
> URL: https://issues.apache.org/jira/browse/NETBEANS-3692
> Project: NetBeans
>  Issue Type: Bug
>  Components: debugger - Java
>Affects Versions: 11.2
> Environment: Product Version: Apache NetBeans IDE 11.2
> Java: 1.8.0_221; Java HotSpot(TM) 64-Bit Server VM 25.221-b11
> Runtime: Java(TM) SE Runtime Environment 1.8.0_221-b11
> System: Windows 10 version 10.0 running on amd64; Cp1252; en_US (nb)
>Reporter: Jeff Vincent
>Priority: Major
>  Labels: debugging
> Attachments: image-2020-01-13-17-01-16-941.png, 
> image-2020-01-13-17-05-39-566.png
>
>
> In trying to set conditional breakpoints to debug specific issues with TestNG 
> test cases, I am seeing odd results where Netbeans displays odd values for 
> variables.  Thinking this was an issue with concurrency in my multi-threaded 
> TestNG test class, I hoped to stop all running threads once a breakpoint is 
> hit so I changed the option to suspend all threads when a new break point is 
> hit:
>        !image-2020-01-13-17-01-16-941.png|width=504,height=442!
> However, when a break point is hit, all the threads in the pool remain 
> running until they too hit a break point.  The interesting thing to note is 
> that the condition specified should only be hit TWICE in the entire test run, 
> yet multiple threads seem to hit the break point (I am going to enter this as 
> separate issue):
>        !image-2020-01-13-17-05-39-566.png|width=547,height=325!
> I may be missing something, but my expectation is that all threads should 
> pause once the first break point is hit.  Is this the expected behavior?



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
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] [Created] (NETBEANS-3692) "Java->Java Debugger: New breakpoints suspend: all threads" Doesn't work

2020-01-13 Thread Jeff Vincent (Jira)
Jeff Vincent created NETBEANS-3692:
--

 Summary: "Java->Java Debugger: New breakpoints suspend:  all 
threads" Doesn't work
 Key: NETBEANS-3692
 URL: https://issues.apache.org/jira/browse/NETBEANS-3692
 Project: NetBeans
  Issue Type: Bug
  Components: debugger - Java
Affects Versions: 11.2
 Environment: Product Version: Apache NetBeans IDE 11.2
Java: 1.8.0_221; Java HotSpot(TM) 64-Bit Server VM 25.221-b11
Runtime: Java(TM) SE Runtime Environment 1.8.0_221-b11
System: Windows 10 version 10.0 running on amd64; Cp1252; en_US (nb)

Reporter: Jeff Vincent
 Attachments: image-2020-01-13-17-01-16-941.png, 
image-2020-01-13-17-05-39-566.png

In trying to set conditional breakpoints to debug specific issues with TestNG 
test cases, I am seeing odd results where Netbeans displays odd values for 
variables.  Thinking this was an issue with concurrency in my multi-threaded 
TestNG test class, I hoped to stop all running threads once a breakpoint is hit 
so I changed the option to suspend all threads when a new break point is hit:

      !image-2020-01-13-17-01-16-941.png|width=504,height=442!

However, when a break point is hit, all the threads in the pool remain running 
until they too hit a break point.  The interesting thing to note is that the 
condition specified should only be hit TWICE in the entire test run, yet 
multiple threads seem to hit the break point (I am going to enter this as 
separate issue):



      !image-2020-01-13-17-05-39-566.png|width=547,height=325!

I may be missing something, but my expectation is that all threads should pause 
once the first break point is hit.  Is this the not the expected behavior?



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
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