英文字典中文字典


英文字典中文字典51ZiDian.com



中文字典辞典   英文字典 a   b   c   d   e   f   g   h   i   j   k   l   m   n   o   p   q   r   s   t   u   v   w   x   y   z       







请输入英文单字,中文词皆可:

pipeline    音标拼音: [p'ɑɪpl,ɑɪn]
n. 管道线

管道线

pipeline
管道;流水线;管线

pipeline
管线

pipeline
n 1: gossip spread by spoken communication; "the news of their
affair was spread by word of mouth" [synonym: {grapevine},
{pipeline}, {word of mouth}]
2: a pipe used to transport liquids or gases; "a pipeline runs
from the wells to the seaport" [synonym: {pipeline}, {line}]

pipeline \pipeline\, pipe line \pipe line\
1. A line of pipe with pumping machinery and apparatus for
conveying liquids, gases, or finely divided solids, such
as petroleum or natural gas, between distant points.
[Webster 1913 Suppl. PJC]

2. fig. an information channel direct from the source.
[PJC]

3. the set of stages and processes from the invention or
design of a product to its ultimate use, production, or
commercial sale. Used commonly in the phrase

{in the pipeline}, i. e. still in preparation or under
development.
[PJC]


Pipe-line \Pipe"-line`\, v. t.
To convey by a pipe line; to furnish with a pipe line or pipe
lines.
[Webster 1913 Suppl.]

67 Moby Thesaurus words for "pipeline":
adjutage, bush telegraph, catheter, channel, coming, conduit,
confidential information, connection, contact, conveyor, cooking,
drainpipe, duct, efflux tube, fire hose, flue pipe, flume, funnel,
garden hose, gas pipe, grapevine, grapevine telegraph, hose,
hosepipe, imminent, in the offing, in the works, inside dope,
inside information, insider, line, main, nipple, on the way,
organ pipe, origin, passage, pipe, pipette, piping,
put through channels, ready, reed, reed pipe, siamese,
siamese connection, siphon, snorkel, soil pipe, source, standpipe,
steam pipe, stem, straw, supplier, tap, the lowdown, tube, tubing,
tubulation, tubule, tubulet, tubulure, under way, waste pipe,
water pipe, wellspring

A sequence of {functional units} ("stages")
which performs a task in several steps, like an assembly line
in a factory. Each functional unit takes inputs and produces
outputs which are stored in its output {buffer}. One stage's
output buffer is the next stage's input buffer. This
arrangement allows all the stages to work in parallel thus
giving greater throughput than if each input had to pass
through the whole pipeline before the next input could enter.

The costs are greater latency and complexity due to the need
to synchronise the stages in some way so that different inputs
do not interfere. The pipeline will only work at full
efficiency if it can be filled and emptied at the same rate
that it can process.

Pipelines may be synchronous or asynchronous. A synchronous
pipeline has a master clock and each stage must complete its
work within one cycle. The minimum clock period is thus
determined by the slowest stage. An asynchronous pipeline
requires {handshaking} between stages so that a new output is
not written to the interstage buffer before the previous one
has been used.

Many {CPUs} are arranged as one or more pipelines, with
different stages performing tasks such as fetch instruction,
decode instruction, fetch arguments, arithmetic operations,
store results. For maximum performance, these rely on a
continuous stream of instructions fetched from sequential
locations in memory. Pipelining is often combined with
{instruction prefetch} in an attempt to keep the pipeline
busy.

When a {branch} is taken, the contents of early stages will
contain instructions from locations after the branch which
should not be executed. The pipeline then has to be flushed
and reloaded. This is known as a {pipeline break}.

(1996-10-13)


请选择你想看的字典辞典:
单词字典翻译
pipeline查看 pipeline 在百度字典中的解释百度英翻中〔查看〕
pipeline查看 pipeline 在Google字典中的解释Google英翻中〔查看〕
pipeline查看 pipeline 在Yahoo字典中的解释Yahoo英翻中〔查看〕





安装中文字典英文字典查询工具!


中文字典英文字典工具:
选择颜色:
输入中英文单字

































































英文字典中文字典相关资料:


  • Pipeline by Zygo | Online Education and Expert Mentorship For Content . . .
    What is Pipeline? Pipeline is your all-in-one resource for step-by-step education on becoming a streamer, including live mentorship and a professional community It’s one of the longest existing platforms in the content creation space, backed by industry professionals
  • 流水线(pipeline)设计详解+实例:为什么要用流水线?流水线的作用和优缺点?流水线深度越大越好吗?什么时候采用流水线?
    Pipeline模式源自工业生产中的流水线概念,通过让每个阶段专注于特定任务并将结果传递给下一阶段,实现了高效的数据处理流程。 文章阐述了 Pipeline 的工作原理、主要优势(如提高处理效率、降低耦合性、简化复杂问题)以及在数据处理、CI CD、机器学习 和
  • 到底什么是Pipeline? - CSDN博客
    在计算机科学中,Pipeline(流水线)是一将任务分解为多个独立阶段并按顺序执行的技术。每个阶段都处理任务的一部分,并将其传递给下一个段,直到任务完成。 在软件开发中,Pipeline通常用于自动化构建、测试和部署软件的过程。它将软件开发过程划分为
  • pipeline是什么? - 知乎
    pipeline,中文意为管线,意义等同于流水线。 最典型的就是Gpu渲染管线,它指明渲染一个画面需要经过多少到工序。 还有就是应用于爬虫框架里面。
  • Pipeline - Wikipedia
    A pipeline is a system of pipes for long-distance transportation of a liquid or gas, typically to a market area for consumption The latest data from 2014 gives a total of slightly less than 2 175 million miles (3 5 million kilometres) of pipeline in 120 countries around the world [1]
  • 什么是Pipeline - CQ的笔记
    Deployment Pipeline(简称pipeline)是将代码更改应用到生产环境的一系列步骤,是对CI CD过程的描述,依赖于CI CD平台(比如Jenkins, Gitlab CI CD, Buildkite, GOCD等)。通过一条pipeline,代码更改在几分钟或者几十分钟内通过完全自动化的脚本化的流程部署到任何环境。
  • 深析Pipeline设计模式 - 知乎 - 知乎专栏
    Pipeline模式 为管道模式,也称为流水线模式。通过预先设定好的一系列的阶段来处理输入的数据,每个阶段的输出即是下一个阶段的输入。 模型图如下:
  • 机器学习tips:什么是pipeline? - CSDN博客
    Pipeline是sklearn中用于封装一系列数据处理和模型训练步骤的类。它允许你将数据预处理、特征选择、降维和模型训练等步骤串联起来,形成一个有序的流水线。Pipeline中的每个步骤可以是任何可调用对象,包括sklearn的转换器和估计器,甚至是自定义函数。# 自
  • Welcome to Pipeline 101! - Pipeline 101
    “Pipeline 101” seeks to be your introductory resource for energy pipeline information We invite you to learn about the history of pipelines, how pipelines work, where pipelines are located, why we need pipelines, and more
  • PURISCORP. com
    We give new life to aging community water pipeline systems using green trenchless rehabilitation methods





中文字典-英文字典  2005-2009