Quantcast
Channel: YouTrackReSharper (RSRP) - Bug and Issue Tracker
Viewing all 106942 articles
Browse latest View live

RSRP-459678: Resharper Build breaks Xamarin's build process for iOS

$
0
0
Reporter Adrian Grigore (http___claimid.com_adriangrigore) Adrian Grigore (http___claimid.com_adriangrigore)
Created Jul 6, 2016 4:25:20 PM
Updated Jul 19, 2016 6:30:09 AM
Resolved Jul 19, 2016 6:30:09 AM
Subsystem Solution builder
Assignee Anton Spilnyy (Anton_Spilnyy)
Priority Show-stopper
State Fixed
Type Bug
Affected versions No Affected versions
Fix version 2016.2
Fixed In Version ReSharper Undefined
VsVersion All Versions
When creating an empty Xamarin.Forms for iOS project and building the project with Resharper Build enabled, I always get the following error:

The application UnifiedSingleViewIphone1 needs to be rebuilt due to an
inconsistency between the connected Mac and the local app. Please rebuild the
application and try


It works fine when I disable resharper build, but it*s very annoying having to disable and enable Resharper build over and over again, depending on the project I am working on.

I am not the only one having this problem with Resharper Build, as you can see here: https://bugzilla.xamarin.com/show_bug.cgi?id=36059#c25

RSRP-459789: ReSharper Build does full re-build when switching between solutions

$
0
0
Reporter Colin Harkness (colin.harkness@icap.com) Colin Harkness (colin.harkness@icap.com)
Created Jul 15, 2016 7:03:40 AM
Updated Jul 19, 2016 6:31:13 AM
Subsystem Solution builder
Assignee Anton Spilnyy (Anton_Spilnyy)
Priority Show-stopper
State Fixed In Branch
Type Usability Problem
Affected versions No Affected versions
Fix version 2016.2
Fixed In Version ReSharper Undefined
VsVersion All Versions
We have big system with > 100 projects. To manage these we have a few *.sln files: one contains pretty much everything, another just the windows services, another the desktop client, etc. There are of course overlapping library projects in each of these solutions. Typically I may have two different solutions open in two Visual Studios. One to debug a service and other to debug the client invoking that service. With ReSharper Build, I am totally unable to do this:

On VS#1 Press F6 to build the service solution.
On VS#2 Press F6 to build the client solution.
On VS#1 Press F5 to debug a service. It builds again, for no good reason. Eventually launches service in debugger.
On Vs#2 Press F5 to debug the client. It tires to build again, but since some of the DLLs are locked by the now running service, it can't. I'm stuck.

The only solution is to turn off ReSharper Build and use MSBuild again. Which gets it right – projects that were built using one VS do not need rebuilt when using another VS. I am using the 2016.2 EAP 8. I think it was usable in earlier versions.

Somehow the ReSharper Build dependency information gets lost when switching between VS instances.

RSRP-296925: Renaming of extension method should not transform its invocations to plain static syntax (unless it is strictly required to resolve a conflict)

$
0
0
Reporter Vladimir Reshetnikov (nikov) Vladimir Reshetnikov (nikov)
Created Apr 22, 2012 8:19:18 PM
Updated Jul 19, 2016 12:00:12 PM
Subsystem Refactorings
Assignee Alexander Shvedov (shvedov)
Priority Major
State Open
Type Bug
Affected versions No Affected versions
Fix version No Fix versions
Fixed In Version ReSharper Undefined
VsVersion All Versions
using System;

static class Extensions
{
public static string Foo(this object s) // Rename Foo to ToLower
{
throw new NotImplementedException();
}

public static string ToLower(this string s)
{
throw new NotImplementedException();
}
}


class Program
{
static void Main()
{
string s = "ABC".Foo();
}
}

Actual result:

using System;

static class Extensions
{
public static string ToLower(this object s)
{
throw new NotImplementedException();
}

public static string ToLower(this string s)
{
throw new NotImplementedException();
}
}


class Program
{
static void Main()
{
string s = Extensions.ToLower((object) "ABC"); // Plain static syntax
}
}

Expected:

using System;

static class Extensions
{
public static string ToLower(this object s)
{
throw new NotImplementedException();
}

public static string ToLower(this string s)
{
throw new NotImplementedException();
}
}


class Program
{
static void Main()
{
string s = ((object) "ABC").ToLower(); // Extension syntax
}
}

RSRP-459656: Index was outside the bounds of the array.

$
0
0
Reporter ReSharper anonymous (resharper) ReSharper anonymous (resharper)
Created Jul 5, 2016 5:21:16 PM
Updated Jul 19, 2016 12:01:13 PM
Resolved Jul 19, 2016 12:01:13 PM
Subsystem Typing Assistance
Assignee Slava Tutushkin (slava.tutushkin)
Priority Show-stopper
State Can't Reproduce
Type Exception
Affected versions No Affected versions
Fix version No Fix versions
Fixed In Version ReSharper Undefined
VsVersion All Versions
ReSharperPlatformVs12 Wave 05 — JetBrains ReSharper Ultimate 2016.1.1 Build 105.0.20160504.101434

JetBrains ReSharper 2016.1.1 Build 2016.1.20160504.103028

SccRevisionShell = <there are no packages matching the criteria>
HostProductInfo = JetBrains ReSharper Ultimate 2016.1.1 Build 105.0.20160504.101434
SubProducts.0 = JetBrains ReSharper 2016.1.1 Build 2016.1.20160504.103028
ManagedThreadName = JetPool (S) Regular thread #1
ManagedThreadName = JetPool (S) Regular thread #6
SccRevisionEnv = Platform\Core\Shell:
    git::refs/heads/wave05::a3046abadafd314217604b7e89619bec0e5d7a6a


Platform\VisualStudio:
    git::refs/heads/wave05::a50effc349e1cb07500e8e991ec2677cfb6a111c

VsVersion = 12.0.40629.0

Index was outside the bounds of the array.

