A pipeline is a sequence of functions (or the equivalent thereof), composed so that the output of one is good input for the next, in order to create compound transformation. Famously, in shell syntax expressed as `command | command2 | command3`.

learn more… | top users | synonyms

0
votes
1answer
7 views

Wondering about Hardware Graphics Pipeline

I'm just wondering about the Hardware Graphics Pipeline. Cuz I'd like to customize per-pixel computation. Anyway, I think someone helps me for doing it for sure. Thx for reading ma ask.
3
votes
1answer
42 views

why it is so slow with 100,000 records when using pipeline in redis?

It is said that pipeline is a better way when many set/get is required in redis, so this is my test code: public class TestPipeline { /** * @param args */ public static void ...
1
vote
2answers
36 views

CUDA core pipeline

I am following this article about a prediction model for GPU. In page 5 second column almost at the end they state One has to finally take care of the fact that each of the Nc cores(SPs) in an SM ...
0
votes
2answers
32 views

powershell send pipe input to pipe

I have a script that accepts piped parameters. I can't be sure that the user has already piped their input through Sort-Object before piping to my script so I want to send the piped input out for ...
0
votes
1answer
9 views

How to manually add a plugin like Fancybox to your Rails app

I need to add Fancybox to my Rails app. Normally I would just use the gem and add the required lines to application.js and application.css. However, I am using a bunch of different templates within ...
0
votes
0answers
9 views

About the pipeline performance formula

I understand the formula completely except for one number that I can't figure out where it's coming from and the book has nothing on it. The problem consists of: 6 stage pipeline n instructions i ...
0
votes
0answers
32 views

Gstreamer Android changing pipeline state issue

I am working at a player based on gstreamer tutorials. For this I created a pipeline using: pipeline = gst_pipeline_new("audio-player"); //adding also 3 gstreamer elements appsrc = ...
1
vote
1answer
24 views

Pass directories from pipeline as Powershell named parameter

I try to write a Powershell script that accepts directories from the pipeline as named parameter. My parameter declaration looks like param([Parameter(Mandatory=$true, ValueFromPipeline=$true, ...
4
votes
1answer
108 views

how to simulate 5 stage of pipe line in c++?

I am trying to simulate 5 stage of pipeline. I have saved all the instruction into a struct. ( basically done with the stage of lixcal analysis ) eg: ADD R1 R2 R3 // R1 = R2+ R3 ... struct pipe{ int ...
0
votes
1answer
36 views

C fork two children and pipe between parent and children

I'm trying to fork two children. Parent reads a line send to pipe. Child one reads it and write it to another pipe and finally child2 reads it. However, the output is always parent getting line. ...
0
votes
0answers
15 views

WorkFlow Framework for Inquiry

We are developing a framework for inquiries the inquiries can be best described as a series of configurable steps 1) QueryExtraction 2) Updation with Some Product Data 3) Filtering 4) Query ...
0
votes
1answer
74 views

