當前位置: 首頁>>代碼示例>>Golang>>正文


Golang runconfig.NewStreamConfig函數代碼示例

本文整理匯總了Golang中github.com/docker/docker/runconfig.NewStreamConfig函數的典型用法代碼示例。如果您正苦於以下問題:Golang NewStreamConfig函數的具體用法?Golang NewStreamConfig怎麽用?Golang NewStreamConfig使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了NewStreamConfig函數的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。

示例1: NewConfig

// NewConfig initializes the a new exec configuration
func NewConfig() *Config {
	return &Config{
		ID:           stringid.GenerateNonCryptoID(),
		StreamConfig: runconfig.NewStreamConfig(),
		waitStart:    make(chan struct{}),
	}
}
開發者ID:Test-Betta-Inc,項目名稱:psychic-barnacle,代碼行數:8,代碼來源:exec.go

示例2: NewBaseContainer

// NewBaseContainer creates a new container with its
// basic configuration.
func NewBaseContainer(id, root string) *Container {
	return &Container{
		CommonContainer: CommonContainer{
			ID:           id,
			State:        NewState(),
			ExecCommands: exec.NewStore(),
			Root:         root,
			MountPoints:  make(map[string]*volume.MountPoint),
			StreamConfig: runconfig.NewStreamConfig(),
		},
	}
}
開發者ID:hallyn,項目名稱:docker,代碼行數:14,代碼來源:container.go

示例3: ContainerExecCreate

// ContainerExecCreate sets up an exec in a running container.
func (d *Daemon) ContainerExecCreate(config *runconfig.ExecConfig) (string, error) {
	container, err := d.getActiveContainer(config.Container)
	if err != nil {
		return "", err
	}

	cmd := stringutils.NewStrSlice(config.Cmd...)
	entrypoint, args := d.getEntrypointAndArgs(stringutils.NewStrSlice(), cmd)

	processConfig := &execdriver.ProcessConfig{
		CommonProcessConfig: execdriver.CommonProcessConfig{
			Tty:        config.Tty,
			Entrypoint: entrypoint,
			Arguments:  args,
		},
	}
	setPlatformSpecificExecProcessConfig(config, container, processConfig)

	ExecConfig := &ExecConfig{
		ID:            stringid.GenerateNonCryptoID(),
		OpenStdin:     config.AttachStdin,
		OpenStdout:    config.AttachStdout,
		OpenStderr:    config.AttachStderr,
		streamConfig:  runconfig.NewStreamConfig(),
		ProcessConfig: processConfig,
		Container:     container,
		Running:       false,
		waitStart:     make(chan struct{}),
	}

	d.registerExecCommand(ExecConfig)

	d.LogContainerEvent(container, "exec_create: "+ExecConfig.ProcessConfig.Entrypoint+" "+strings.Join(ExecConfig.ProcessConfig.Arguments, " "))

	return ExecConfig.ID, nil
}
開發者ID:bcwalrus,項目名稱:docker,代碼行數:37,代碼來源:exec.go

示例4: NewVicContainer

func NewVicContainer() *VicContainer {
	return &VicContainer{
		StreamConfig: runconfig.NewStreamConfig(),
		Config:       &containertypes.Config{},
	}
}
開發者ID:jak-atx,項目名稱:vic,代碼行數:6,代碼來源:viccontainer.go

示例5: NewConfig

// NewConfig initializes the a new exec configuration
func NewConfig() *Config {
	return &Config{
		ID:           stringid.GenerateNonCryptoID(),
		StreamConfig: runconfig.NewStreamConfig(),
	}
}
開發者ID:SUSE,項目名稱:docker.mirror,代碼行數:7,代碼來源:exec.go


注:本文中的github.com/docker/docker/runconfig.NewStreamConfig函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。