— EXCEPTION #1/2 [IndexOutOfRangeException]
Message = “Index was outside the bounds of the array.”
ExceptionPath = Root.InnerException
ClassName = System.IndexOutOfRangeException
HResult = COR_E_INDEXOUTOFRANGE=80131508
Source = JetBrains.ReSharper.Feature.Services
StackTraceString = “
  at JetBrains.ReSharper.Feature.Services.CodeCompletion.CombinedLookupItem.CalculateScore(String filter, String name, IEnumerable`1 matches, Boolean lowerHumpsAcc, Boolean ignoreTypos)
     at JetBrains.ReSharper.Feature.Services.CodeCompletion.CombinedLookupItem.Match(PrefixMatcher prefixMatcher, ITextControl textControl)
     at JetBrains.ReSharper.Feature.Services.CodeCompletion.Lookup.LookupBase.<>c__DisplayClass14.<EvaluateCurrentItems>b__12(ILookupItem item, PrefixMatcher p, ITextControl tc)
     at JetBrains.ReSharper.Feature.Services.CodeCompletion.Infrastructure.LookupItems.Impl.FilteredLookupItems.HasContinuation(Char c)
     at JetBrains.ReSharper.Feature.Services.CodeCompletion.Lookup.LookupActions.TypingHandler.Type(ITypingContext typingContext)
     at JetBrains.TextControl.Impl.TextControlTypingHandlers.TypingContext.CallNext()
     at JetBrains.ReSharper.Feature.Services.Xml.TypingAssist.ChangedTagNameTracker.HandleAction(ITextControl textControl, Action action, Func`2 selRangeConverter, Boolean shouldReCheckAfterNoMarkers)
     at JetBrains.ReSharper.Feature.Services.Xml.TypingAssist.ChangedTagNameTracker.Type(ITypingContext typingContext)
     at JetBrains.TextControl.Impl.TextControlTypingHandlers.TypingContext.CallNext()
     at JetBrains.ReSharper.Feature.Services.Html.TypingAssist.ChangedTagNameTracker.HandleAction(ITextControl textControl, Action action, Func`2 selRangeConverter, Boolean shouldReCheckAfterNoMarkers, Boolean checkAvailability)
     at JetBrains.ReSharper.Feature.Services.Html.TypingAssist.ChangedTagNameTracker.Type(ITypingContext typingContext)
     at JetBrains.TextControl.Impl.TextControlTypingHandlers.TypingContext.CallNext()
     at JetBrains.ReSharper.Feature.Services.CodeCompletion.NextTypingHandler.Type(ITypingContext typingContext)
     at JetBrains.TextControl.Impl.TextControlTypingHandlers.TypingContext.CallNext()
     at JetBrains.ReSharper.Feature.Services.ParameterInfo.ParameterInfoPopupController.TypingHandler.Type(ITypingContext typingContext)
     at JetBrains.TextControl.Impl.TextControlTypingHandlers.TypingContext.CallNext()
     at JetBrains.ReSharper.Features.Intellisense.CodeCompletion.Sessions.CodeCompletionSessionManager.Type(ITypingContext typingContext)
     at JetBrains.TextControl.Impl.TextControlTypingHandlers.TypingContext.CallNext()
     at JetBrains.ReSharper.Features.Environment.Tips.TipsManagerTypingHandler.<>c__DisplayClass2.<.ctor>b__0(ITypingContext context)
     at JetBrains.TextControl.Impl.TextControlTypingHandlers.TypingContext.CallNext()
     at JetBrains.ReSharper.Feature.Services.TypingAssist.SkippingTypingAssist.Type(ITypingContext typingContext)
     at JetBrains.TextControl.Impl.TextControlTypingHandlers.TypingContext.CallNext()
     at JetBrains.TextControl.Impl.TextControlTypingHandlers.TypingContext.CallFirst(Lifetime lifetime, TypingHandler[] handlers, ITextControl textControl, Char ch, IShellLocks locks)
     at JetBrains.TextControl.Impl.TextControlTypingHandlers.<>c__DisplayClass7.<Type>b__5(Lifetime lifetime)
     at JetBrains.DataFlow.Lifetimes.Using(Action`1 λ)
     at JetBrains.TextControl.Impl.TextControlTypingHandlers.Type(ITextControl textControl, Char c)
     at JetBrains.VsIntegration.TextControl.VsTextControlOleCommandTarget.<>c__DisplayClass15.<TryDelegateToTypingHandlers_Typing>b__13()
     at JetBrains.VsIntegration.TextControl.VsTextControlOleCommandTarget.WithRegisteredDelegateBackToVsHandler(String sCommandName, Action`1 FExecDelegateBackToVs, Action FRun)


— Outer —

— EXCEPTION #2/2 [LoggerException]
Message = “Index was outside the bounds of the array.”
ExceptionPath = Root
ClassName = JetBrains.Util.LoggerException
Data.LastExtension = cs
Data.SccRevisionShell = “<there are no packages matching the criteria>”
Data.HostProductInfo = “JetBrains ReSharper Ultimate 2016.1.1 Build 105.0.20160504.101434”
Data.SubProducts.#0 = “JetBrains ReSharper 2016.1.1 Build 2016.1.20160504.103028”
Data.ManagedThreadName = “JetPool (S) Regular thread #1”
Data.SccRevisionEnv = “
Platform\Core\Shell:
    git::refs/heads/wave05::a3046abadafd314217604b7e89619bec0e5d7a6a


Platform\VisualStudio:
    git::refs/heads/wave05::a50effc349e1cb07500e8e991ec2677cfb6a111c

Data.VsVersion = 12.0.40629.0
InnerException = “Exception #1 at Root.InnerException”
HResult = COR_E_APPLICATION=80131600
StackTraceString = “
  at JetBrains.VsIntegration.TextControl.VsTextControlOleCommandTarget.WithRegisteredDelegateBackToVsHandler(String sCommandName, Action`1 FExecDelegateBackToVs, Action FRun)
     at JetBrains.VsIntegration.TextControl.VsTextControlOleCommandTarget.<>c__DisplayClass15.<TryDelegateToTypingHandlers_Typing>b__14()
     at JetBrains.DocumentModel.Impl.DocumentBase.ExpectCallbacksFromUnderlyingStore(Action F)
     at JetBrains.VsIntegration.TextControl.VsTextControlOleCommandTarget.TryDelegateToTypingHandlers_Typing(IntPtr pvaIn, Action`1 FExecDelegateBackToVs)
     at JetBrains.VsIntegration.TextControl.VsTextControlOleCommandTarget.TryDelegateToTypingHandlers(Boolean bIsTyping, CommandID commandid, IntPtr pvaIn, Action`1 FExecDelegateBackToVsClosed)
     at JetBrains.VsIntegration.TextControl.VsTextControlOleCommandTarget.<>c__DisplayClass1c.<Microsoft.VisualStudio.OLE.Interop.IOleCommandTarget.Exec>b__1a()
     at JetBrains.Threading.ReentrancyGuard.Execute(String name, Action action)
     at JetBrains.Threading.ReentrancyGuard.TryExecute(String name, Action action)
     at JetBrains.VsIntegration.TextControl.VsTextControlOleCommandTarget.Microsoft.VisualStudio.OLE.Interop.IOleCommandTarget.Exec(Guid& pguidCmdGroupRef, UInt32 nCmdID, UInt32 nCmdexecopt, IntPtr pvaIn, IntPtr pvaOut)
     at Microsoft.VisualStudio.Editor.Implementation.CommandChainNode.InnerExec(Guid& pguidCmdGroup, UInt32 nCmdID, UInt32 nCmdexecopt, IntPtr pvaIn, IntPtr pvaOut)
     at Microsoft.VisualStudio.Editor.Implementation.SimpleTextViewWindow.Exec(Guid& pguidCmdGroup, UInt32 nCmdID, UInt32 nCmdexecopt, IntPtr pvaIn, IntPtr pvaOut)
     at Microsoft.VisualStudio.Editor.Implementation.VsKeyboardFilter.SendCommand(Guid cmdGroup, UInt32 cmdID, Object inParam)
     at Microsoft.VisualStudio.Editor.Implementation.VsKeyboardFilter.TextInput(TextCompositionEventArgs args)
     at Microsoft.VisualStudio.Text.Editor.Implementation.KeyProcessorDispatcher.<DispatchTextInputEvents>b__0(KeyProcessor p, TextCompositionEventArgs args)
     at Microsoft.VisualStudio.Text.Editor.Implementation.KeyProcessorDispatcher.<>c__DisplayClass1e`1.<Dispatch>b__1a()
     at Microsoft.VisualStudio.Text.Utilities.GuardedOperations.CallExtensionPoint(Object errorSource, Action call)
     at Microsoft.VisualStudio.Text.Editor.Implementation.KeyProcessorDispatcher.Dispatch[T](Action`2 action, T args)
     at Microsoft.VisualStudio.Text.Editor.Implementation.KeyProcessorDispatcher.<>c__DisplayClass18.<MakeHandler>b__17(Object sender, TextCompositionEventArgs args)
     at System.Windows.Input.TextCompositionEventArgs.InvokeEventHandler(Delegate genericHandler, Object genericTarget)
     at System.Windows.RoutedEventArgs.InvokeHandler(Delegate handler, Object target)
     at System.Windows.RoutedEventHandlerInfo.InvokeHandler(Object target, RoutedEventArgs routedEventArgs)
     at System.Windows.EventRoute.InvokeHandlersImpl(Object source, RoutedEventArgs args, Boolean reRaised)
     at System.Windows.UIElement.RaiseEventImpl(DependencyObject sender, RoutedEventArgs args)
     at System.Windows.UIElement.RaiseTrustedEvent(RoutedEventArgs args)
     at System.Windows.UIElement.RaiseEvent(RoutedEventArgs args, Boolean trusted)
     at System.Windows.Input.InputManager.ProcessStagingArea()
     at System.Windows.Input.InputManager.ProcessInput(InputEventArgs input)
     at System.Windows.Input.TextCompositionManager.UnsafeCompleteComposition(TextComposition composition)
     at System.Windows.Input.TextCompositionManager.PostProcessInput(Object sender, ProcessInputEventArgs e)
     at System.Windows.Input.InputManager.RaiseProcessInputEventHandlers(ProcessInputEventHandler postProcessInput, ProcessInputEventArgs processInputEventArgs)
     at System.Windows.Input.InputManager.ProcessStagingArea()
     at System.Windows.Input.InputManager.ProcessInput(InputEventArgs input)
     at System.Windows.Input.TextCompositionManager.UnsafeStartComposition(TextComposition composition)
     at System.Windows.Input.TextCompositionManager.PostProcessInput(Object sender, ProcessInputEventArgs e)
     at System.Windows.Input.InputManager.RaiseProcessInputEventHandlers(ProcessInputEventHandler postProcessInput, ProcessInputEventArgs processInputEventArgs)
     at System.Windows.Input.InputManager.ProcessStagingArea()
     at System.Windows.Input.InputManager.ProcessInput(InputEventArgs input)
     at System.Windows.Input.InputProviderSite.ReportInput(InputReport inputReport)
     at System.Windows.Interop.HwndKeyboardInputProvider.ProcessTextInputAction(IntPtr hwnd, WindowMessage msg, IntPtr wParam, IntPtr lParam, Boolean& handled)
     at System.Windows.Interop.HwndSource.OnPreprocessMessage(Object param)
     at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs)
     at System.Windows.Threading.ExceptionWrapper.TryCatchWhen(Object source, Delegate callback, Object args, Int32 numArgs, Delegate catchHandler)
     at System.Windows.Threading.Dispatcher.LegacyInvokeImpl(DispatcherPriority priority, TimeSpan timeout, Delegate method, Object args, Int32 numArgs)
     at System.Windows.Threading.Dispatcher.Invoke(DispatcherPriority priority, Delegate method, Object arg)
     at System.Windows.Interop.HwndSource.OnPreprocessMessageThunk(MSG& msg, Boolean& handled)
     at System.Windows.Interop.HwndSource.WeakEventPreprocessMessage.OnPreprocessMessage(MSG& msg, Boolean& handled)
     at System.Windows.Interop.ComponentDispatcherThread.RaiseThreadMessage(MSG& msg)
     at Microsoft.VisualStudio.Platform.WindowManagement.WindowManagerService.PreTranslateInput(MSG[] lpmsg, Boolean handled)

RSRP-459808: Provide QF for use of an uninitialized variable in a lambda in the variable own initializer

$
0
0
Reporter Vladimir Reshetnikov (nikov) Vladimir Reshetnikov (nikov)
Created Jul 15, 2016 4:52:58 PM
Updated Jul 19, 2016 12:37:54 PM
Subsystem Code Analysis - C#
Assignee Alexander Shvedov (shvedov)
Priority Normal
State Fixed In Branch
Type Feature
Affected versions No Affected versions
Fix version No Fix versions
Fixed In Version ReSharper Undefined
VsVersion All Versions
Consider the following code:

var notifyIcon = new NotifyIcon
{
BalloonTipIcon = ToolTipIcon.Info,
Visible = true,
ContextMenu = new ContextMenu(new[]
{
new MenuItem("Exit", (o, args) =>
{
notifyIcon.Dispose(); // Error: Use of unassigned local variable
Application.Exit();
})
})
};

The C# compiler rightfully gives an error for the use of the notifyIcon variable in its own initializer – it does not have a way to know that any of the constructor invocations new ContextMenu(...), new MenuItem(...), new NotifyIcon(...) or the property ContextMenu setter does not invoke this lambda before the variable notifyIcon is actually initialized. Also, the compiler does not allow to refer to an implicitly-typed (var) variable in its initializer regardless of its definitely-assigned state. I have to do some tricks to make the compiler happy. I would like ReSharper to suggest a QuickFix that does those tricks for me and rewrites this code as follows:

NotifyIcon notifyIcon = null; // Split declaration from initialization, use explicit type and add dummy `null` initializer to make the compiler happy
notifyIcon = new NotifyIcon
{
BalloonTipIcon = ToolTipIcon.Info,
Visible = true,
ContextMenu = new ContextMenu(new[]
{
new MenuItem("Exit", (o, args) =>
{
notifyIcon.Dispose(); // OK
Application.Exit();
})
})
};

RSRP-459853: About dialog says "update available" but installer says "all products are up to date"

$
0
0
Reporter Arsène von Wyss (avonwyss) Arsène von Wyss (avonwyss)
Created Jul 19, 2016 11:30:27 AM
Updated Jul 19, 2016 12:57:43 PM
Subsystem Installation
Assignee Sergey Shkredov (serjic.shkredov)
Priority Normal
State Submitted
Type Bug
Affected versions 2016.1.2
Fix version No Fix versions
Fixed In Version ReSharper Undefined
VsVersion All Versions

RSRP-446815: Number of tasks in Short Tasks queue is 201118

$
0
0
Reporter ReSharper anonymous (resharper) ReSharper anonymous (resharper)
Created Jul 12, 2015 1:11:13 PM
Updated Jul 19, 2016 1:07:23 PM
Resolved Jul 19, 2016 1:07:23 PM
Subsystem No Subsystem
Assignee Evgeniy Stepanov (Evgeniy_Stepanov)
Priority Normal
State Duplicate
Type Exception
Affected versions No Affected versions
Fix version No Fix versions
Fixed In Version ReSharper Undefined
VsVersion All Versions
ReSharperPlatformVs14 Wave 03 — JetBrains ReSharper Ultimate 2015.2 EAP 3 Build 103.0.20150708.201554-EAP3

JetBrains ReSharper 9.2 EAP 3 Build 9.2.20150708.211839-EAP3

Number of tasks in Short Tasks queue is 201118

