The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
10 views

Firefox Site Pinning

Is it possible to detect if your site is pinned in Firefox just as it is possible to do so in Internet Explorer 9 and above? If so, how do you do it? Thanks in advance!
2
votes
1answer
65 views

Certificate Pinning - Public Key only?

I would like to pin the public key of an root CA (verisign - http://www.verisign.com/repository/roots/root-certificates/PCA-3G5.pem) into my iOS app. Is is better to pin the public key or the ...
0
votes
1answer
74 views

How to resolve 'ImportError: No module named querystring'?

When installing a product with several dependencies in a Plone-4.1.6-site, I get on site creation: 2013-03-06 09:18:38 ERROR Zope.SiteErrorLog 1362557918.010.833996902243 ...
1
vote
1answer
175 views

Xen VPCU Pinning to 15 CPU's

I am trying to pin my domU to 15 CPUs (16-31) on a 64-core machine. I have booted the system with the following kernel options: dom0_vcpu_pin=true and then later with "xm vcpu-pin domU vpu 16-31" I ...
0
votes
1answer
693 views

Android: HttpsUrlConnection and Pinset Example

I was watching Google I/O 2012's Security and Privacy in Android Apps. At around 37:55, Kenny Root talks about certificate pinning and tells us to visit the docs for HttpsUrlConnection to see how to ...
0
votes
2answers
213 views

What to pass for pinned string in P/Invoke?

Assume this C function: void do_something(const char* str) It stores the string somewhere for later reference. Furthermore, I have this signature in C# to call this function: ...
1
vote
1answer
138 views

Pinning parallel process using UNix system calls

for i in `seq 1 8` ; do (./runProgram &) done Dear Fellows, I know how to create parallel processes by creating 8 independent processes, the next thing I am in search for is how to i-Run 8 ...
8
votes
2answers
566 views

Pinned Instances for GC - Not traceable from my managed code

So I am using WPF 3.5 with MVVM + DataTemplate method to load 2 views on the GUI. I have observed while memory profiling that items generated as part of items container of items controls are pinned ...
4
votes
3answers
178 views

@ at start of WP7 tile title replaced by path: known issue?

I'm using the ShellTile.Create method to create a secondary tile. Users of the app I've developed have noticed that if the entity they are pinning has a name that starts with "@" (which is then used ...
4
votes
2answers
542 views

How to prevent an app from being pinned in Windows 7?

I am trying to prevent the user from pinning my .NET app to the taskbar. I've found some code on the Old New Thing that does just that. However, it is in C++. #include <shellapi.h> #include ...
0
votes
2answers
243 views

Storing a reference to a object in C#

I'm currently working on a VariableWatcher class in C#. What I want to do, is to raise a event every time a variable is changed to a specific value. For example: I have a bool a , which is false. I ...
5
votes
3answers
512 views

Do I need to pin an anonymous delegate?

I am calling CopyFileEx from a C# application with an anonymous delegate being passed into the LPPROGRESS_ROUTINE parameter in order to get notifications on the file copy progress. My question is, ...
2
votes
1answer
1k views

Manually unpinning a byte[] in C#?

In the following code, it seems that the client.Connect.Receive is pinning the "byte[] result" permanently, causing the memory to never be freed (as it's always pinned). I'm looking for a way to tell ...
4
votes
3answers
4k views

GCHandle, Marshal, managed and unmanaged memory : To pin or Not To Pin

As Hans Passant wishes here is the scenario of mine. I have a mixed mode application in which the native code does all the hard work while respecting the performance and managed code is responsible ...
2
votes
1answer
531 views

pinned memory opencl, has anybody successfully used it?

I used the CL_MEM_ALLOC_HOST_PTR flag with my clCreateBuffer calls, but the Compute Profiler shows all my "host mem transfer type" as being Pageable. I tried it in two different kernel setups, but the ...
7
votes
2answers
958 views

In visual studio 2010 what is/how to set the hotkey to pin and unpin an active pane?

I often run tests and need the test-result pane to be pinned. In other time, I mostly work with writting codes and compile - I prefer to have the output pane (which shared the same space with ...
2
votes
2answers
2k views

GridSplitter with button for pinning like behavior

I'm looking to extend the GridSplitter in some way to add a button which when click expands or collapses the control to one of the specified sides of the splitter. I've found a solution that works ...
4
votes
3answers
453 views

Indexing into arrays of arbitrary rank in C#

I need to iterate over an array of arbitrary rank. This is for both reading and writing, so GetEnumerator will not work. Array.SetValue(object, int) doesn't work on multidimensional arrays. ...
2
votes
5answers
3k views

c# pin a form to the deskop

I am trying to pin a form to the desktop, like the gadget sidebar. It should not be affected by Win+D and Show desktop buttons. Which is the best methode for this? I can find the Progman and set ...
1
vote
2answers
1k views

Windows 7, VB6, Launcher App and Pinning to the Taskbar

We have an application that has a "launcher" app that sits there with a pretty UI while the main app loads in the background. Both of these apps are written in VB6 (sigh). In Windows 7, if user's ...
7
votes
5answers
2k views

Pinning an updateble struct before passing to unmanaged code?

I using some old API and need to pass the a pointer of a struct to unmanaged code that runs asynchronous. In other words, after i passing the struct pointer to the unmanaged code, the unmanaged code ...