Playing Audio with pipeline in Gstreamer (C#)

I've been struggling with GStreamer for a while because I can't find any C# examples/tutorials. As far as I know, Gstreamer uses pipelines in order to decode and then be able to send, for instance a ...
0
votes
1answer
66 views

AWS : What's the difference between Simple Workflow Service and Data Pipeline?

What's the difference between Amazon Simple Workflow Service and Amazon Data Pipeline ? It seems that they are pretty much the same product. The Data Pipeline has a nice web based diagram editor ...
3
votes
1answer
72 views

Response Object in Jedis - throws ClassCastException

Using Response Object in Jedis, throws ClassCastException . I am not able to get any value from Redis when I use pipeline. Please help. I am using Jedis 2.1.0 public class JedisPipeline { ...
0
votes
2answers
65 views

why would this two mips instructions cause data hazards in pipeline?

I am learning the pipeline in mips and was told tha this two instruction: jal addr; store $ra;store the value of $ra into memory would cause data hazards, but I don't understand why.Could anybody ...
0
votes
1answer
61 views

Jedis Pipeline Multi throws ClassCastException

public class JedisPipeline { private static JedisPool pool = new JedisPool(new JedisPoolConfig(), "127.0.0.1", 6379); public static void main(String args[]){ Jedis jedis = ...
0
votes
1answer
63 views

Pipeline List with Constant Parameters

I'm trying to create a pipeline that consists of the main parameter being a list with a constant. As a simple example type ClockType = | In | Out let ClockMap index offset = match index with ...
1
vote
1answer
86 views

Different pipeline behavior between sh and ksh

I have isolated the problem to the below code snippet.. Notice below that null string gets assigned to LATEST_FILE_NAME='' when the script is run using ksh; but the script assigns the value to ...
0
votes
0answers
24 views

remote_directory copy is bypassed by other recipes in execution

can anyone give me some help with remote_directory usage? I am currently trying to copy my files from COOKBOOK/files/default/remotedir to the node, and then iterate through the set of files and get ...
0
votes
1answer
101 views

passing parameters with c# to powershell

I am trying to pass a string from my c# app to my powershell script . I keep geting an error:"A positional parameter cannot be found that accepts argument '$null' what should I do? my c# code: ...
1
vote
1answer
86 views

Why can't a PowerShell function return a MessageQueue object?

I've written the following variations of a function to return a System.Messaging.MessageQueue object: set-strictmode -version latest add-type -AssemblyName System.Messaging $VerbosePreference = ...
0
votes
1answer
55 views

Scrapy How to run function after all pages being crawled

Because I want to format the XML output below are my code on Pipelines: class TutorialPipeline(object): def __init__(self): self.file = open('outs.xml', 'a') ...
2
votes
2answers
65 views

Trying to translate bash statement to subprocess in python

I am trying to translate a bash command to a subprocess in python. The bash command is: cat LogFile.msg.log | grep ABCD | awk '{print $14,$10,$5,$7}' | sort -t' ' -k4 -n -r | head -10 > output.csv ...
0
votes
0answers
31 views

Rake-pipeline: Concat task not working as expected

I have a folder which contains all the third party libs which I use for my client namely: jquery-1.9.0.min.js handlebars.js ...... etc I have written a task to concat all these files into one ...
0
votes
1answer
75 views

Inline assembly with “jmp 0f” or “b 0f” at the beginning

updated Changed the 2nd line of assembly to the mnemonic actually being used (mflr) and added more info at the bottom. I ran across some code (using gcc) resembling the following (paraphrased): ...
1
vote
1answer
32 views

Crontab hanging on pipeline, scope, or poor syntax

I have a shell script which works fine as my user and works about halfway in crontab. It only finishes the rm line, however, and hangs on the awk line: #!/bin/bash get_listeners.pl > temp.txt ...
0
votes
1answer
20 views

How to manage intermediate outputs efficiently?

I am implementing a C preprocessor in C... I have the three functions: trigraph replacing function Line splicing function comment removing function However these functions work separately on ...
1
vote
1answer
82 views

Opscode Chef - way to cleanup /shared/cached-copy

We using Opscode Chef in our pipeline and we notice that the deployment (see http://docs.opscode.com/resource_deploy.html) creates a complete copy of our sourcecode to /shared/cached-copy It already ...
0
votes
0answers
28 views

BizTalk SendPort Error “Use of segment, data-type or segment not supported in this position”

When I try to convert using edi pipeline xml to edi format, take this error on sendPort. When I check the segment ordering in xml schema and compare from stylusStudio, I can not anything about ...
1
vote
0answers
57 views

GStreamer-CRITICAL buffer

When I execute a gstreamer-1.0 pipeline: gst-launch-1.0 -evm videotestsrc ! v4l2sink device=/dev/video1 for video loop back using v4l2loopback version 0.6.3 it thows the following error: ...
0
votes
1answer
68 views

netty 4.0 input bytes decoding

i'm trying to implement a very simple socket server. I need to read some messages, split by a new line or any other delimiter. According to this documentation: ...
0
votes
1answer
29 views

Forwarding and stall length

I'm studying for an exam, currently a question about forwarding. I've come across two examples of pipelining. (FI = Fetch instruction, DI = Decode instruction, CO = Call operand, FO = Fetch operand, ...
0
votes
0answers
147 views

IIS 8.0 integrated pipeline Session RequestAcquireState

We are trying to make a cut over from IIS 6.0 to IIS 8.0 Integrated pool on Windows Server 2012 Standard edition for an application built on ASP.Net Version 4.0. Our web application requests go into a ...
2
votes
1answer
73 views

Netty nested pipelines / multiplexing

I'm pretty new to Netty, but how would one implement a case in Netty 4.x when several protocols (e.g. P1 and P2) are encapsulated inside another protocol? +-------------+ ...
4
votes
2answers
152 views

Connecting A Haskell Program to a Python Program via Pipelines (in Python)

Bear with me as I'm fairly new to programming. My basic question is this. I have a program written in Haskell whose stdout I want to connect to the stdin of a Python program (which will manage the GUI ...
0
votes
0answers
34 views

undefined method `link_to_add_association' in production with apache/phusion

I am facing a strange problem. I have an app deployed on rails 3.2.1 with apache/phusion. I have precompiled the assets with "rake assets:precompile". However, I get "undefined method ...
0
votes
0answers
124 views

Problems with verilog pipeline

I have to write a module for calculate the GCD with Euclidean algorithm with two numbers of 16 bit. I know that I need, in the worst case, 22 steps for reach the solution, I obtain this steps number ...
0
votes
2answers
99 views

Sitecore pipeline processor messing up the CMS

I have a pipeline processor which works as expected on the site, but causes havoc when you go in to the CMS. What is the proper way to determine if the request is to the CMS? Preferably I'd like ...
1
vote
1answer
126 views

Jasmine won't load javascript files from asset pipeline

I'm developing a gem and I've installed Jasmine https://github.com/pivotal/jasmine-gem/ All of my required JS files are in my manifest file at app/assets/javascripts/application.js //= require ...
0
votes
1answer
69 views

passing depth buffer

So I'm reading a paper on a particular shading algorithm and there is one section that seems a bit vague and I was wondering if I could get advice here. Basically it says I first have to take a 3D ...
0
votes
0answers
48 views

Jenkins - triggering one pipeline from another

I have configured two Jenkins pipelines (using the build pipeline plugin.) The first contains steps required for the commit checks and producing a war file artifact at the end of it. These are quick ...
0
votes
1answer
33 views

Shell pipeline does not function with dig

. This might be a particularly stupid question, but I am new to shell scripting. Sorry for that! I am trying to use the pipeline (to pass the output of the first command to the second one as its ...
2
votes
2answers
277 views

C++ library to build up execution pipeline

I have been searching for a re-usable execution pipeline library in C++ (job scheduler library?). I could not find anything within Boost. So I eventually found out two candidates: ...
0
votes
1answer
80 views

mongodb group aggregation pipeline include objectId (_id)

I have a pipeline in mongodb below. pipeline.push({ $project: { 'name1': 1, isGroup: { $cond: [{ $eq: ['$name2', '']}, false, true]}, onlyGroup: 1, 'objecttype':1 } }) pipeline.push({ $group: { _id: ...
6
votes
3answers
207 views

Different argument order for getting N-th element of Array, List or Seq

Is there a good reason for a different argument order in functions getting N-th element of Array, List or Seq: Array.get source index List .nth source index Seq .nth index source I would like to ...
0
votes
0answers
64 views

Django Social Auth twitter email via form

I'm trying to introduce a form in the social auth process to ensure that the email and password are entered, which I will then use to login. Something like what Quora does. I'm trying to implement a ...
0
votes
2answers
64 views

How to specify a device-specific css file when I compress all the css files using pipeline in Django?

In order to use CSS3 Media Queries to create a mobile version of my website, I'm gonna create a seperate css file used for small screen devices. If I don't use pipeline compressor in django, I would ...
0
votes
0answers
24 views

User Specfic Jenkins Pipeplines

I am currently working on a short project looking to automate some of the processes to make it easier to deploy code. One of the requirements of the project was to add User Specfic Pipeplines, where ...
0
votes
0answers
233 views

How many pipelines are used with intel core i7?

Does anybody know how many pipelines are used in core i7 CPUs (Nehalem Architecture)? I know that there are 14-stages per pipeline, but how many pipelines are there?
0
votes
1answer
67 views

Designing pipeline for processing objects

Recently I have been asked a simple design question in an interview: Suppose there is some data that needs to be processed in a pipeline fashion for efficiency. Suppose there are five tasks to ...

1 2 3 4 5 8