Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

22
votes
2answers
2k views

How can you diff two pipelines in Bash?

How can you diff two pipelines without using temporary files in Bash? Say you have two command pipelines: foo | bar baz | quux And you want to find the diff in their outputs. One solution would ...
17
votes
7answers
9k views

How do you determine if WPF is using Hardware or Software Rendering?

I'm benchmarking a WPF application on various platforms and I need an easy way to determine if WPF is using hardware or software rendering. I seem to recall a call to determine this, but can't lay ...
12
votes
3answers
214 views

frameworks for representing data processing as a pipeline

Most data processing can be envisioned as a pipeline of components, the output of one feeding into the input of another. A typical processing pipeline is: reader | handler | writer As a foil for ...
11
votes
3answers
489 views

-> operator in Clojure

Is the -> operator in Clojure (and what is this operator called in Clojure-speak?) equivalent to the pipeline operator |> in F#? If so, why does it need such a complex macro definition, when (|>) is ...
11
votes
5answers
276 views

C++ Iterator Pipelining Designs

Suppose we want to apply a series of transformations, int f1(int), int f2(int), int f3(int), to a list of objects. A naive way would be SourceContainer source; TempContainer1 temp1; ...
10
votes
2answers
1k views

Efficient XSLT pipeline in Java (or redirecting Results to Sources)

I have a series of XSL 2.0 stylesheets that feed into each other, i.e. the output of stylesheet A feeds B feeds C. What is the most efficient way of doing this? The question rephrased is: how can ...
9
votes
1answer
152 views

What exactly is a dual-issue processor?

I came across several references to the concept of a dual issue processor (I hope this even makes sense in a sentence). I can't find any explanation of what exactly dual issue is. Google gives me ...
7
votes
3answers
4k views

IIS7 Integrated vs Classic Pipeline - which uses more ASP.NET threads?

With integrated pipeline, all requests are passed through ASP.NET, including images, CSS. Whereas, in classic pipeline, only requests for ASPX pages are by default passed through ASP.NET. Could ...
7
votes
15answers
2k views

Benefits of using short-circuit evaluation

boolean a = false, b = true; if ( a && b ) { ... }; In most languages, b will not get evaluated because a is false so a && b cannot be true. My question is, wouldn't short circuiting ...
6
votes
6answers
124 views

left-side failure on pipe in bash?

I've grown fond of using a generator-like pattern between functions in my shell scripts. Something like this: parse_commands /da/cmd/file | process_commands However, the basic problem with this ...
6
votes
1answer
373 views

Parallel pipelining

(fileNameToCharStream "bigfile" |>> fuse [length; splitBy (fun x -> x = ' ' || x = '\n') removeEmpty |>> length; splitBy (fun x -> x = '\n') keepEmpty |>> length; ]) ...
5
votes
2answers
91 views

closing stdout of piped python subprocess

Here is what I can read in the python subprocess module documentation: Replacing shell pipeline output=`dmesg | grep hda` ==> p1 = Popen(["dmesg"], stdout=PIPE) p2 = ...
5
votes
4answers
264 views

bash script: how to save return value of first command in a pipeline?

Bash: I want to run a command and pipe the results through some filter, but if the command fails, I want to return the command's error value, not the boring return value of the filter: E.g.: if ...
5
votes
2answers
341 views

Powershell Get-ChildItem progress question

So, I've got a set of directories 00-99 in a folder. Each of those directories has 100 subdirectories, 00-99. Each of those subdirectories has thousands of images. What I'm attempting to do is ...
4
votes
3answers
243 views

How to make this asynchronous method invokation working?

I was trying to develop a method pipeline using asynchronous method invocation. The logic for the pipeline is as follows There are n data in a collection that have to be fed into m number of methods ...
4
votes
5answers
241 views

In a shell (bash) How can I execute more than one command in a pipeline?

