Side by Side Diff
Use n/p to move between diff chunks; N/P to move between comments.
Draft comments are only viewable by you.
Keyboard Shortcuts
File
u
:
up to issue
j
/
k
:
jump to file after / before current file
J
/
K
:
jump to next file with a comment after / before current file
Side-by-side diff
i
:
toggle intra-line diffs
e
:
expand all comments
c
:
collapse all comments
s
:
toggle showing all comments
n
/
p
:
next / previous diff chunk or comment
N
/
P
:
next / previous comment
<Up>
/
<Down>
:
next / previous line
Issue
u
:
up to list of issues
j
/
k
:
jump to patch after / before current patch
o
/
<Enter>
:
open current patch in side-by-side view
i
:
open current patch in unified diff view
Issue List
j
/
k
:
jump to issue after / before current issue
o
/
<Enter>
:
open current issue
Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr)
|
Please choose your nickname with
Settings
|
Help
|
Chromium Project
|
Gerrit Changes
|
Sign out
(189)
Issues
Search
My Issues
|
Starred
Open
|
Closed
|
All
Side by Side Diff: common/gcloud/pubsub/scopes.go
Issue
1838303002
:
Use native Pub/Sub library primitives. (Closed)
Base URL: https://github.com/luci/luci-go@logdog-go1.6
Patch Set:
Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Draft comments are only viewable by you.
Context:
3 lines
10 lines
25 lines
50 lines
75 lines
100 lines
Whole file
Column Width:
Tab Spaces:
Jump to:
appengine/tsmon/middleware.go
client/cmd/logdog_butler/main.go
client/cmd/logdog_butler/output_pubsub.go
client/internal/logdog/butler/output/pubsub/pubsubOutput.go
client/internal/logdog/butler/output/pubsub/pubsubOutput_test.go
common/gcloud/pubsub/ackbuffer/ack.go
common/gcloud/pubsub/ackbuffer/ackbuffer.go
common/gcloud/pubsub/ackbuffer/ackbuffer_test.go
common/gcloud/pubsub/connection.go
common/gcloud/pubsub/connection_impl.go
common/gcloud/pubsub/pubsub.go
common/gcloud/pubsub/quota.go
common/gcloud/pubsub/retry.go
common/gcloud/pubsub/scopes.go
common/gcloud/pubsub/subscriber/source.go
common/gcloud/pubsub/subscriber/subscriber.go
common/gcloud/pubsub/subscriber/subscriber_test.go
common/proto/logdog/svcconfig/config.proto
common/proto/logdog/svcconfig/config.pb.go
common/tsmon/iface.go
common/tsmon/monitor/pubsub.go
server/cmd/logdog_collector/main.go
View unified diff
|
Download patch
« client/internal/logdog/butler/output/pubsub/pubsubOutput.go
('K') |
« common/gcloud/pubsub/retry.go
('k') |
common/gcloud/pubsub/subscriber/source.go »
('j') |
no next file with comments »
Toggle Intra-line Diffs
('i') |
Expand Comments
('e') |
Collapse Comments
('c') |
Show Comments
Hide Comments
('s')
OLD
NEW
(Empty)
1
// Copyright 2015 The Chromium Authors. All rights reserved.
2
// Use of this source code is governed by a BSD-style license that can be
3
// found in the LICENSE file.
4
5
package pubsub
6
7
import (
8
"google.golang.org/cloud/pubsub"
9
)
10
11
var (
12
// PublisherScopes is the set of OAuth2 scopes needed for a publisher to
13
// publish messages.
14
PublisherScopes = []string{
15
pubsub.ScopePubSub,
16
}
17
18
// SubscriberScopes is the set of OAuth2 scopes needed for a subscriber to
19
// pull and acknowledge messages.
20
SubscriberScopes = []string{
21
pubsub.ScopePubSub,
22
}
23
)
OLD
NEW
« client/internal/logdog/butler/output/pubsub/pubsubOutput.go
('K') |
« common/gcloud/pubsub/retry.go
('k') |
common/gcloud/pubsub/subscriber/source.go »
('j') |
no next file with comments »
Issue 1838303002: Use native Pub/Sub library primitives. (Closed)
Created 4 years, 8 months ago by dnj
Modified 4 years, 8 months ago
Reviewers: Vadim Sh., estaab, iannucci
Base URL: https://github.com/luci/luci-go@logdog-go1.6
Comments: 4
This is Rietveld
408576698