Android Studio Profiler Showing Garbage values - android-studio

I'm trying to see the response but,not able to see because Garbage values are coming.Please refer the link for screenshot.
https://i.stack.imgur.com/WX2v8.png

Related

Why isn't this zero search result triggering the No-Results found dialog?

This search produces zero results as you can see in the response body, but it is not triggering the zero results default dialog. I assume this means that if you create a custom results view, you must account for all possible scenarios of size = x?
This may require a deeper look at your capsule code since I am able to see a default "I couldn't find any [Concept]" without any issues.
I would recommend reaching out to the support team via the Contact Support option in the Help dropdown menu of Bixby Developer Studio so the team can look through your capsule code.

Microsoft Edge F12 and Microsoft Edge Dev Tools Preview crashes

The Microsoft Edge F12 tool and the Microsoft Edge Dev Tool Preview app crash on opening. This problem does not occur on same website using new Microsoft Edge Chromium version.
I am writing this question with the intent on self answering it, after 7 lost hours of debugging
I am developing an Excel Add-in using the new Microsoft Edge WebView for office-addins, which just rolled out, and replaces IE11 as the embedded IFrame in Excel with Edge (see https://developer.microsoft.com/en-us/office/blogs/microsoft-edge-webview-for-office-add-ins/). After this last month roll out, the problem presented.
The crash is predictable, occurs after 5 seconds after activating the tool. It occurs when using F12 tools in Edge browser, and when using the standalone Dev Tools Preview to remote connect to the Edge browser running in MS Excel.
(I won't put app event logs because I have already solved it)
This is a Microsoft bug, not a coding bug.
It always occurs when using Typescript and defining a multidimensional array with only one element, and only in an async function
async myFunc(){
let x:number[][] = [[9]]; //Edge F12 tool will crash simply by having this line
}
The problem does not occur in non async functions, and does not occur if the variable is defined as a class member. It does not occur if more than one element is defined. Workaround is to define the variable as private class member
public x:number[][] = [[9]]; //ok as member variable
let x:number[][] = [[9,2]]; //ok - even in async function
For those reading this who rightly ask "why would you want to define a multidimensional array with only 1 element". It is because MS Excel is a 2D array, and to set the value of cells the Excel API expects two dimensional arrays Excel.Range.values[][] =any[][]. So if you want to set the value of only one cell, you must supply a multidimensional array with only one value.
NB. I have not raised the bug with Microsoft as they are no longer supporting the Microsoft Edge Dev Tools preview, instead focusing on rolling out the Edge Chromium version, thus deprecating these tools. The problem does not occur in the Edge Chromium developer release, but I have no idea when Edge Chromium will be rolled out as the embedded browser in Excel (we only just left IE11 behind last month)
#JimbobTheSailor
Thank you for taking the time to report the issue and also coming back to provide the possible cause of the issue.
I know you have already spent a bunch of time on this issue, but I was hoping you could provide an example code file, or even npm package, that will cause the issue? I went and added your code and attempted to reproduce the issue, but I could not. GitHub Repo! By providing the entire package, or example, I can also see the different versions of TypeScript and other dependencies. You could also just list them here as well.šŸ™ƒ
If possible, and don't mind grabbing it, could you provide the version of Windows you are using? START | RUN | WINVER . Also, the version of the DevTools Preview? Example:
C:\Program Files\WindowsApps\Microsoft.MicrosoftEdgeDevToolsPreview_18.924.1.0_x64__8wekyb3d8bbwe
To run my sample all you have to do is:
npm install
npm run build:dev
npm start
...or the yarn equivalent.
This will build, sideload the app, and boot Excel. šŸ™ƒ

SSRS with Report Viewer issues not refreshing

Hi i wonder if anyone can help me, I am absolutely stuck on this one. I will start from the beginning so you understand what I am trying to accomplish.
I have a web page which displays total figures in a grid, below the grid I have a Report Viewer which displays these figures as a line graph via an SSRS report on the server. Recent requirements would like the grid to be filterable, so if they want to see totals for a specific customer or product. While I have this working I would also like the SSRS report within the report viewer to also so the same information.
Now I have this semi working, I have made the necessary changes to the report on the server and this is working correctly, next was to hook that all up with the Report Viewer. I also have this working to a degree. Basically what is happening is if the Async is flase then the report does not refresh even ater telling it to. If I turn Async on it works as expected on my computer with IIS7 however when I upload this to our server with IIS6 after the initial load, when a postback happens or when I try to filter the grid I just get a blank screen. Its like the report is not being displayed.
Any help would be appreciated as I have previously used SSRS with report viewer to get a different report based on option buttons which works, but this does not seem to on the server. Locally it is fine but not where it needs to be.
Give it a try . Set enable 32 bit to true
Below is how you do it from IIS7 manager:
1 Right click on the Application Pool and select ā€œAdvanced Settingsā€¦ā€ or select the same from the Actions pane after selecting the Application pool.
2 Change the ā€œEnable 32-bit Applicationsā€ to True (if you want the application pool to spawn in a 32-bit mode)
3 Click OK.
Ok so I figured it out and while it has taken me a while to get the time to post it on here, I thought I should, just in-case someone else comes across this issue.
So Async ="true" the report is displayed in the report viewer for the first time after any postback occurs I am left with a blank screen. If I turn Async = "false" then I get the report the first time but the report never refreshes. After fiddling for a while it got me thinking if it works the first time then that is all I need and just pass different parameters to the report. So I set Async = "false" and had a look as to how to completely reset the report viewer control. Turns out all I needed was ReportViwerControl.Reset(). This reset the control to its default like almost like we are using it for the first time. Then I apply the report details and parameters and hey presto the report works as expected and the report changes every time a filter is set.
I uploaded this to the server and it is working as expected. Quite why it wouldn't before I am unsure however, i do have to stress that the server is old and has old technology, the reason for IIS6. While our test server and my local copy have the latest technology.
Thank you all very much for your help.

Crm 2011 web resource debugger error- no source available

Please help here.
I put debugger statement in the Javascript function which is called on the onchange event of the field.But when the event is triggered i selected visual studio debugger. But i got the error messsge-No source available[There is no source code available for the curretn location. Couldn't understand why this happens or the cause for it.
Not sure if thatā€™s your case but Iā€™ve seen this behavior while using Xrm.Page.ui.refreshRibbon() in JS code.
I found two simple workarounds. The first and obvious one is to comment the refreshribbon line (if possible), the second is to use chrome IDE while debugging.

In Visual Studio 2012/2013 is there any way to filter out CodeReview shelvesets?

We've started doing code reviews in VisualStudio which is great however it creates a shelveset for each code review.
Now when I open the Find Shelvesets window, the list is polluted with all the code review shelvesets.
Is there any way to filter these out the CodeReview shelvesets from the list?
You can also take a look at Review Assistant which provides similar but more elaborated functionality as compared to built-in code review feature.
It allows you to review code without creating numerous shelvesets. So you won't experience the problem described above.

Resources