— EXCEPTION #1/1 [LoggerException]
Message = “Number of tasks in Short Tasks queue is 201118”
ExceptionPath = Root
ClassName = JetBrains.Util.LoggerException
Data.LastExtension = cs
Data.HostProductInfo = “JetBrains ReSharper Ultimate 2015.2 EAP 3 Build 103.0.20150708.201554-EAP3”
Data.SubProducts.#0 = “JetBrains ReSharper 9.2 EAP 3 Build 9.2.20150708.211839-EAP3”
Data.ManagedThreadName = “JetPool (S) Regular thread #4”
Data.PlatformSccRevision = CompiledWithoutBuildServer
Data.ProductSccRevision = CompiledWithoutBuildServer
Data.VsVersion = 14.0.22823.1
HResult = COR_E_APPLICATION=80131600
StackTraceString = “
  at JetBrains.Application.Threading.Tasks.Scheduler.ThreadManagementUnit.AddTask(Task task)
     at JetBrains.Application.Threading.Tasks.Scheduler.JetScheduler.QueueTask(Task task)
     at System.Threading.Tasks.Task.ScheduleAndStart(Boolean needsProtection)
     at System.Threading.Tasks.Task.Start(TaskScheduler scheduler)
     at JetBrains.Application.Threading.Tasks.TaskEx.Start(Task task, ITaskHost host, Boolean sync)
     at JetBrains.Application.Threading.Tasks.TaskBarrier.EnqueueTask(Task task)
     at JetBrains.Application.Threading.Tasks.TaskBarrier.EnqueueJob(Action action)
     at JetBrains.Application.Threading.Tasks.LimitedNumberOfConcurrentTasksBarrier.ScheduleTasks()
     at JetBrains.ReSharper.Psi.Impl.Search.Operations.Impl.FindInheritorsOperation`1.FindInheritors(ITypeElement baseType, LimitedNumberOfConcurrentTasksBarrier fibers)
     at JetBrains.ReSharper.Psi.Impl.Search.Operations.Impl.FindInheritorsOperation`1.Find()
     at JetBrains.ReSharper.Psi.Impl.Search.Operations.State.Run()
     at JetBrains.ReSharper.Psi.Impl.Search.Operations.FinderOperation`1.DoWork()
     at JetBrains.ReSharper.Psi.Impl.Search.Operations.FinderOperation`1.Start()
     at JetBrains.ReSharper.Psi.Impl.Search.Operations.Impl.FindImplementingMembersOperation`1.FindImplementingMembersInSubclasses(ITypeElement type, OverridableMemberInstance superMember, InheritanceKind foundMemberKind)
     at JetBrains.ReSharper.Psi.Impl.Search.Operations.Impl.FindImplementingMembersOperation`1.FindImplementingMembersInClass(ITypeElement type, OverridableMemberInstance superMember, InheritanceKind foundMemberKind)
     at JetBrains.ReSharper.Psi.Impl.Search.Operations.Impl.FindImplementingMembersOperation`1.<>c__DisplayClass14.<FindImplementingMembersInSubclasses>b__11()
     at JetBrains.Application.Threading.Tasks.TaskHost.<>c__DisplayClasse.<Create>b__a(Object state)
     at System.Threading.Tasks.Task.InnerInvoke()
     at System.Threading.Tasks.Task.Execute()
     at System.Threading.Tasks.Task.ExecutionContextCallback(Object obj)
     at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
     at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
     at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot)
     at System.Threading.Tasks.Task.ExecuteEntry(Boolean bPreventDoubleExecution)
     at System.Threading.Tasks.TaskScheduler.TryExecuteTask(Task task)
     at JetBrains.Application.Threading.Tasks.Scheduler.JetScheduler.TryExecuteTaskInline(Task task, Boolean taskWasPreviouslyQueued)
     at System.Threading.Tasks.TaskScheduler.TryRunInline(Task task, Boolean taskWasPreviouslyQueued)
     at System.Threading.Tasks.Task.WrappedTryRunInline()
     at System.Threading.Tasks.Task.WaitAll(Task[] tasks, Int32 millisecondsTimeout, CancellationToken cancellationToken)
     at JetBrains.Application.Threading.Tasks.TaskBarrier.DisposeUnmanagedResources()
     at JetBrains.Util.SafeDisposable.DisposeInternal()
     at JetBrains.Util.SafeDisposable.Dispose()
     at JetBrains.ReSharper.Psi.Impl.Search.Operations.Impl.FindImplementingMembersOperation`1.FindImplementation()
     at JetBrains.ReSharper.Psi.Impl.Search.Operations.State.Run()
     at JetBrains.ReSharper.Psi.Impl.Search.Operations.FinderOperation`1.DoWork()
     at JetBrains.ReSharper.Psi.Impl.Search.Operations.FinderOperation`1.Start()
     at JetBrains.ReSharper.Psi.Impl.Search.Operations.FinderOperationCollection`2.Start()
     at JetBrains.ReSharper.Psi.Impl.Search.Operations.Impl.FindReferencesOperation`1.ProcessFindImplementatorsUsages()
     at JetBrains.ReSharper.Psi.Impl.Search.Operations.State.Run()
     at JetBrains.ReSharper.Psi.Impl.Search.Operations.FinderOperation`1.DoWork()
     at JetBrains.ReSharper.Psi.Impl.Search.Operations.FinderOperation`1.Start()
     at JetBrains.ReSharper.Psi.Impl.Search.Operations.Impl.FindOperation`1.SearchReferences()
     at JetBrains.ReSharper.Psi.Impl.Search.Operations.State.Run()
     at JetBrains.ReSharper.Psi.Impl.Search.Operations.FinderOperation`1.DoWork()
     at JetBrains.ReSharper.Psi.Impl.Search.Operations.FinderOperation`1.Start()
     at JetBrains.ReSharper.Psi.Impl.Search.Operations.FinderOperationManager.ActivityRun(FinderOperationRequest request)
     at JetBrains.ReSharper.Psi.Impl.Search.Operations.FinderOperationManager.<>c__DisplayClass8.<AfterAllDocumentsAreCommited>b__2()
     at JetBrains.Application.InterruptableReadActivityThe.Work()
     at JetBrains.Application.InterruptableReadActivity.DoWork()
     at JetBrains.Application.InterruptableReadActivity.WorkerThreadProc()
     at JetBrains.Application.Threading.Tasks.TaskHost.<>c__DisplayClasse.<Create>b__a(Object state)
     at System.Threading.Tasks.Task.InnerInvoke()
     at System.Threading.Tasks.Task.Execute()
     at System.Threading.Tasks.Task.ExecutionContextCallback(Object obj)
     at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
     at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
     at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot)
     at System.Threading.Tasks.Task.ExecuteEntry(Boolean bPreventDoubleExecution)
     at System.Threading.Tasks.TaskScheduler.TryExecuteTask(Task task)
     at JetBrains.Application.Threading.Tasks.Scheduler.JetSchedulerThread.ThreadPoolProc()
     at System.Threading.ThreadHelper.ThreadStart_Context(Object state)
     at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
     at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
     at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
     at System.Threading.ThreadHelper.ThreadStart()

RSRP-446816: Number of tasks in Short Tasks queue is 200002

$
0
0
Reporter ReSharper anonymous (resharper) ReSharper anonymous (resharper)
Created Jul 12, 2015 1:11:56 PM
Updated Jul 19, 2016 1:07:23 PM
Resolved Jul 19, 2016 1:07:23 PM
Subsystem No Subsystem
Assignee Evgeniy Stepanov (Evgeniy_Stepanov)
Priority Normal
State Duplicate
Type Exception
Affected versions No Affected versions
Fix version No Fix versions
Fixed In Version ReSharper Undefined
VsVersion All Versions
ReSharperPlatformVs14 Wave 03 — JetBrains ReSharper Ultimate 2015.2 EAP 3 Build 103.0.20150708.201554-EAP3

JetBrains ReSharper 9.2 EAP 3 Build 9.2.20150708.211839-EAP3

Number of tasks in Short Tasks queue is 200002

— EXCEPTION #1/1 [LoggerException]
Message = “Number of tasks in Short Tasks queue is 200002”
ExceptionPath = Root
ClassName = JetBrains.Util.LoggerException
Data.LastExtension = cs
Data.HostProductInfo = “JetBrains ReSharper Ultimate 2015.2 EAP 3 Build 103.0.20150708.201554-EAP3”
Data.SubProducts.#0 = “JetBrains ReSharper 9.2 EAP 3 Build 9.2.20150708.211839-EAP3”
Data.ManagedThreadName = “JetPool (S) Regular thread #8”
Data.PlatformSccRevision = CompiledWithoutBuildServer
Data.ProductSccRevision = CompiledWithoutBuildServer
Data.VsVersion = 14.0.22823.1
HResult = COR_E_APPLICATION=80131600
StackTraceString = “
  at JetBrains.Application.Threading.Tasks.Scheduler.ThreadManagementUnit.AddTask(Task task)
     at JetBrains.Application.Threading.Tasks.Scheduler.JetScheduler.QueueTask(Task task)
     at System.Threading.Tasks.Task.ScheduleAndStart(Boolean needsProtection)
     at System.Threading.Tasks.Task.Start(TaskScheduler scheduler)
     at JetBrains.Application.Threading.Tasks.TaskEx.Start(Task task, ITaskHost host, Boolean sync)
     at JetBrains.Application.Threading.Tasks.TaskBarrier.EnqueueTask(Task task)
     at JetBrains.Application.Threading.Tasks.TaskBarrier.EnqueueJob(Action action)
     at JetBrains.ReSharper.Psi.Impl.Search.Operations.Impl.FindImplementingMembersOperation`1.FindImplementingMembersInSubclasses(ITypeElement type, OverridableMemberInstance superMember, InheritanceKind foundMemberKind)
     at JetBrains.ReSharper.Psi.Impl.Search.Operations.Impl.FindImplementingMembersOperation`1.FindImplementingMembersInClass(ITypeElement type, OverridableMemberInstance superMember, InheritanceKind foundMemberKind)
     at JetBrains.ReSharper.Psi.Impl.Search.Operations.Impl.FindImplementingMembersOperation`1.<>c__DisplayClass14.<FindImplementingMembersInSubclasses>b__11()
     at JetBrains.Application.Threading.Tasks.TaskHost.<>c__DisplayClasse.<Create>b__a(Object state)
     at System.Threading.Tasks.Task.InnerInvoke()
     at System.Threading.Tasks.Task.Execute()
     at System.Threading.Tasks.Task.ExecutionContextCallback(Object obj)
     at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
     at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
     at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot)
     at System.Threading.Tasks.Task.ExecuteEntry(Boolean bPreventDoubleExecution)
     at System.Threading.Tasks.TaskScheduler.TryExecuteTask(Task task)
     at JetBrains.Application.Threading.Tasks.Scheduler.JetSchedulerThread.ThreadPoolProc()
     at System.Threading.ThreadHelper.ThreadStart_Context(Object state)
     at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
     at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
     at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
     at System.Threading.ThreadHelper.ThreadStart()

RSRP-449910: Number of tasks in Short Tasks queue is 207851

$
0
0
Reporter ReSharper anonymous (resharper) ReSharper anonymous (resharper)
Created Oct 21, 2015 8:04:55 PM
Updated Jul 19, 2016 1:07:23 PM
Resolved Jul 19, 2016 1:07:23 PM
Subsystem No Subsystem
Assignee Evgeniy Stepanov (Evgeniy_Stepanov)
Priority Normal
State Duplicate
Type Exception
Affected versions 10.0
Fix version No Fix versions
Fixed In Version ReSharper Undefined
VsVersion All Versions
ReSharperPlatformVs14 Wave 04



Number of tasks in Short Tasks queue is 208041