I'm trying pipe the output of an awk command through more than one command at once in a Bash shell, following my knowledge I'm coming up with this: awk '$13 ~ /type/ {print $15}' filename.txt | (wc ...
4
votes
3answers
536 views

RX IObservable as a Pipeline

Currently, I'm using the RX Framework to implement a workflow-like message handling pipeline. Essentially I have a message producer (deserializes network messages and calls OnNext() on a Subject) and ...
4
votes
2answers
2k views

IIS 7 - Windows Authentication not working

We have several web apps that use Windows Authentication that worked fine on IIS6. After deploying them to IIS7, Windows Authentication no longer works (we get 401.2 errors) UNLESS we set the web app ...
3
votes
2answers
167 views

Play audio and video with a Pipeline in Gstreamer (Python)

Is there a way make a pipeline that will play any video file (which will contain audio too)? I have tried linking elements like: filesrc -> decodebin along with queue -> audioconvert -> ...
3
votes
1answer
111 views

Gstreamer+python: adding and removing audio sources while pipeline is running

I'm working on a sample python script, originally found here: Adding and removing audio sources to/from GStreamer pipeline on-the-go. The aim is to make a script such as the one above, able to insert ...
3
votes
2answers
110 views

Do switch statements in C empty the x86 pipeline?

Does hitting a switch statement in C (assuming that it uses a jump table) empty the pipeline of an x86 processor? I'm thinking that it might because it would need the result of the table lookup to ...
3
votes
1answer
251 views

Does one nginx worker process handle two requests concurrently or one by one?

The really cool part about the filter chain is that each filter doesn't wait for the previous filter to finish; it can process the previous filter's output as it's being produced, sort of ...
3
votes
2answers
228 views

Problem with pipeline implementation

I have created an application which uses the pipeline pattern to do some processing. However, I noticed that when the pipeline is run multiple times in a row it tends to get slower and slower. This ...
3
votes
2answers
146 views

How to create an iterator pipeline in Python?

Is there a library or recommended way for creating an iterator pipeline in Python? For example: >>>all_items().get("created_by").location().surrounding_cities() I also want to be able to ...
3
votes
2answers
103 views

When does routing take place in the pipeline?

When does routing take place in the ASP.NET MVC pipeline? ASP.NET Application Life Cycle Overview for IIS 7.0 Is it in step number 2 (Perform Url Mapping)? I intend to have a few routes that have ...
3
votes
1answer
138 views

Pipelining String in Powershell

I'm trying to make a simple PowerShell function to have a Linux-style ssh command. Such as: ssh username@url I'm using plink to do this, and this is the function I have written: function ssh { ...
3
votes
2answers
517 views

Parallel pipeline in C#

I want to create a parallel pipeline in C#. I have declaered an Interface named IOperation: public interface IOperation<Tin, Tout> { BlockingCollection<Tout> ...
3
votes
1answer
612 views

Sitecore Workflow and Pipelines

I'm trying to implement a basic Javascript confirmation box on a workflow command (e.g. "are you sure you want to edit this?"). Depending on whether a users clicks yes or no, I want to move to a ...
3
votes
3answers
488 views

How to implement true function pipeline in C#?

How to create a true function pipeline using C#? I got some idea like as follows, but it is not a true pipeline public static IEnumerable<T> ForEachPipeline<T>(this IEnumerable<T> ...
3
votes
2answers
281 views

How to simplify this xproc pipeline?

I've just started digging into XProc (using Calabash). I have a series of XSLT transformations I want to apply to a single input document to produce a single output document. I was previously using ...
3
votes
2answers
373 views

Piping another parameter into the line in F#

Is piping parameter into line is working only for functions that accept one parameter? If we look at the example at Chris Smiths' page, // Using the Pipe-Forward operator (|>) let ...
3
votes
3answers
95 views

Stopping a program if the next process in the pipeline was stopped

when I'm running the following pipeline: cat my_large_file.txt | head | wc the process stops almost immediately. OK. but when I run my java program java MyProgramReadALargeFile my_large_file.txt ...
3
votes
1answer
615 views

Using Scala Actors to create sth like a Pipeline

I am struggling with the following problem for a week by now and need some advice. def query(title: String): List[Search] // query("Terminator") => ["Terminator I", "Terminator II", "Terminator ...
3
votes
1answer
749 views

Powershell: how do you read & write I/O within one pipeline?

I'd like to be able to type quick, simple commands that manipulate files in-place. For example: # prettify an XML file format-xml foo | out-file foo This won't work because the pipeline is ...
3
votes
4answers
676 views

Is it possible to terminate or stop a PowerShell pipeline from within a filter

I have written a simple PowerShell filter that pushes the current object down the pipeline if its date is between the specified begin and end date. The objects coming down the pipeline are always in ...
3
votes
2answers
255 views

Flexible compiler pipeline definitions

I'm developing a compiler framework for .NET and want a flexible way of defining pipelines. I've considered the following options: WWF Custom XML pipeline description Custom pipeline description in ...
2
votes
2answers
119 views

Performance of x86 rep instructions on modern (pipelined/superscalar) processors

i've been writing in x86 assembly lately (for fun) and was wondering whether or not rep prefixed string instructions actually have a performance edge on modern processors or if they're just ...
2
votes
1answer
57 views

Biztalk: XML containing email mapped to CSV, send as attachment

Here is my situation: - I receive an XML which contains an email address in the field (ie xxxx@hotmail.com). - This XML is then mapped to a CSV (The Email is not mapped to the CSV and it does not ...
2
votes
2answers
205 views

Razor page lifecycle in ASP.NET MVC

My question in general about render pipeline, i have seen ASP.NET MVC pipeline scheme and there was a step called View Engine, so how it works? I want to know about this scenarios: What is rendered ...
2
votes
2answers
172 views

MIPS Pipeline Forwarding (double data hazard)

In the Patterson & Hennessy Book: But can't this be handled as a EX hazard: Why is forwarding done in the MEM stage? And how? With 1 stall (for the 2nd add, I will need result from EX in ...
2
votes
2answers
146 views

GStreamer force decodebin2 output type

I'm trying to write a program in C which replicates the pipeline: gst-launch -v filesrc location="bbb.mp4" ! decodebin2 ! ffmpegcolorspace ! autovideosink DecodeBin2 has a dynamic pad and I've ...
2
votes
1answer
139 views

Rails 3.1 Netzke Asset Pipeline Issue

Walking through this tutorial and am having problems with Rails Asset Pipeline. http://blog.writelesscode.com/blog/2010/06/14/extjs-rails-crud-application-in-7-minutes/ I make the symlink: > ln ...
2
votes
1answer
69 views

How do I have an array parameter that takes input from the args or the pipeline in Powershell?

I'm trying to write a Powershell function that takes an array argument. I want it to be called with the array either as an argument, or as pipeline input. So, calling looks something like this: ...
2
votes
1answer
80 views

Powershell scripts invoked by C# application

I have this powershell script (test1.ps1) calling another powershell script(test2.ps1) to do the job. Both scriptfiles are in the same folder test1.ps1 echo "from test1.ps1" .\test2.ps1 ...
2
votes
2answers
60 views

What is the preferred way to setup a continuous integration build chain for a big project with TeamCity?

for some time my company is now using Maven and TeamCity to build Java stuff. Currently we are investing quite heavily in continuous integration and ultimately continuous delivery. Among many smaller ...
2
votes
2answers
131 views

Alias for “| foreach { ”$_“ }” in PowerShell

I like to use the following code to emulate the Unix "find" behavior: ls DIRECTORY -recurse -include PATTERN | foreach { "$_" } In fact, there are a couple of other commands that I'd like to append ...
2
votes
1answer
84 views

in ARMv6, why the value of PC is current instruction plus 8?

what if the stages of pipeline is not 3, such as in ARM1156T2-S (also is ARMv6), it has 9 stages: Fe1 Fe2 De Iss Fe3 Sh ALU Sat WBex the PC is still address of current instruction plus 8?
2
votes
1answer
263 views

BizTalk doesn't see any of my GAC'd Assemblies

Folks, I realize this may look like the usual "you didn't restart your host instance" problem.. but there's more to it than that. I have a BizTalk application that consists of a couple Schema ...
2
votes
3answers
393 views

how to use “if” statements inside pipeline

I'm trying to use if inside a pipeline. I know that there is where (alias ?) filter, but what if I want activate a filter only if a certain condition is satisfied? I mean, for example: ...
2
votes
1answer
144 views

Ninject PerRequest injection

I have a MVC 2.0 application using Ninject.Web.Mvc2 and a repository pattern (built over an entity framework model ). I am trying to create a new ObjectContext that will only live for the duration of ...

1 2 3 4