The tag has no wiki summary.

learn more… | top users | synonyms

27
votes
3answers
12k views

getApplication() vs. getApplicationContext()

I couldn't find a satisfying answer to this, so here we go: what's the deal with Activity/Service.getApplication and Context.getApplicationContext? In our application, both return the same object. In ...
17
votes
2answers
296 views

Exposing Symbols to $ContextPath

There are a variety of Internal`context functions that are useful, such as InheritedBlock, Bag and StuffBag, etc., as well as many useful Developer` fuctions. I wish to expose a selection of these ...
14
votes
4answers
31k views

How can I specify system properties in Tomcat configuration on startup?

I understand that I can specify system properties to Tomcat by passing arguments with the -D parameter, for example "-Dmy.prop=value". I am wondering if there is a cleaner way of doing this by ...
13
votes
6answers
315 views

What the heck is a context?

I'm starting to see Contexts everywhere I look. In ASP.NET MVC, there are ControllerContexts, RequestContexts, HttpContexts, FormContexts. In Entity Framework, you have ObjectContexts and ...
11
votes
4answers
1k views

How can I resolve this case of `Useless use of a variable in a void context`?

How can I resolve this case of Useless use of a variable in a void context? For example: my $err = $soap_response->code, " ", $soap_response->string, "\n"; return $err; I get warnings ...
11
votes
2answers
2k views

Instantiating a context in LINQ to Entities

I've seen two different manners that programmers approach when creating an entity context in their code. The first is like such, and you can find it all over the MSDN code examples: public void ...
11
votes
10answers
39k views

What is the reason behind “non-static method cannot be referenced from a static context”?

The very common beginner mistake is when you try to use a class property "statically" without making an instance of that class. It leaves you with the mentioned error message. You can either make the ...
10
votes
2answers
200 views

How can I return context sensitive return values in Perl 6?

In the summary of differences between Perl 5 and Perl 6, it is noted that the wantarray function is gone: wantarray() is gone wantarray is gone. In Perl 6, context flows outwards, which ...
10
votes
2answers
249 views

What is POI and what does it mean?

What is POI? I have seen this term being used several times in context of C++ Templates. What does it mean?
10
votes
2answers
16k views

Android: ProgressDialog doesn't show

I'm trying to create a ProgressDialog for an Android-App (just a simple one showing the user that stuff is happening, no buttons or anything) but I can't get it right. I've been through forums and ...
10
votes
1answer
1k views

jQuery: Adding context to a selector is much faster than refining your selector?

I just noticed that adding context to the selector is much faster than refining your selector. $('li',$('#bar')).append('bla'); Is twice as faster than: $('#bar li').append('bla'); Is this ...
9
votes
5answers
167 views

What is the better way to get Context?

According to this answer or the android's documentation there is several ways to get the Context in an app and pass it to an other class/method/whateveruneed. Let's say i'm in the Foo Activity and in ...
9
votes
2answers
131 views

Why doesn't this use of Begin[] work?

If we evaluate these lines one-by-one, x will be created in the context cc. Begin["cc`"]; x = 1; End[] However, if we evaluate them together, (Begin["cc`"]; x = 1; End[]) then x will be created ...
9
votes
1answer
1k views

jQuery add() function and the context of jQuery objects