— EXCEPTION #1/1 [LoggerException]
Message = “Number of tasks in Short Tasks queue is 208041”
ExceptionPath = Root
ClassName = JetBrains.Util.LoggerException
Data.HostProductInfo = “JetBrains ReSharper Ultimate 10 EAP 4 Build 104.0.20151009.190534-EAP4”
Data.SubProducts.#0 = “JetBrains ReSharper 10 EAP 4 Build 10.0.20151009.220916-EAP4”
Data.LastExtension = cs
Data.VsVersion = 14.0.23107.0
Data.ProductSccRevision = CompiledWithoutBuildServer
Data.PlatformSccRevision = CompiledWithoutBuildServer
Data.ManagedThreadName = “JetPool (S) Regular thread #1”
HResult = COR_E_APPLICATION=80131600
StackTraceString = “
  at JetBrains.Application.Threading.Tasks.Scheduler.ThreadManagementUnit.AddTask(Task task)
     at JetBrains.Application.Threading.Tasks.Scheduler.JetScheduler.QueueTask(Task task)
     at System.Threading.Tasks.Task.ScheduleAndStart(Boolean needsProtection)
     at System.Threading.Tasks.Task.Start(TaskScheduler scheduler)
     at JetBrains.Application.Threading.Tasks.TaskEx.Started[TTask](TTask task, TaskScheduler scheduler, Boolean sync)
     at JetBrains.Application.Threading.Tasks.TaskHostEx.RunSafe(ITaskHost tasks, Lifetime lifetime, Action action, TaskPriority priority)
     at JetBrains.Application.InterruptableReadActivity.DoStart()
     at JetBrains.ReSharper.Feature.Services.Tree.TreePsiBrowser.TreeGridBrowserPanelPsi.StartBackgroundUpdate()
     at JetBrains.ReSharper.Psi.Impl.AsyncCommitServiceImpl.<>c__DisplayClass9.<Commit>b__4()
     at JetBrains.ReSharper.Psi.Files.PsiFiles.CommitAllDocumentsAsync(Action success, Action interrupted)
     at JetBrains.ReSharper.Psi.Impl.AsyncCommitServiceImpl.Commit(HashSet`1 clients)
     at JetBrains.ReSharper.Psi.Impl.AsyncCommitServiceImpl.<OnAlarm>b__3()
     at JetBrains.Application.IShellLocksEx.TryExecuteWithReadLock(IShellLocks thіs, Action F)
     at JetBrains.ReSharper.Psi.Impl.AsyncCommitServiceImpl.OnAlarm()
     at JetBrains.Util.Concurrency.GroupingEventHostEx.<>c__DisplayClass2.<>c__DisplayClass4.<QueueAtShort>b__1()
     at JetBrains.Threading.GroupingEvent.Execute()
     at JetBrains.Threading.GroupingEventHost.ExecuteExpiredEvents()
     at JetBrains.Threading.GroupingEventHost.<OnClockTimerTick>b__4()
     at JetBrains.Threading.ReentrancyGuard.Execute(String name, Action action)
     at JetBrains.Threading.ReentrancyGuard.ExecuteOrQueue(String name, Action action, TaskPriority priority)
     at JetBrains.Threading.GroupingEventHost.OnClockTimerTick()
     at JetBrains.Threading.GroupingEventHost.ClockTimer.OnTimerTick(Object sender, EventArgs e)
     at System.Windows.Forms.Timer.OnTick(EventArgs e)
     at System.Windows.Forms.Timer.TimerNativeWindow.WndProc(Message& m)
     at System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)

RSRP-449911: Number of tasks in Short Tasks queue is 207738

$
0
0
Reporter ReSharper anonymous (resharper) ReSharper anonymous (resharper)
Created Oct 21, 2015 8:05:07 PM
Updated Jul 19, 2016 1:07:23 PM
Resolved Jul 19, 2016 1:07:23 PM
Subsystem IntelliSense (Code Completion)
Assignee Andrew Serebryansky (marcus23)
Priority Normal
State Duplicate
Type Exception
Affected versions 10.0
Fix version No Fix versions
Fixed In Version ReSharper Undefined
VsVersion All Versions
ReSharperPlatformVs14 Wave 04



Number of tasks in Short Tasks queue is 208012

— EXCEPTION #1/1 [LoggerException]
Message = “Number of tasks in Short Tasks queue is 208012”
ExceptionPath = Root
ClassName = JetBrains.Util.LoggerException
Data.HostProductInfo = “JetBrains ReSharper Ultimate 10 EAP 4 Build 104.0.20151009.190534-EAP4”
Data.SubProducts.#0 = “JetBrains ReSharper 10 EAP 4 Build 10.0.20151009.220916-EAP4”
Data.LastExtension = cs
Data.VsVersion = 14.0.23107.0
Data.ProductSccRevision = CompiledWithoutBuildServer
Data.PlatformSccRevision = CompiledWithoutBuildServer
Data.ManagedThreadName = “JetPool (S) Regular thread #1”
HResult = COR_E_APPLICATION=80131600
StackTraceString = “
  at JetBrains.Application.Threading.Tasks.Scheduler.ThreadManagementUnit.AddTask(Task task)
     at JetBrains.Application.Threading.Tasks.Scheduler.JetScheduler.QueueTask(Task task)
     at System.Threading.Tasks.Task.ScheduleAndStart(Boolean needsProtection)
     at System.Threading.Tasks.Task.Start(TaskScheduler scheduler)
     at JetBrains.Application.Threading.Tasks.TaskEx.Started[TTask](TTask task, TaskScheduler scheduler, Boolean sync)
     at JetBrains.Application.Threading.Tasks.TaskHostEx.RunSafe(ITaskHost tasks, Lifetime lifetime, Action action, TaskPriority priority)
     at JetBrains.Application.InterruptableReadActivity.DoStart()
     at JetBrains.ReSharper.Feature.Services.CodeCompletion.ImportCompletionCache.StartWarmUp(Lifetime lifetime, ISymbolCache symbolCache, IPsiSourceFile sourceFile)
     at JetBrains.ReSharper.Feature.Services.CodeCompletion.ImportCompletionCacheHelper.OnTextControlChanged(Lifetime lifetime, ITextControl textControl)
     at JetBrains.ReSharper.Feature.Services.CodeCompletion.ImportCompletionCacheHelper.<>c__DisplayClass2.<.ctor>b__0(PropertyChangedEventArgs`1 args)
     at JetBrains.DataFlow.Signal`1.NotifySinks(TValue payload)
     at JetBrains.DataFlow.Signal`1.Fire(TValue value, Object cookie)
     at JetBrains.DataFlow.Property`1.FireChange(TValue old, TValue new, Object cookie)
     at JetBrains.DataFlow.Property`1.SetValue(TValue value, Object cookie)
     at JetBrains.TextControl.Impl.TextControlProperties.<InitFocusAndVisible>b__3()
     at JetBrains.DataFlow.ISignalEx.<>c__DisplayClass1`1.<Advise>b__0(TValue value)
     at JetBrains.DataFlow.Signal`1.NotifySinks(TValue payload)
     at JetBrains.DataFlow.Signal`1.Fire(TValue value, Object cookie)
     at JetBrains.DataFlow.CollectionEvents`1.FireAddRemove(AddRemove action, TValue value, Object cookie)
     at JetBrains.DataFlow.CollectionEvents`1.InternalAdd(TValue value, Object cookie)
     at JetBrains.DataFlow.CollectionEvents`1.Add(TValue value, Object cookie)
     at JetBrains.DataFlow.ICollectionEventsEx.Add[TValue](ICollectionEvents`1 thіs, Lifetime lifetime, TValue value, Object cookie)
     at JetBrains.TextControl.Impl.TextControlProperties.<>c__DisplayClass8.<InitFocusAndVisible>b__1(Lifetime lifeFocused)
     at JetBrains.DataFlow.SequentialLifetimes.<>c__DisplayClass6.<Next>b__5(LifetimeDefinition definition, Lifetime lifetime)
     at JetBrains.DataFlow.Lifetimes.Define(Lifetime lifetime, String id, Action`2 FAtomic, ILogger logger)
     at JetBrains.DataFlow.SequentialLifetimes.DefineNext(Action`2 FNext)
     at JetBrains.DataFlow.SequentialLifetimes.Next(Action`1 FNext)
     at JetBrains.DataFlow.IPropertyEx.<>c__DisplayClass3a.<WhenTrue>b__39(PropertyChangedEventArgs`1 args)
     at JetBrains.DataFlow.Signal`1.NotifySinks(TValue payload)
     at JetBrains.DataFlow.Signal`1.Fire(TValue value, Object cookie)
     at JetBrains.DataFlow.Property`1.FireChange(TValue old, TValue new, Object cookie)
     at JetBrains.DataFlow.Property`1.SetValue(TValue value, Object cookie)
     at JetBrains.Application.DataFlowEx.<>c__DisplayClass23`1.<FlowIntoGuarded_NoReplay>b__22()
     at JetBrains.Threading.ReentrancyGuard.Execute(String name, Action action)
     at JetBrains.Threading.ReentrancyGuard.ExecuteOrQueue(String name, Action action, TaskPriority priority)
     at JetBrains.Application.DataFlowEx.<>c__DisplayClass23`1.<FlowIntoGuarded_NoReplay>b__21()
     at JetBrains.DataFlow.ISignalEx.<>c__DisplayClass1`1.<Advise>b__0(TValue value)
     at JetBrains.DataFlow.Signal`1.NotifySinks(TValue payload)
     at JetBrains.DataFlow.Signal`1.Fire(TValue value, Object cookie)
     at JetBrains.DataFlow.Property`1.FireChange(TValue old, TValue new, Object cookie)
     at JetBrains.DataFlow.Property`1.SetValue(TValue value, Object cookie)
     at JetBrains.Platform.VisualStudio.SinceVs10.IDE.TextControl.VsTextControlWindowDevTen.<Init_FocusTracking>b__0(Object param0, EventArgs param1)
     at Microsoft.VisualStudio.Text.Utilities.GuardedOperations.RaiseEvent(Object sender, EventHandler eventHandlers)
     at Microsoft.VisualStudio.Text.Editor.Implementation.WpfTextView.QueueAggregateFocusCheck(Boolean checkForFocus)
     at Microsoft.VisualStudio.Text.Editor.Implementation.WpfTextView.OnIsKeyboardFocusWithinChanged(Object sender, DependencyPropertyChangedEventArgs args)
     at System.Windows.UIElement.RaiseDependencyPropertyChanged(EventPrivateKey key, DependencyPropertyChangedEventArgs args)
     at System.Windows.FocusWithinProperty.FireNotifications(UIElement uie, ContentElement ce, UIElement3D uie3D, Boolean oldValue)
     at System.Windows.ReverseInheritProperty.FirePropertyChangeInAncestry(DependencyObject element, Boolean oldValue, DeferredElementTreeState treeState, Action`2 originChangedAction)
     at System.Windows.ReverseInheritProperty.OnOriginValueChanged(DependencyObject oldOrigin, DependencyObject newOrigin, IList`1 otherOrigins, DeferredElementTreeState& oldTreeState, Action`2 originChangedAction)
     at System.Windows.Input.KeyboardDevice.ChangeFocus(DependencyObject focus, Int32 timestamp)
     at System.Windows.Input.KeyboardDevice.TryChangeFocus(DependencyObject newFocus, IKeyboardInputProvider keyboardInputProvider, Boolean askOld, Boolean askNew, Boolean forceToNullIfFailed)
     at System.Windows.Input.KeyboardDevice.Focus(DependencyObject focus, Boolean askOld, Boolean askNew, Boolean forceToNullIfFailed)
     at System.Windows.Input.KeyboardDevice.Focus(IInputElement element)
     at Microsoft.VisualStudio.Text.Utilities.WpfMouseProcessor.TakeFocusFromMouseEvent(MouseEventArgs e)
     at Microsoft.VisualStudio.Text.Utilities.WpfMouseProcessor.UIElement_MouseLeftButtonDown(Object sender, MouseButtonEventArgs e)
     at System.Windows.Input.MouseButtonEventArgs.InvokeEventHandler(Delegate genericHandler, Object genericTarget)
     at System.Windows.RoutedEventArgs.InvokeHandler(Delegate handler, Object target)
     at System.Windows.RoutedEventHandlerInfo.InvokeHandler(Object target, RoutedEventArgs routedEventArgs)
     at System.Windows.EventRoute.InvokeHandlersImpl(Object source, RoutedEventArgs args, Boolean reRaised)
     at System.Windows.UIElement.ReRaiseEventAs(DependencyObject sender, RoutedEventArgs args, RoutedEvent newEvent)
     at System.Windows.UIElement.OnMouseDownThunk(Object sender, MouseButtonEventArgs e)
     at System.Windows.Input.MouseButtonEventArgs.InvokeEventHandler(Delegate genericHandler, Object genericTarget)
     at System.Windows.RoutedEventArgs.InvokeHandler(Delegate handler, Object target)
     at System.Windows.RoutedEventHandlerInfo.InvokeHandler(Object target, RoutedEventArgs routedEventArgs)
     at System.Windows.EventRoute.InvokeHandlersImpl(Object source, RoutedEventArgs args, Boolean reRaised)
     at System.Windows.UIElement.RaiseEventImpl(DependencyObject sender, RoutedEventArgs args)
     at System.Windows.UIElement.RaiseTrustedEvent(RoutedEventArgs args)
     at System.Windows.Input.InputManager.ProcessStagingArea()
     at System.Windows.Input.InputManager.ProcessInput(InputEventArgs input)
     at System.Windows.Input.InputProviderSite.ReportInput(InputReport inputReport)
     at System.Windows.Interop.HwndMouseInputProvider.ReportInput(IntPtr hwnd, InputMode mode, Int32 timestamp, RawMouseActions actions, Int32 x, Int32 y, Int32 wheel)
     at System.Windows.Interop.HwndMouseInputProvider.FilterMessage(IntPtr hwnd, WindowMessage msg, IntPtr wParam, IntPtr lParam, Boolean& handled)
     at System.Windows.Interop.HwndSource.InputFilterMessage(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled)
     at MS.Win32.HwndWrapper.WndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled)
     at MS.Win32.HwndSubclass.DispatcherCallbackOperation(Object o)
     at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs)
     at System.Windows.Threading.ExceptionWrapper.TryCatchWhen(Object source, Delegate callback, Object args, Int32 numArgs, Delegate catchHandler)
     at System.Windows.Threading.Dispatcher.LegacyInvokeImpl(DispatcherPriority priority, TimeSpan timeout, Delegate method, Object args, Int32 numArgs)
     at MS.Win32.HwndSubclass.SubclassWndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam)

RSRP-449912: Number of tasks in Short Tasks queue is 207740

$
0
0
Reporter ReSharper anonymous (resharper) ReSharper anonymous (resharper)
Created Oct 21, 2015 8:05:09 PM
Updated Jul 19, 2016 1:07:23 PM
Resolved Jul 19, 2016 1:07:23 PM
Subsystem Context Actions
Assignee Alisa Afonina (alisa.afonina)
Priority Normal
State Duplicate
Type Exception
Affected versions 10.0
Fix version No Fix versions
Fixed In Version ReSharper Undefined
VsVersion All Versions
ReSharperPlatformVs14 Wave 04



Number of tasks in Short Tasks queue is 208016

— EXCEPTION #1/1 [LoggerException]
Message = “Number of tasks in Short Tasks queue is 208016”
ExceptionPath = Root
ClassName = JetBrains.Util.LoggerException
Data.HostProductInfo = “JetBrains ReSharper Ultimate 10 EAP 4 Build 104.0.20151009.190534-EAP4”
Data.SubProducts.#0 = “JetBrains ReSharper 10 EAP 4 Build 10.0.20151009.220916-EAP4”
Data.LastExtension = cs
Data.VsVersion = 14.0.23107.0
Data.ProductSccRevision = CompiledWithoutBuildServer
Data.PlatformSccRevision = CompiledWithoutBuildServer
Data.ManagedThreadName = “JetPool (S) Regular thread #3”
HResult = COR_E_APPLICATION=80131600
StackTraceString = “
  at JetBrains.Application.Threading.Tasks.Scheduler.ThreadManagementUnit.AddTask(Task task)
     at JetBrains.Application.Threading.Tasks.Scheduler.JetScheduler.QueueTask(Task task)
     at System.Threading.Tasks.Task.ScheduleAndStart(Boolean needsProtection)
     at System.Threading.Tasks.Task.Start(TaskScheduler scheduler)
     at JetBrains.Application.Threading.Tasks.TaskEx.Started[TTask](TTask task, TaskScheduler scheduler, Boolean sync)
     at JetBrains.Application.Threading.Tasks.TaskHostEx.RunSafe(ITaskHost tasks, Lifetime lifetime, Action action, TaskPriority priority)
     at JetBrains.Application.InterruptableReadActivity.DoStart()
     at JetBrains.ReSharper.Feature.Services.Contexts.ContextConsumer.AsyncHandler(IShellLocks shellLocks, Lifetime lifetime, Func`2 action)
     at JetBrains.ReSharper.Feature.Services.ContextActions.CurrentContextActionDataProviderBase`3.<>c__DisplayClass2.<.ctor>b__0(Lifetime lt)
     at JetBrains.ReSharper.Feature.Services.Contexts.ContextConsumer.<>c__DisplayClass8.<>c__DisplayClassa.<OnCommitedPsiHandler>b__7()
     at JetBrains.Application.IShellLocksEx.ExecuteWithReadLock(IShellLocks thіs, Action F)
     at JetBrains.Application.IShellLocksEx.<>c__DisplayClassa.<ExecuteOrQueueReadLock>b__9()
     at JetBrains.Threading.ReentrancyGuardEx.<>c__DisplayClass4.<>c__DisplayClass6.<Queue>b__3()
     at JetBrains.Threading.ReentrancyGuard.Execute(String name, Action action)
     at JetBrains.Threading.ReentrancyGuard.ExecutePendingActions()
     at JetBrains.Threading.JetDispatcher.Closure.Execute()
     at JetBrains.Util.Concurrency.WinJetDispatcher.ProcessQueue()
     at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs)
     at System.Windows.Threading.ExceptionWrapper.TryCatchWhen(Object source, Delegate callback, Object args, Int32 numArgs, Delegate catchHandler)
     at System.Windows.Threading.DispatcherOperation.InvokeImpl()
     at System.Windows.Threading.DispatcherOperation.InvokeInSecurityContext(Object state)
     at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
     at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
     at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
     at System.Windows.Threading.DispatcherOperation.Invoke()
     at System.Windows.Threading.Dispatcher.ProcessQueue()
     at System.Windows.Threading.Dispatcher.WndProcHook(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled)
     at MS.Win32.HwndWrapper.WndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled)
     at MS.Win32.HwndSubclass.DispatcherCallbackOperation(Object o)
     at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs)
     at System.Windows.Threading.ExceptionWrapper.TryCatchWhen(Object source, Delegate callback, Object args, Int32 numArgs, Delegate catchHandler)
     at System.Windows.Threading.Dispatcher.LegacyInvokeImpl(DispatcherPriority priority, TimeSpan timeout, Delegate method, Object args, Int32 numArgs)
     at MS.Win32.HwndSubclass.SubclassWndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam)

RSRP-449913: Number of tasks in Short Tasks queue is 207782

$
0
0
Reporter ReSharper anonymous (resharper) ReSharper anonymous (resharper)
Created Oct 21, 2015 8:05:12 PM
Updated Jul 19, 2016 1:07:23 PM
Resolved Jul 19, 2016 1:07:23 PM
Subsystem No Subsystem
Assignee Evgeniy Stepanov (Evgeniy_Stepanov)
Priority Normal
State Duplicate
Type Exception
Affected versions 10.0
Fix version No Fix versions
Fixed In Version ReSharper Undefined
VsVersion All Versions
ReSharperPlatformVs14 Wave 04



Number of tasks in Short Tasks queue is 207900

— EXCEPTION #1/1 [LoggerException]
Message = “Number of tasks in Short Tasks queue is 207900”
ExceptionPath = Root
ClassName = JetBrains.Util.LoggerException
Data.HostProductInfo = “JetBrains ReSharper Ultimate 10 EAP 4 Build 104.0.20151009.190534-EAP4”
Data.SubProducts.#0 = “JetBrains ReSharper 10 EAP 4 Build 10.0.20151009.220916-EAP4”
Data.LastExtension = cs
Data.VsVersion = 14.0.23107.0
Data.ProductSccRevision = CompiledWithoutBuildServer
Data.PlatformSccRevision = CompiledWithoutBuildServer
Data.ManagedThreadName = “JetPool (S) Regular thread #3”
HResult = COR_E_APPLICATION=80131600
StackTraceString = “
  at JetBrains.Application.Threading.Tasks.Scheduler.ThreadManagementUnit.AddTask(Task task)
     at JetBrains.Application.Threading.Tasks.Scheduler.JetScheduler.QueueTask(Task task)
     at System.Threading.Tasks.Task.ScheduleAndStart(Boolean needsProtection)
     at System.Threading.Tasks.Task.Start(TaskScheduler scheduler)
     at JetBrains.Application.Threading.Tasks.TaskEx.Started[TTask](TTask task, TaskScheduler scheduler, Boolean sync)
     at JetBrains.Application.Threading.Tasks.TaskHostEx.RunSafe(ITaskHost tasks, Lifetime lifetime, Action action, TaskPriority priority)
     at JetBrains.Application.InterruptableReadActivity.DoStart()
     at JetBrains.ReSharper.Intentions.Bulbs.BulbItems.BuildAvailableActionsList(ITextControl textControl, Lifetime caretPositionLifetime)
     at JetBrains.ReSharper.Intentions.Bulbs.BulbItems.<>c__DisplayClass10.<BuildActions>b__f(Lifetime lt)
     at JetBrains.ReSharper.Feature.Services.Contexts.ContextConsumer.OnAllContextsCreated(Lifetime contextLifetime)
     at JetBrains.ReSharper.Feature.Services.Contexts.ContextManager.RegisterContextConsumerInternal(Lifetime lifetime, IContextConsumer consumer)
     at JetBrains.ReSharper.Intentions.Bulbs.BulbItems.BuildActions(Lifetime lifetime)
     at JetBrains.ReSharper.Feature.Services.Contexts.ContextConsumer.<>c__DisplayClass8.<>c__DisplayClassa.<OnCommitedPsiHandler>b__7()
     at JetBrains.Application.IShellLocksEx.ExecuteWithReadLock(IShellLocks thіs, Action F)
     at JetBrains.Application.IShellLocksEx.<>c__DisplayClassa.<ExecuteOrQueueReadLock>b__9()
     at JetBrains.Threading.ReentrancyGuardEx.<>c__DisplayClass4.<>c__DisplayClass6.<Queue>b__3()
     at JetBrains.Threading.ReentrancyGuard.Execute(String name, Action action)
     at JetBrains.Threading.ReentrancyGuard.ExecutePendingActions()
     at JetBrains.Threading.JetDispatcher.Closure.Execute()
     at JetBrains.Util.Concurrency.WinJetDispatcher.ProcessQueue()
     at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs)
     at System.Windows.Threading.ExceptionWrapper.TryCatchWhen(Object source, Delegate callback, Object args, Int32 numArgs, Delegate catchHandler)
     at System.Windows.Threading.DispatcherOperation.InvokeImpl()
     at System.Windows.Threading.DispatcherOperation.InvokeInSecurityContext(Object state)
     at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
     at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
     at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
     at System.Windows.Threading.DispatcherOperation.Invoke()
     at System.Windows.Threading.Dispatcher.ProcessQueue()
     at System.Windows.Threading.Dispatcher.WndProcHook(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled)
     at MS.Win32.HwndWrapper.WndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled)
     at MS.Win32.HwndSubclass.DispatcherCallbackOperation(Object o)
     at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs)
     at System.Windows.Threading.ExceptionWrapper.TryCatchWhen(Object source, Delegate callback, Object args, Int32 numArgs, Delegate catchHandler)
     at System.Windows.Threading.Dispatcher.LegacyInvokeImpl(DispatcherPriority priority, TimeSpan timeout, Delegate method, Object args, Int32 numArgs)
     at MS.Win32.HwndSubclass.SubclassWndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam)

RSRP-450925: Number of tasks in Short Tasks queue is 208245

$
0
0
Reporter ReSharper anonymous (resharper) ReSharper anonymous (resharper)
Created Nov 6, 2015 1:23:13 PM
Updated Jul 19, 2016 1:07:23 PM
Resolved Jul 19, 2016 1:07:23 PM
Subsystem Structured Patterns (SSR)
Assignee Alexander Shvedov (shvedov)
Priority Normal
State Duplicate
Type Exception
Affected versions 10.0
Fix version No Fix versions
Fixed In Version ReSharper Undefined
VsVersion All Versions
ReSharperPlatformVs12 Wave 04 — JetBrains ReSharper Ultimate 10 Build 104.0.20151101.164448

JetBrains dotMemory 10.0 Build 10.0.20151101.190843
JetBrains dotTrace 10 Build 10.0.20151101.191121
JetBrains ReSharper 10 Build 10.0.20151101.194151
JetBrains ReSharper C++ 10 Build 10.0.20151101.190505

Number of tasks in Short Tasks queue is 524695

— EXCEPTION #1/1 [LoggerException]
Message = “Number of tasks in Short Tasks queue is 524695”
ExceptionPath = Root
ClassName = JetBrains.Util.LoggerException
Data.LastExtension = cs
Data.SccRevisionShell = “<there are no packages matching the criteria>”
Data.HostProductInfo = “JetBrains ReSharper Ultimate 10 Build 104.0.20151101.164448”
Data.SubProducts.#0 = “JetBrains dotMemory 10.0 Build 10.0.20151101.190843”
Data.SubProducts.#1 = “JetBrains dotTrace 10 Build 10.0.20151101.191121”
Data.SubProducts.#2 = “JetBrains ReSharper C++ 10 Build 10.0.20151101.190505”
Data.SubProducts.#3 = “JetBrains ReSharper 10 Build 10.0.20151101.194151”
Data.ManagedThreadName = “JetPool (S) Regular thread #4”
Data.SccRevisionEnv = “
Platform\Core\Shell:
    hg::wave04::501589B91D05C7FC53188838B729BFC5977F1F37

Platform\VisualStudio:
    hg::wave04::6D502BFBADF85A712F33A37A78496EE7272711A8

Data.VsVersion = 12.0.21005.1
HResult = COR_E_APPLICATION=80131600
StackTraceString = “
  at JetBrains.Application.Threading.Tasks.Scheduler.ThreadManagementUnit.AddTask(Task task)
     at JetBrains.Application.Threading.Tasks.Scheduler.JetScheduler.QueueTask(Task task)
     at System.Threading.Tasks.Task.ScheduleAndStart(Boolean needsProtection)
     at System.Threading.Tasks.Task.Start(TaskScheduler scheduler)
     at JetBrains.Application.Threading.Tasks.TaskEx.Started[TTask](TTask task, TaskScheduler scheduler, Boolean sync)
     at JetBrains.Application.Threading.Tasks.TaskBarrier.EnqueueTask(Task task)
     at JetBrains.Application.Threading.Tasks.TaskBarrier.EnqueueJob(Action action)
     at JetBrains.ReSharper.Daemon.CSharp.Stages.StructuralPatterns.CSharpStructuralSearchDaemonStageProcess.EnqueueElement(ITreeNode element)
     at JetBrains.ReSharper.Daemon.CSharp.Stages.StructuralPatterns.CSharpStructuralSearchDaemonStageProcess.InteriorShouldBeProcessed(ITreeNode element, IMatchingContext context)
     at JetBrains.ReSharper.Psi.RecursiveElementProcessorExtensions.ProcessDescendants[TContext](ITreeNode root, IRecursiveElementProcessor`1 processor, TContext context)
     at JetBrains.ReSharper.Daemon.StructuralPatterns.StructuralSearchDaemonStageProcessBase.Execute(Action`1 committer)
     at JetBrains.ReSharper.Feature.Services.Daemon.DaemonProcessBase.<>c__DisplayClass13.<>c__DisplayClass16.<DoHighlighting>b__f(IDaemonStage stage)
     at JetBrains.ReSharper.Feature.Services.Daemon.DaemonProcessBase.<>c__DisplayClass13.<>c__DisplayClass1d.<DoHighlighting>b__11()
     at JetBrains.Application.Threading.Tasks.TaskBarrier.<>c__DisplayClass10.<>c__DisplayClass12.<EnqueueDependentJobs>b__e()
     at JetBrains.Application.Threading.Tasks.TaskHost.<>c__DisplayClasse.<Create>b__a(Object state)
     at System.Threading.Tasks.Task.InnerInvoke()
     at System.Threading.Tasks.Task.Execute()
     at System.Threading.Tasks.Task.ExecutionContextCallback(Object obj)
     at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
     at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
     at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot)
     at System.Threading.Tasks.Task.ExecuteEntry(Boolean bPreventDoubleExecution)
     at System.Threading.Tasks.TaskScheduler.TryExecuteTask(Task task)
     at JetBrains.Application.Threading.Tasks.Scheduler.JetScheduler.TryExecuteTaskInline(Task task, Boolean taskWasPreviouslyQueued)
     at System.Threading.Tasks.TaskScheduler.TryRunInline(Task task, Boolean taskWasPreviouslyQueued)
     at System.Threading.Tasks.Task.WrappedTryRunInline()
     at System.Threading.Tasks.Task.WaitAll(Task[] tasks, Int32 millisecondsTimeout, CancellationToken cancellationToken)
     at JetBrains.Application.Threading.Tasks.TaskBarrier.DisposeUnmanagedResources()
     at JetBrains.Util.SafeDisposable.DisposeInternal()
     at JetBrains.Util.SafeDisposable.Dispose()
     at JetBrains.ReSharper.Feature.Services.Daemon.DaemonProcessBase.<>c__DisplayClass13.<DoHighlighting>b__d()
     at JetBrains.Application.Notifications.PerformanceUserNotifications.<>c__DisplayClass7.<WithPerformanceNotification>b__6(Lifetime lifetime)
     at JetBrains.DataFlow.Lifetimes.Using(Lifetime parent, Action`1 λ)
     at JetBrains.Application.Notifications.PerformanceUserNotifications.WithPerformanceNotification(TimeSpan performanceThreshold, String title, String body, Action action)
     at JetBrains.ReSharper.Feature.Services.Daemon.DaemonProcessBase.DoHighlighting(DaemonProcessKind processKind, Action`1 commiter)
     at JetBrains.ReSharper.Daemon.Impl.VisibleDocumentDaemonProcess.DoHighlighting(Boolean globalAnalysisStages)
     at JetBrains.ReSharper.Daemon.Impl.VisibleDocumentDaemonProcess.<>c__DisplayClassb.<EnqueueHighlightingJob>b__a()
     at JetBrains.Application.Threading.Tasks.TaskHost.<>c__DisplayClasse.<Create>b__a(Object state)
     at System.Threading.Tasks.Task.InnerInvoke()
     at System.Threading.Tasks.Task.Execute()
     at System.Threading.Tasks.Task.ExecutionContextCallback(Object obj)
     at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
     at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
     at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot)
     at System.Threading.Tasks.Task.ExecuteEntry(Boolean bPreventDoubleExecution)
     at System.Threading.Tasks.TaskScheduler.TryExecuteTask(Task task)
     at JetBrains.Application.Threading.Tasks.SingleThreadTaskScheduler.<>c__DisplayClass5.<ThreadProc>b__4()
     at JetBrains.Util.ILoggerEx.Catch(ILogger thіs, Action F, ExceptionOrigin origin, LoggingLevel loggingLevel)
     at JetBrains.Application.Threading.Tasks.SingleThreadTaskScheduler.ThreadProc()
     at System.Threading.ThreadHelper.ThreadStart_Context(Object state)
     at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
     at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
     at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
     at System.Threading.ThreadHelper.ThreadStart()

RSRP-450926: Number of tasks in Short Tasks queue is 404217

$
0
0
Reporter ReSharper anonymous (resharper) ReSharper anonymous (resharper)
Created Nov 6, 2015 1:24:20 PM
Updated Jul 19, 2016 1:07:23 PM
Resolved Jul 19, 2016 1:07:23 PM
Subsystem No Subsystem
Assignee Evgeniy Stepanov (Evgeniy_Stepanov)
Priority Normal
State Duplicate
Type Exception
Affected versions 10.0
Fix version No Fix versions
Fixed In Version ReSharper Undefined
VsVersion All Versions
ReSharperPlatformVs12 Wave 04 — JetBrains ReSharper Ultimate 10 Build 104.0.20151101.164448

JetBrains dotMemory 10.0 Build 10.0.20151101.190843
JetBrains dotTrace 10 Build 10.0.20151101.191121
JetBrains ReSharper 10 Build 10.0.20151101.194151
JetBrains ReSharper C++ 10 Build 10.0.20151101.190505

Number of tasks in Short Tasks queue is 535234

— EXCEPTION #1/1 [LoggerException]
Message = “Number of tasks in Short Tasks queue is 535234”
ExceptionPath = Root
ClassName = JetBrains.Util.LoggerException
Data.LastExtension = cs
Data.SccRevisionShell = “<there are no packages matching the criteria>”
Data.HostProductInfo = “JetBrains ReSharper Ultimate 10 Build 104.0.20151101.164448”
Data.SubProducts.#0 = “JetBrains dotMemory 10.0 Build 10.0.20151101.190843”
Data.SubProducts.#1 = “JetBrains dotTrace 10 Build 10.0.20151101.191121”
Data.SubProducts.#2 = “JetBrains ReSharper C++ 10 Build 10.0.20151101.190505”
Data.SubProducts.#3 = “JetBrains ReSharper 10 Build 10.0.20151101.194151”
Data.ManagedThreadName = “JetPool (S) Regular thread #7”
Data.SccRevisionEnv = “
Platform\Core\Shell:
    hg::wave04::501589B91D05C7FC53188838B729BFC5977F1F37

Platform\VisualStudio:
    hg::wave04::6D502BFBADF85A712F33A37A78496EE7272711A8

Data.VsVersion = 12.0.21005.1
HResult = COR_E_APPLICATION=80131600
StackTraceString = “
  at JetBrains.Application.Threading.Tasks.Scheduler.ThreadManagementUnit.AddTask(Task task)
     at JetBrains.Application.Threading.Tasks.Scheduler.JetScheduler.QueueTask(Task task)
     at System.Threading.Tasks.Task.ScheduleAndStart(Boolean needsProtection)
     at System.Threading.Tasks.Task.Start(TaskScheduler scheduler)
     at JetBrains.Application.Threading.Tasks.TaskEx.Started[TTask](TTask task, TaskScheduler scheduler, Boolean sync)
     at JetBrains.Application.Threading.Tasks.TaskHostEx.RunSafe(ITaskHost tasks, Lifetime lifetime, Action action, TaskPriority priority)
     at JetBrains.UsageStatistics.ActivityTracking.<>c__DisplayClass1f.<.ctor>b__17(Object param0, ElapsedEventArgs param1)
     at System.Timers.Timer.MyTimerCallback(Object state)
     at System.Threading.TimerQueueTimer.CallCallbackInContext(Object state)
     at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
     at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
     at System.Threading.TimerQueueTimer.CallCallback()
     at System.Threading.TimerQueueTimer.Fire()
     at System.Threading.TimerQueue.FireNextTimers()
     at System.Threading.TimerQueue.AppDomainTimerCallback()

RSRP-450927: Number of tasks in Short Tasks queue is 535216

$
0
0
Reporter ReSharper anonymous (resharper) ReSharper anonymous (resharper)
Created Nov 6, 2015 1:24:59 PM
Updated Jul 19, 2016 1:07:23 PM
Resolved Jul 19, 2016 1:07:23 PM
Subsystem Platform - Project Model
Assignee Evgeniy Stepanov (Evgeniy_Stepanov)
Priority Normal
State Duplicate
Type Exception
Affected versions 10.0
Fix version No Fix versions
Fixed In Version ReSharper Undefined
VsVersion All Versions
ReSharperPlatformVs12 Wave 04 — JetBrains ReSharper Ultimate 10 Build 104.0.20151101.164448

JetBrains dotMemory 10.0 Build 10.0.20151101.190843
JetBrains dotTrace 10 Build 10.0.20151101.191121
JetBrains ReSharper 10 Build 10.0.20151101.194151
JetBrains ReSharper C++ 10 Build 10.0.20151101.190505

Number of tasks in Short Tasks queue is 535216

— EXCEPTION #1/1 [LoggerException]
Message = “Number of tasks in Short Tasks queue is 535216”
ExceptionPath = Root
ClassName = JetBrains.Util.LoggerException
Data.LastExtension = cs
Data.SccRevisionShell = “<there are no packages matching the criteria>”
Data.HostProductInfo = “JetBrains ReSharper Ultimate 10 Build 104.0.20151101.164448”
Data.SubProducts.#0 = “JetBrains dotMemory 10.0 Build 10.0.20151101.190843”
Data.SubProducts.#1 = “JetBrains dotTrace 10 Build 10.0.20151101.191121”
Data.SubProducts.#2 = “JetBrains ReSharper C++ 10 Build 10.0.20151101.190505”
Data.SubProducts.#3 = “JetBrains ReSharper 10 Build 10.0.20151101.194151”
Data.ManagedThreadName = “JetPool (S) Regular thread #3”
Data.SccRevisionEnv = “
Platform\Core\Shell:
    hg::wave04::501589B91D05C7FC53188838B729BFC5977F1F37

Platform\VisualStudio:
    hg::wave04::6D502BFBADF85A712F33A37A78496EE7272711A8

Data.VsVersion = 12.0.21005.1
HResult = COR_E_APPLICATION=80131600
StackTraceString = “
  at JetBrains.Application.Threading.Tasks.Scheduler.ThreadManagementUnit.AddTask(Task task)
     at JetBrains.Application.Threading.Tasks.Scheduler.JetScheduler.QueueTask(Task task)
     at System.Threading.Tasks.Task.ScheduleAndStart(Boolean needsProtection)
     at System.Threading.Tasks.Task.Start(TaskScheduler scheduler)
     at JetBrains.Application.Threading.Tasks.TaskEx.Started[TTask](TTask task, TaskScheduler scheduler, Boolean sync)
     at JetBrains.Application.Threading.Tasks.TaskHostEx.RunSafe(ITaskHost tasks, Lifetime lifetime, Action action, TaskPriority priority)
     at JetBrains.Application.InterruptableReadActivity.DoStart()
     at JetBrains.ProjectModel.Impl.ExternalChangeProcessor.<>c__DisplayClass18.<GetFinished>b__17()
     at JetBrains.Application.IShellLocksEx.ExecuteWithReadLock(IShellLocks thіs, Action F)
     at JetBrains.Application.IShellLocksEx.<>c__DisplayClass4.<ExecuteOrQueueReadLock>b__3()
     at JetBrains.Threading.ReentrancyGuard.Execute(String name, Action action)
     at JetBrains.Threading.ReentrancyGuard.ExecutePendingActions()
     at JetBrains.Threading.JetDispatcher.Closure.Execute()
     at JetBrains.Util.Concurrency.WinJetDispatcher.ProcessQueue()
     at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs)
     at System.Windows.Threading.ExceptionWrapper.TryCatchWhen(Object source, Delegate callback, Object args, Int32 numArgs, Delegate catchHandler)
     at System.Windows.Threading.DispatcherOperation.InvokeImpl()
     at System.Windows.Threading.DispatcherOperation.InvokeInSecurityContext(Object state)
     at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
     at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
     at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
     at System.Windows.Threading.DispatcherOperation.Invoke()
     at System.Windows.Threading.Dispatcher.ProcessQueue()
     at System.Windows.Threading.Dispatcher.WndProcHook(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled)
     at MS.Win32.HwndWrapper.WndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled)
     at MS.Win32.HwndSubclass.DispatcherCallbackOperation(Object o)
     at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs)
     at System.Windows.Threading.ExceptionWrapper.TryCatchWhen(Object source, Delegate callback, Object args, Int32 numArgs, Delegate catchHandler)
     at System.Windows.Threading.Dispatcher.LegacyInvokeImpl(DispatcherPriority priority, TimeSpan timeout, Delegate method, Object args, Int32 numArgs)
     at MS.Win32.HwndSubclass.SubclassWndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam)

RSRP-450929: Number of tasks in Short Tasks queue is 513459

$
0
0
Reporter ReSharper anonymous (resharper) ReSharper anonymous (resharper)
Created Nov 6, 2015 1:25:03 PM
Updated Jul 19, 2016 1:07:23 PM
Resolved Jul 19, 2016 1:07:23 PM
Subsystem NuGet Browser (Import From nuget.org)
Assignee Evgeniy Stepanov (Evgeniy_Stepanov)
Priority Normal
State Duplicate
Type Exception
Affected versions 10.0
Fix version No Fix versions
Fixed In Version ReSharper Undefined
VsVersion All Versions
ReSharperPlatformVs12 Wave 04 — JetBrains ReSharper Ultimate 10 Build 104.0.20151101.164448

JetBrains dotMemory 10.0 Build 10.0.20151101.190843
JetBrains dotTrace 10 Build 10.0.20151101.191121
JetBrains ReSharper 10 Build 10.0.20151101.194151
JetBrains ReSharper C++ 10 Build 10.0.20151101.190505

Number of tasks in Short Tasks queue is 513459

— EXCEPTION #1/1 [LoggerException]
Message = “Number of tasks in Short Tasks queue is 513459”
ExceptionPath = Root
ClassName = JetBrains.Util.LoggerException
Data.LastExtension = cs
Data.SccRevisionShell = “<there are no packages matching the criteria>”
Data.HostProductInfo = “JetBrains ReSharper Ultimate 10 Build 104.0.20151101.164448”
Data.SubProducts.#0 = “JetBrains dotMemory 10.0 Build 10.0.20151101.190843”
Data.SubProducts.#1 = “JetBrains dotTrace 10 Build 10.0.20151101.191121”
Data.SubProducts.#2 = “JetBrains ReSharper C++ 10 Build 10.0.20151101.190505”
Data.SubProducts.#3 = “JetBrains ReSharper 10 Build 10.0.20151101.194151”
Data.ManagedThreadName = “JetPool (S) Regular thread #5”
Data.SccRevisionEnv = “
Platform\Core\Shell:
    hg::wave04::501589B91D05C7FC53188838B729BFC5977F1F37

Platform\VisualStudio:
    hg::wave04::6D502BFBADF85A712F33A37A78496EE7272711A8

Data.VsVersion = 12.0.21005.1
HResult = COR_E_APPLICATION=80131600
StackTraceString = “
  at JetBrains.Application.Threading.Tasks.Scheduler.ThreadManagementUnit.AddTask(Task task)
     at JetBrains.Application.Threading.Tasks.Scheduler.JetScheduler.QueueTask(Task task)
     at System.Threading.Tasks.Task.ScheduleAndStart(Boolean needsProtection)
     at System.Threading.Tasks.Task.Start(TaskScheduler scheduler)
     at JetBrains.Application.Threading.Tasks.TaskEx.Started[TTask](TTask task, TaskScheduler scheduler, Boolean sync)
     at JetBrains.Application.Threading.Tasks.TaskHost.Queue(Lifetime lifetime, Action action, TaskPriority priority)
     at JetBrains.ReSharper.Features.NuGet.AsyncItemsProcessor`1.<>c__DisplayClass6.<CreateTaskScheduler>b__4(Action action)
     at JetBrains.ReSharper.Features.NuGet.AsyncItemsProcessor`1.TryEnqueueProcessing()
     at JetBrains.ReSharper.Features.NuGet.AsyncItemsProcessor`1.<>c__DisplayClassd.<TryEnqueueProcessing>b__b()
     at JetBrains.Application.Threading.Tasks.TaskHost.<>c__DisplayClasse.<Create>b__a(Object state)
     at System.Threading.Tasks.Task.InnerInvoke()
     at System.Threading.Tasks.Task.Execute()
     at System.Threading.Tasks.Task.ExecutionContextCallback(Object obj)
     at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
     at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
     at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot)
     at System.Threading.Tasks.Task.ExecuteEntry(Boolean bPreventDoubleExecution)
     at System.Threading.Tasks.TaskScheduler.TryExecuteTask(Task task)
     at JetBrains.Application.Threading.Tasks.Scheduler.JetSchedulerThread.EnqueueNextTask()
     at JetBrains.Application.Threading.Tasks.Scheduler.JetSchedulerThread.ThreadPoolProc()
     at System.Threading.ThreadHelper.ThreadStart_Context(Object state)
     at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
     at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
     at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
     at System.Threading.ThreadHelper.ThreadStart()

