Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(376)

Side by Side Diff: logdog/client/butler/bundler/bundler.go

Issue 2575383002: Add server/cache support to gaeconfig. (Closed)
Patch Set: Un-collapse. Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « logdog/appengine/coordinator/project.go ('k') | logdog/client/cli/subcommandCat.go » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The LUCI Authors. All rights reserved. 1 // Copyright 2015 The LUCI Authors. All rights reserved.
2 // Use of this source code is governed under the Apache License, Version 2.0 2 // Use of this source code is governed under the Apache License, Version 2.0
3 // that can be found in the LICENSE file. 3 // that can be found in the LICENSE file.
4 4
5 package bundler 5 package bundler
6 6
7 import ( 7 import (
8 "container/heap" 8 "container/heap"
9 "fmt" 9 "fmt"
10 "sync" 10 "sync"
11 "time" 11 "time"
12 12
13 "github.com/luci/luci-go/common/clock" 13 "github.com/luci/luci-go/common/clock"
14 "github.com/luci/luci-go/common/proto/google" 14 "github.com/luci/luci-go/common/proto/google"
15 "github.com/luci/luci-go/common/sync/cancelcond" 15 "github.com/luci/luci-go/common/sync/cancelcond"
16 "github.com/luci/luci-go/logdog/api/logpb" 16 "github.com/luci/luci-go/logdog/api/logpb"
17 "github.com/luci/luci-go/logdog/client/butlerlib/streamproto" 17 "github.com/luci/luci-go/logdog/client/butlerlib/streamproto"
18 "github.com/luci/luci-go/logdog/common/types" 18 "github.com/luci/luci-go/logdog/common/types"
19 "github.com/luci/luci-go/luci_config/common/cfgtypes" 19 "github.com/luci/luci-go/luci_config/common/cfgtypes"
20
20 "golang.org/x/net/context" 21 "golang.org/x/net/context"
21 ) 22 )
22 23
23 // Config is the Bundler configuration. 24 // Config is the Bundler configuration.
24 type Config struct { 25 type Config struct {
25 // Clock is the clock instance that will be used for Bundler and stream 26 // Clock is the clock instance that will be used for Bundler and stream
26 // timing. 27 // timing.
27 Clock clock.Clock 28 Clock clock.Clock
28 29
29 // Project is the project to use. 30 // Project is the project to use.
(...skipping 484 matching lines...) Expand 10 before | Expand all | Expand 10 after
514 515
515 func (s *streamState) Push(x interface{}) { 516 func (s *streamState) Push(x interface{}) {
516 s.streams = append(s.streams, x.(bundlerStream)) 517 s.streams = append(s.streams, x.(bundlerStream))
517 } 518 }
518 519
519 func (s *streamState) Pop() interface{} { 520 func (s *streamState) Pop() interface{} {
520 last := s.streams[len(s.streams)-1] 521 last := s.streams[len(s.streams)-1]
521 s.streams = s.streams[:len(s.streams)-1] 522 s.streams = s.streams[:len(s.streams)-1]
522 return last 523 return last
523 } 524 }
OLDNEW
« no previous file with comments | « logdog/appengine/coordinator/project.go ('k') | logdog/client/cli/subcommandCat.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698