The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
2answers
83 views

Linq, XmlNodes, foreach's and exceptions

Consider the following code: using System; using System.Collections.Generic; using System.Linq; using System.Xml; using System.Xml.Linq; namespace ConsoleApplication1 { class Program { ...
8
votes
3answers
186 views

In go, is there a way to execute code on termination of the program?

I know you can define functions called init in any package, and these function will be executed before main. I use this to open my log file and my DB connection. Is there a way to define code that ...
2
votes
1answer
43 views

IEnumerable<T> result from a method and deferred execution

I understand deferred execution in LINQ as explained here: What are the benefits of a Deferred Execution in LINQ? However, deferred execution can lead to bugs especially in multithreaded scenarios ...
0
votes
1answer
131 views

Wordpress - How to defer parsing of Javascript to execute after DOM loads?

I am using wp_enqueue_scripts() to set my JS files and I am putting them in the footer using the last parameter But testing in gtmetrix, I still see that I need to defer parsing of Javascript. How ...
3
votes
4answers
153 views

Cache a Linq Query - is this possible?

So, this may seem like an edge case, but I'm simply wondering if this is possible. What I have is a combination of a static set and deferred set wrapped in an IEnumerable - for example: public ...
-1
votes
2answers
52 views

Enumerable: is “materialize” an official term? [closed]

Is "materialize" a good name for a code like this, or is there a better (and official) one? enumerable as ICollection<T> ?? enumerable .ToArray() EDIT: I clarified the code (and its purposes) ...
1
vote
1answer
62 views

defer script execution for some time

Is it possible, in javascript, to defer the execution of a self-execution function that resides at the top level closure? (For you to understand, jQuery uses this. It has a self-execution function at ...
0
votes
1answer
64 views

Is it possible to achieve/preserve deferred execution over WCF?

Initially I had a LINQ query (say EF or any other) with expected deffered execution: class Provider : IProvider { public IEnumerable<Any> GetSome() { yield return new Any(); // ...
0
votes
1answer
138 views

About deferred execution of IEnumerable

In the following code, I understand the second initialization prints one "outside" and three "inside". But why does the first does not print at all, I expect it to print one "outside". ...
11
votes
1answer
137 views

When using yield within a “using” statement, when does Dispose occur?

I have a question regarding deferred execution and the disposing of data. Consider the following example: private IEnumerable<string> ParseFile(string fileName) { using(StreamReader sr = ...
2
votes
2answers
107 views

What is the best bucket size for a task queue filled with many deferred tasks in Google App Engine?

My Google App Engine application is adding a large number of deferred tasks to a task queue. The tasks are scheduled to run every x seconds. If I understand the bucket-size property b correctly, a ...
3
votes
2answers
75 views

Method not getting called correctly when passing Func<T1, T2> as argument

I've been trying to get this method to work since yesterday and have taken to pulling my hair out - Basically, I have a method that retrieves articles from a database. Below is the method code: ...
1
vote
3answers
73 views

Is the order of execution of Linq the reason for this catch?

I have this function to repeat a sequence: public static List<T> Repeat<T>(this IEnumerable<T> lst, int count) { if (count < 0) throw new ...
3
votes
1answer
168 views

Streaming WCF large number of objects

I am faced with writing a WCF server running on an IIS to be consumed by other platforms on different computers. I need to return a large number of objects (serialized) to the clients. I need it to ...
-3
votes
2answers
127 views

Credit card payment gateway [closed]

1) Customer commits to buy a product. 2) Customer is directed to payment gateway to "capture card details" but no money debited (pre-authorised). 3) Upto 7 days later the funds are debited via a ...
3
votes
1answer
108 views

Dart: Is using a zero duration timer the supported way of deferring work to the event loop

I discovered by experimenting that creating a timer with a duration of 0 allows me to defer work into the event queue. I really like this feature, because it allows avoiding a lot of nasty reentrancy ...
0
votes
1answer
241 views

jQuery Deferred Object and AJAX Call

I am in a situation where I need to create a table using multiple AJAX Calls. I make an ajax request and get a JSON object with an array of elements (lets say 5). Run it through a for loop and at ...
7
votes
4answers
175 views

Does LINQ deferred execution occur when rendering the view, or earlier?

Given a very basic LINQ that is returned to a MVC view, at what exact point does the deferred execution fire? In the controller: public ActionResult Index() { var model = _fooService.GetAll(); ...
0
votes
0answers
273 views

Rails 3 - how to defer parsing of JavaScript

I am trying to optimize my website and one of the suggestions I got was to defer parsing of JavaScript. I have googled it for a couple of hours but I haven't come across an elegant solution to do this ...
0
votes
3answers
187 views

Attempted to read or write protected memory in a Windows Forms app

As a preface, I've looked at every StackOverflow question matched by searching for this error (25 of them or so), and none of them seemed to address the problem I'm having. I'm building up a ...
0
votes
1answer
113 views

Does this extension method efficiently materialize my IQueryable?

So I recently discovered that you can force Entity Framework not to translate your projection into SQL by specifying a Func<T, TResult> to the .Select() extension method rather than an ...
1
vote
0answers
69 views

Defer MDB execution to specific Date/Time

I have a Java EE 5 MDB-driven JMS system running on WebLogic 10.3.5, for delivering announcements via Email/IM/SMS. I have a requirement to specify a Date/Time window that announcements should be ...
1
vote
0answers
111 views

jQuery - Deferreds waiting for an array of ajax requests to complete even failures

How can execute a function after a number of ajax requests have all completed regardless of whether they succeeded or error-ed out? I've been trying to use $.when.apply(this, array) to pass an array ...
2
votes
2answers
991 views

When to use LINQ's .ToList() or .ToArray()

After running this code: var input = new List<T>( ... ); var result = input.Select( t => new U(t) ); U first1 = null; foreach ( U u1 in result ) if ( first1 == null ) first1 = ...
0
votes
0answers
103 views

Deferred execution strategy in C++

I have a callback implementation in which an unknown third party calls a function pointer in my code. However, an issue in a lot languages is triggering code after a function returns. For instance, ...
0
votes
1answer
70 views

Deferred execution vs deferred **data source** evaluation

I'm a big fan of deferred execution and all that jazz, but now I got slightly different problem. Consider the following first naïve implementation of a process monitor that simply displays all the ...
0
votes
4answers
178 views

Delay a function until $ becomes available

Yahoo suggests to load scripts at the bottom of an HTML pages for performance reasons. I use HTML5 Boilerplate, which honour the rule. The problem with this approach is that jQuery is loaded at the ...
0
votes
2answers
50 views

Doubts about deferred execution

Suppose I have this : IEnumerable<MyObject> StructsTemp; I wrote n queries on StructsTemp, so that it populates from the DB, and so on. Later, I execute them calling .ToList() : ...
1
vote
1answer
96 views

Deferring JavaScript Execution In Non-WebKit Browsers

I'm trying out Ryan Fioravanti's neat-o technique for deferring JavaScript execution. It's described in slide 27 and slide 28 of his presentation at Google I/O. In WebKit browsers, it works great, ...
2
votes
2answers
78 views

why there is no response_finished signal in Django?

I am trying to implement some kind of background task queue in Django, because Celery is too huge & complex, then it occured to me that, there is already a signal called request_finished ...
1
vote
1answer
148 views

Delayed rendering of components outside of the viewport in Flex

I am looking for some advice in regards to getting a very quick display of our reports. The problem I am working with is I receive an XML data structure that defines our layout. The report can be ...
3
votes
3answers
139 views

Deferred evaluation with lambda in Python

In a loop, I am trying to defer the comparison the two value()s of two Nodes to a later time. class Node(): def __init__(self, v): self.v = v def value(self): return self.v ...
1
vote
0answers
280 views

Defer parsing of facebook javascript

I am running a website that employs facebook connect, comments etc. When I run gtmetrix for analysis on my site speed, it always informs me that I have to defer javascript execution for faster speeds. ...
0
votes
1answer
87 views

MessageBox.Show and deferred / delayed update

I'm sorry, I have no idea how to title this question. I've written an explanation for this error about 10 times and then delete it as it isn't clear - forgive me, I'm jumping straight into the code ...
1
vote
1answer
738 views

Add defer attribute to javascript_include_tag Rails

Is there some way to add the defer attribute easily using the javascript_include_tag helper in Rails? I.e., is there some easy way to turn <%= javascript_include_tag "blah.js" %> into ...
1
vote
3answers
75 views

iterating over a Where'd collection

I think this is a defered execution issue, but maybe i am missing the point somewhat I have a loop thus List<int> processed = new List<int>() foreach(KeyValuePair<int,bool> tbl1 in ...
0
votes
1answer
173 views

Entity Framework and deferred execution on lazy loaded ICollection

I'm using Entity Framework 4.1 and I have a one to many relationship. When I query the lazy loaded ICollection on the one side of the relationship the whole recordset is returned and it doesn't defer ...
3
votes
1answer
213 views

Does it make sense for an ASP.NET Web API method to return IQueryable<T>?

I'm working on a project that uses the new Web API and I noticed somebody is returning an IQueryable<T> from a Get method. My understanding is that IQueryable is useful for improving ...
7
votes
4answers
229 views

Is it possible to determine if an IEnumerable<T> has deffered execution pending?

I have a function that accepts an Enumerable. I need to ensure that the enumerator is evaluated, but I'd rather not create a copy of it (e.g. via ToList() or ToArray()) if it is all ready in a List or ...
0
votes
1answer
96 views

Queue Function Without CRON or Shell

I am developing a system with Symfony which has a notification module integrated into it. The purpose of the script is to allow for a wide range of compatibility, and as such the requirements would ...
0
votes
2answers
66 views

Deferred execution value unchanged

Say I have IQueryable<Car> cars. I iterate it such as: foreach (Car c in cars) { c.Doors = 2; } Why does c.Doors contain the original value after the foreach, instead of the changed ...
1
vote
1answer
233 views

LINQ functions and DataContext disposal, deferred execution

So I need some advice and insight here. Thanks in advance for your thoughts. I have developed static functions that return a single record from a LINQ entity. Like so: FooRecord GetRecord(Guid id) ...
0
votes
1answer
172 views

load scripts asynchronosly and have a fallback

My objective here is to load scripts asynchronously when the browser supports defer or async. If the browser supports neither I don't care about asynchronous loading (not my bad). I want to make sure ...
0
votes
1answer
227 views

Server-side execution of Entity Framework Query combined with Stored Procedure

Is it possible to call a StoredProcedure from an ObjectQuery? Basically I want to dynamically build a query and execute it server-side. You can imagine each query to be part of a search where you can ...
0
votes
2answers
236 views

defer loading of JS libraries AND several document ready functions

i managed to defer loading of JS libraries and also one document ready function, following this post Possible to defer loading of jQuery? However, I have multiple document ready functions that are ...
3
votes
1answer
474 views

Dealing with Arrays of Deferred Objects

Since using $.Deferred I've run into this scenario a couple times: I have a list of values each of which yields a Deferred Object in some way and I want to execute a callback once all of the Deferred ...
0
votes
0answers
88 views

How to adjust and execute Ant task from BeanShell script?

I have large jar task in my ant build file. But I don't want to execute it immediately. I want to add some filesets to the task and only than execute it. I don't want to define the jar task completely ...
4
votes
1answer
449 views

LINQ: using IEnumerable.Count() or IList.Count for better performance

Based on the following code: var grouped = filters.GroupBy(p => p.PropertyName); int numOfRowElements = grouped.Count(); foreach (IGrouping<string, PropertyFilter> ...
2
votes
3answers
501 views

When to force LINQ query evaluation?

What's the accepted practice on forcing evaluation of LINQ queries with methods like ToArray() and are there general heuristics for composing optimal chains of queries? I often try to do everything in ...
1
vote
1answer
135 views

Fine-grained control of deferred execution when implementing IQueryable<T>

I am implementing IQueryable, and so far have only implemented an expression visitor for 'Where' calls and everything else is currently unsupported. The expression is translated into native T-SQL. I ...

1 2