RSRP-459806: Number of tasks in Short Tasks queue is 200001

$
0
0
Reporter Maltseva Ekaterina (Maltseva.Ekaterina) Maltseva Ekaterina (Maltseva.Ekaterina)
Created Jul 15, 2016 1:35:15 PM
Updated Jul 19, 2016 1:07:23 PM
Resolved Jul 19, 2016 1:07:23 PM
Subsystem Navigation - Search (Find Usages)
Assignee Alexander Ulitin (alexander.ulitin)
Priority Major
State Duplicate
Type Exception
Affected versions No Affected versions
Fix version No Fix versions
Fixed In Version ReSharper Undefined
VsVersion All Versions
ReSharperPlatformVs14 Wave 06 — JetBrains ReSharper Ultimate 2016.2 EAP 9 Build 106.0.20160713.192343-eap9

JetBrains dotMemory 2016.2 EAP 9 Build 2016.2.20160714.74402-eap9
JetBrains dotTrace 2016.2 EAP 9 Build 2016.2.20160714.74413-eap9
JetBrains ReSharper 2016.2 EAP 9 Build 2016.2.20160714.74223-eap9

Number of tasks in Short Tasks queue is 200001

— EXCEPTION #1/1 [LoggerException]
Message = “Number of tasks in Short Tasks queue is 200001”
ExceptionPath = Root
ClassName = JetBrains.Util.LoggerException
Data.LastExtension = cs
Data.SccRevisionShell = “<there are no packages matching the criteria>”
Data.HostProductInfo = “JetBrains ReSharper Ultimate 2016.2 EAP 9 Build 106.0.20160713.192343-eap9”
Data.SubProducts.#0 = “JetBrains dotMemory 2016.2 EAP 9 Build 2016.2.20160714.74402-eap9”
Data.SubProducts.#1 = “JetBrains dotTrace 2016.2 EAP 9 Build 2016.2.20160714.74413-eap9”
Data.SubProducts.#2 = “JetBrains ReSharper 2016.2 EAP 9 Build 2016.2.20160714.74223-eap9”
Data.ManagedThreadName = “JetPool (S) Regular thread #7”
Data.SccRevisionEnv = “
Platform\Core\Shell,
Platform\VisualStudio:
    git::refs/heads/wave06-autree