Given the following HTML example... <div id='div1'>div one</div> <div id='div2'>div two</div> ...I found that the following jQuery code... $('#div1').click(function() { ...
9
votes
4answers
859 views

Windows: avoid pushing full x86 context on stack

I have implemented PARLANSE, a language under MS Windows that uses cactus stacks to implement parallel programs. The stack chunks are allocated on a per-function basis and are just the right size to ...
9
votes
3answers
4k views

Which Tomcat 5 context file takes precedence?

Tomcat documentation says: The locations for Context Descriptors are; $CATALINA_HOME/conf/[enginename]/[hostname]/context.xml $CATALINA_HOME/webapps/[webappname]/META-INF/context.xml On my server, ...
8
votes
0answers
30 views

Ltac-tically abstracting over a subterm of the goal type

As a rough and untutored background, in HoTT, one deduces the heck out of the inductively defined type Inductive paths {X : Type } : X -> X -> Type := | idpath : forall x: X, paths x x. ...
8
votes
1answer
624 views

Is it possible to share an opengl framebuffer object between contexts/threads?

I want to render my scene in one thread and then blit the result in window owned by another thread. To avoid reading the framebuffer back to cpu memory, I would like to use a framebuffer object. So ...
7
votes
2answers
343 views

When to call activity context OR application context?

There has been a lot of posting about what these two contexts are.. But I'm still not getting it quite right As I understand it so far: Each is an instance of its class which means that some ...
7
votes
4answers
134 views

Do not merge the context of contiguous matches with grep

If I run grep -C 1 match over the following file: a b match1 c d e match2 f match3 g I get the following output: b match1 c -- e match2 f match3 g As you can see, since the context around the ...
7
votes
1answer
997 views

Why does AlertDialog.Builder(Context context) only accepts Activity as a parameter?

In my ongoing learning process (dialog boxes this time), I discovered that this works: AlertDialog.Builder builder = new AlertDialog.Builder(this); While the following doesn't work (fails at ...
7
votes
1answer
220 views

Can DDD repositories be aware of user context?

Say you were to develop a system which availability of entities and domain logic is highly dependent on user context. Would it make sense to handle the user context sensitivity within repositories by ...
7
votes
4answers
654 views

C# - Add context menu item to all text boxes operating system wide

I know it is possible to extend the context menu of the standard file however is there a way to add items to the system-wide text box context menu? This would be so the new item appears in every text ...
7
votes
3answers
447 views

How do I pass the this context to a function?

I thought this would be something I could easily google, but maybe I'm not asking the right question... How do I set whatever "this" refers to in a given javascript function? for example, like with ...
7
votes
2answers
826 views

Global Entity Framework Context in WPF Application

Good day, I am in the middle of development of a WPF application that is using Entity Framework (.NET 3.5). It accesses the entities in several places throughout. I am worried about consistency ...
7
votes
6answers
3k views

Why doesn't my Perl grep return the first match?

The following snippet searches for the index of the first occurrence of a value in an array. However, when the parentheses around $index are removed, it does not function correctly. What am I doing ...
6
votes
2answers
68 views

Is there a way to pass context to bind in jQuery?

I'm inside a javascript object (vr roxx :) ), but every time I do an event bind with jQuery I have to include the main object instance's context through the data parameter in order to work with it. ...
6
votes
1answer
463 views

IsolatedContext vs. AndroidTestCase.getContext()

I'm writing some tests to test my sqllite database code. Can someone here explain if there would be a difference writing those tests using the context I get from AndroidTestCase.getContext() or using ...
6
votes
1answer
207 views

Spring hierarchical context

I have following problem: I'm trying to implement Spring in existing ear application (using Jboss as App Server and Hibernate as ORM). The ear application consists of war(basically few simple ...
6
votes
3answers
5k views

How to achieve conditional resource import in a Spring XML context?

What I would like to achieve is the ability to "dynamically" (i.e. based on a property defined in a configuration file) enable/disable the importing of a child Spring XML context. I imagine something ...
6
votes
2answers
132 views

How can I tell if a set of parens in Perl code will act as grouping parens or form a list?

In perl, parentheses are used for overriding precedence (as in most programming languages) as well as for creating lists. How can I tell if a particular pair of parens will be treated as a grouping ...
6
votes
4answers
3k views

How do I use Perl's localtime with print to get the timestamp?

I have used the following statements to get the current time. print "$query executed successfully at ",localtime; print "$query executed successfully at ",(localtime); print "$query executed ...
6
votes
3answers
1k views

Is it possible to add an item to the right-click context menu of a Mac OS programmatically?

I have a program that works with a variety of files on both the Windows and Mac OS. I would like to give the user the option of adding a new option to their right click/control click context menu to ...
5
votes
1answer
95 views

Static memory leak with Context

I've been doing some researching and I'm still not 100% certain if this could cause an based memory leak. I'm using a button view (v.context). I think I'm OK since the context isn't stored as Static, ...
5
votes
2answers
570 views

Passing context in iOS to use Core Data with Storyboard

I'm having some problems in passing context from the app delegate to the view controller. I've found many tutorials on the internet, and all suggest to use the didFinishLaunchingWithOptions method to ...
5
votes
1answer
108 views

CAOpenGLLayer displaying remote Context

I have a sub-classed CAOpenGLLayer class which overrides drawInCGLContext there I draw a rectangle with OpenGL. The CAOpenGLLayer is added to a CALayer and shown. So when I would like to draw ...
5
votes
2answers
407 views

Obtaining Context from an embedded Glassfish 3.1

Does anyone now a way to obtain server Context using Embeddable API (using org.glassfish.embeddable.GlassFish, not javax.ejb.embeddable.EJBContainer)? It would be possible if there's a way to obtain ...
5
votes
3answers
372 views

Slim down Eclipse context menus

I have several plugins (Apatana, SVN, Pydev, Zend Debugger, PHP) installed in my Eclipse 3.5.2 (Ubuntu 10.10) installation. The one problem that keeps bugging me since I first used Eclipse years ago ...
5
votes
1answer
4k views

Difference between Activity Context and Application Context

This has me stumped, I was using this in Android 2.1-r8 SDK: ProgressDialog.show(getApplicationContext(), ....); and also in Toast t = Toast.makeText(getApplicationContext(),....); using ...
5
votes
2answers
232 views

What is the difference between an object's scope and it's context in javascript?

In the vernacular, scope and context have a lot in common. Which is why I get confused when I read references to both, such as in the quote below from an article on closures: Scope refers to ...
5
votes
1answer
746 views

Scala closure context

I am not a Groovy expert, but I did read the book "Groovy in Action". In Groovy, each closure comes with a "context", where the items inside the closure can get access to pseudo-variables like "this", ...
5
votes
3answers
634 views

Is it possible to use Seam in a JBoss timed service?

I've started to write some new JBoss timed service that was meant to use some existing seam components. But it seems that I can't access these components because of non-existing contexts. Is it ...
5
votes
6answers
971 views

How do I check in PHP that I'm in a static context (or not)?

Is there any way I can check if a method is being called statically or on an instantiated object? Jamie
5
votes
6answers
2k views

Is there a Perl shortcut to count the number of matches in a string?

Suppose I have: my $string = "one.two.three.four"; How should I play with context to get the number of times the pattern found a match (3)? Can this be done using a one-liner? I tried this: my ...
5
votes
1answer
933 views

What is System.ContextBoundObject?

What is ContextBoundObject used for? The documentation mentions 'contexts', which seem to be programatically defined, but fails to give any explanation as to what one is.
5
votes
2answers
1k views

LoadFromContext was detected

HI all misters When I try Debug my project (unit tests) i get the following error: LoadFromContext was detected Message: The assembly named 'Microsoft.VisualStudio.QualityTools.Common' was loaded ...
5
votes
3answers
1k views

What is the difference between the scalar and list contexts in Perl?

What is the difference between the scalar and list contexts in Perl and does this have any parallel in other languages such as Java or Javascript?
5
votes
2answers
434 views

Call function with “this”

I have an onclick handler for an <a> element (actually, it's a jQuery-created handler, but that's not important). It looks like this: function handleOnClick() { if(confirm("Are you ...
4
votes
1answer
74 views

Reassignment of $this in PHP

(I understand this may be a touchy decision, but I'd appreciate we avoid answers such as "Please don't.") I have a class whose constructor takes a callback as an argument. In this callback, I think ...
4
votes
3answers
197 views

The difference between context and scope in CDI - and Java at all

Studying JSR-299, I read the section 5.1 of the Weld reference which explains how scopes works in CDI. Apparently, context is a concept closely related to scope. I have understood a bit about what ...

1 2 3 4 5 18