Data.VsVersion = 14.0.25123.0
HResult = COR_E_APPLICATION=80131600
StackTraceString = “
  at JetBrains.Application.Threading.Tasks.Scheduler.ThreadManagementUnit.AddTask(Task task)
     at JetBrains.Application.Threading.Tasks.Scheduler.JetScheduler.QueueTask(Task task)
     at System.Threading.Tasks.Task.ScheduleAndStart(Boolean needsProtection)
     at System.Threading.Tasks.Task.Start(TaskScheduler scheduler)
     at JetBrains.Util.Threading.JetTaskEx.Started[TTask](TTask task, TaskScheduler scheduler, Boolean sync)
     at JetBrains.Application.Threading.Tasks.TaskBarrier.EnqueueTask(Task task)
     at JetBrains.Application.Threading.Tasks.TaskBarrier.EnqueueJob(String name, Action action)
     at JetBrains.ReSharper.Psi.Impl.Search.Operations.Impl.FindImplementingMembersOperation`1.FindImplementingMembersInSubclasses(ITypeElement type, OverridableMemberInstance superMember, InheritanceKind foundMemberKind)
     at JetBrains.ReSharper.Psi.Impl.Search.Operations.Impl.FindImplementingMembersOperation`1.FindImplementingMembersInClass(ITypeElement type, OverridableMemberInstance superMember, InheritanceKind foundMemberKind)
     at JetBrains.ReSharper.Psi.Impl.Search.Operations.Impl.FindImplementingMembersOperation`1.<>c__DisplayClass14.<FindImplementingMembersInSubclasses>b__11()
     at JetBrains.Application.Threading.Tasks.TaskHost.AccessViolationCatcher(Action action)
     at JetBrains.Application.Threading.Tasks.TaskHost.<>c__DisplayClasse.<Create>b__a(Object state)
     at System.Threading.Tasks.Task.InnerInvoke()
     at System.Threading.Tasks.Task.Execute()
     at System.Threading.Tasks.Task.ExecutionContextCallback(Object obj)
     at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
     at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
     at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot)
     at System.Threading.Tasks.Task.ExecuteEntry(Boolean bPreventDoubleExecution)
     at System.Threading.Tasks.TaskScheduler.TryExecuteTask(Task task)
     at JetBrains.Application.Threading.Tasks.Scheduler.JetSchedulerThread.EnqueueNextTask()
     at JetBrains.Application.Threading.Tasks.Scheduler.JetSchedulerThread.ThreadPoolProc()
     at System.Threading.ThreadHelper.ThreadStart_Context(Object state)
     at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
     at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
     at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
     at System.Threading.ThreadHelper.ThreadStart()

RSRP-450928: Number of tasks in Short Tasks queue is 523926

$
0
0
Reporter ReSharper anonymous (resharper) ReSharper anonymous (resharper)
Created Nov 6, 2015 1:25:02 PM
Updated Jul 19, 2016 1:07:23 PM
Resolved Nov 16, 2015 12:40:46 PM
Subsystem No Subsystem
Assignee Unassigned
Priority Normal
State Duplicate
Type Exception
Affected versions No Affected versions
Fix version No Fix versions
Fixed In Version ReSharper Undefined
VsVersion All Versions
ReSharperPlatformVs12 Wave 04 — JetBrains ReSharper Ultimate 10 Build 104.0.20151101.164448

JetBrains dotMemory 10.0 Build 10.0.20151101.190843
JetBrains dotTrace 10 Build 10.0.20151101.191121
JetBrains ReSharper 10 Build 10.0.20151101.194151
JetBrains ReSharper C++ 10 Build 10.0.20151101.190505

Number of tasks in Short Tasks queue is 523926

— EXCEPTION #1/1 [LoggerException]
Message = “Number of tasks in Short Tasks queue is 523926”
ExceptionPath = Root
ClassName = JetBrains.Util.LoggerException
Data.LastExtension = cs
Data.SccRevisionShell = “<there are no packages matching the criteria>”
Data.HostProductInfo = “JetBrains ReSharper Ultimate 10 Build 104.0.20151101.164448”
Data.SubProducts.#0 = “JetBrains dotMemory 10.0 Build 10.0.20151101.190843”
Data.SubProducts.#1 = “JetBrains dotTrace 10 Build 10.0.20151101.191121”
Data.SubProducts.#2 = “JetBrains ReSharper C++ 10 Build 10.0.20151101.190505”
Data.SubProducts.#3 = “JetBrains ReSharper 10 Build 10.0.20151101.194151”
Data.ManagedThreadName = “JetPool (S) Regular thread #7”
Data.SccRevisionEnv = “
Platform\Core\Shell:
    hg::wave04::501589B91D05C7FC53188838B729BFC5977F1F37

Platform\VisualStudio:
    hg::wave04::6D502BFBADF85A712F33A37A78496EE7272711A8

Data.VsVersion = 12.0.21005.1
HResult = COR_E_APPLICATION=80131600
StackTraceString = “
  at JetBrains.Application.Threading.Tasks.Scheduler.ThreadManagementUnit.AddTask(Task task)
     at JetBrains.Application.Threading.Tasks.Scheduler.JetScheduler.QueueTask(Task task)
     at System.Threading.Tasks.Task.ScheduleAndStart(Boolean needsProtection)
     at System.Threading.Tasks.Task.Start(TaskScheduler scheduler)
     at JetBrains.Application.Threading.Tasks.TaskEx.Started[TTask](TTask task, TaskScheduler scheduler, Boolean sync)
     at JetBrains.Application.Threading.Tasks.TaskHostEx.RunSafe(ITaskHost tasks, Lifetime lifetime, Action action, TaskPriority priority)
     at JetBrains.Application.InterruptableReadActivity.DoStart()
     at JetBrains.ReSharper.Psi.Util.ProjectFileCacheCleanup.StartBackgroundCleanup(Lifetime lifetime, IShellLocks locks, ISolution solution)
     at JetBrains.ReSharper.Psi.Util.ProjectFileCacheCleanup.<>c__DisplayClassf.<StartBackgroundCleanup>b__b()
     at JetBrains.Util.Concurrency.GroupingEventHostEx.<>c__DisplayClass2.<>c__DisplayClass4.<QueueAtShort>b__1()
     at JetBrains.Threading.GroupingEvent.Execute()
     at JetBrains.Threading.GroupingEventHost.ExecuteExpiredEvents()
     at JetBrains.Threading.GroupingEventHost.<OnClockTimerTick>b__4()
     at JetBrains.Threading.ReentrancyGuard.Execute(String name, Action action)
     at JetBrains.Threading.ReentrancyGuard.ExecuteOrQueue(String name, Action action, TaskPriority priority)
     at JetBrains.Threading.GroupingEventHost.OnClockTimerTick()
     at JetBrains.Threading.GroupingEventHost.ClockTimer.OnTimerTick(Object sender, EventArgs e)
     at System.Windows.Forms.Timer.OnTick(EventArgs e)
     at System.Windows.Forms.Timer.TimerNativeWindow.WndProc(Message& m)
     at System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)

RSRP-450340: Number of tasks in Short Tasks queue is 206893

$
0
0
Reporter Alexey Korovin (Alexey.Korovin) Alexey Korovin (Alexey.Korovin)
Created Nov 3, 2015 7:06:47 AM
Updated Jul 19, 2016 1:07:44 PM
Subsystem No Subsystem
Assignee Evgeniy Stepanov (Evgeniy_Stepanov)
Priority Show-stopper
State Submitted
Type Exception
Affected versions No Affected versions
Fix version 2016.1
Fixed In Version ReSharper Undefined
VsVersion All Versions
ReSharperPlatformVs12 Wave 04 — JetBrains ReSharper Ultimate 10 Build 104.0.20151101.164448

JetBrains dotCover 10 Build 10.0.20151101.190849
JetBrains dotMemory 10.0 Build 10.0.20151101.190843
JetBrains dotTrace 10 Build 10.0.20151101.191121
JetBrains ReSharper 10 Build 10.0.20151101.194151
JetBrains ReSharper C++ 10 Build 10.0.20151101.190505

Number of tasks in Short Tasks queue is 220922

— EXCEPTION #1/1 [LoggerException]
Message = “Number of tasks in Short Tasks queue is 220922”
ExceptionPath = Root
ClassName = JetBrains.Util.LoggerException
Data.LastExtension = cs
Data.SccRevisionShell = “<there are no packages matching the criteria>”
Data.HostProductInfo = “JetBrains ReSharper Ultimate 10 Build 104.0.20151101.164448”
Data.SubProducts.#0 = “JetBrains dotCover 10 Build 10.0.20151101.190849”
Data.SubProducts.#1 = “JetBrains dotMemory 10.0 Build 10.0.20151101.190843”
Data.SubProducts.#2 = “JetBrains dotTrace 10 Build 10.0.20151101.191121”
Data.SubProducts.#3 = “JetBrains ReSharper C++ 10 Build 10.0.20151101.190505”
Data.SubProducts.#4 = “JetBrains ReSharper 10 Build 10.0.20151101.194151”
Data.ManagedThreadName = “JetPool (S) Regular thread #4”
Data.SccRevisionEnv = “
Platform\Core\Shell:
    hg::wave04::501589B91D05C7FC53188838B729BFC5977F1F37

Platform\VisualStudio:
    hg::wave04::6D502BFBADF85A712F33A37A78496EE7272711A8

Data.VsVersion = 12.0.31101.0
HResult = COR_E_APPLICATION=80131600
StackTraceString = “
  at JetBrains.Application.Threading.Tasks.Scheduler.ThreadManagementUnit.AddTask(Task task)
     at JetBrains.Application.Threading.Tasks.Scheduler.JetScheduler.QueueTask(Task task)
     at System.Threading.Tasks.Task.ScheduleAndStart(Boolean needsProtection)
     at System.Threading.Tasks.Task.Start(TaskScheduler scheduler)
     at JetBrains.Application.Threading.Tasks.TaskEx.Started[TTask](TTask task, TaskScheduler scheduler, Boolean sync)
     at JetBrains.Application.Threading.Tasks.TaskBarrier.EnqueueTask(Task task)
     at JetBrains.Application.Threading.Tasks.TaskBarrier.EnqueueJob(Action action)
     at JetBrains.ReSharper.Psi.Impl.Search.Operations.Impl.FindImplementingMembersOperation`1.FindImplementingMembersInSubclasses(ITypeElement type, OverridableMemberInstance superMember, InheritanceKind foundMemberKind)
     at JetBrains.ReSharper.Psi.Impl.Search.Operations.Impl.FindImplementingMembersOperation`1.FindImplementingMembersInClass(ITypeElement type, OverridableMemberInstance superMember, InheritanceKind foundMemberKind)
     at JetBrains.ReSharper.Psi.Impl.Search.Operations.Impl.FindImplementingMembersOperation`1.<>c__DisplayClass14.<FindImplementingMembersInSubclasses>b__11()
     at JetBrains.Application.Threading.Tasks.TaskHost.<>c__DisplayClasse.<Create>b__a(Object state)
     at System.Threading.Tasks.Task.InnerInvoke()
     at System.Threading.Tasks.Task.Execute()
     at System.Threading.Tasks.Task.ExecutionContextCallback(Object obj)
     at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
     at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
     at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot)
     at System.Threading.Tasks.Task.ExecuteEntry(Boolean bPreventDoubleExecution)
     at System.Threading.Tasks.TaskScheduler.TryExecuteTask(Task task)
     at JetBrains.Application.Threading.Tasks.Scheduler.JetSchedulerThread.EnqueueNextTask()
     at JetBrains.Application.Threading.Tasks.Scheduler.JetSchedulerThread.ThreadPoolProc()
     at System.Threading.ThreadHelper.ThreadStart_Context(Object state)
     at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
     at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
     at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
     at System.Threading.ThreadHelper.ThreadStart()

RSRP-459855: Incorrect "Expression is always false" after call to Equals(a,b)

$
0
0
Reporter Drew Noakes (drewnoakes) Drew Noakes (drewnoakes)
Created Jul 19, 2016 1:28:40 PM
Updated Jul 19, 2016 1:28:40 PM
Subsystem Code Analysis - Annotations
Assignee Alexander Shvedov (shvedov)
Priority Normal
State Submitted
Type Bug
Affected versions 2016.2
Fix version No Fix versions
Fixed In Version ReSharper Undefined
VsVersion All Versions
public void Foo([CanBeNull] string f)
{
if (Equals(f, "Hello"))
return;
if (f == null) // Expression is always false
return;
}

If you remove the first two lines of the method, the warning goes away.

If you use string.Equals(s) the problem persists, however using == makes the problem go away.

Note that I'm using the new 'Implicit not-null' setting.
Viewing all 106942 articles
Browse latest View live