Large Commits have some content hidden by default. Use the searcx below for content that may be hidden.
Dismiss banner
Expand file treeCollapse file tree
267 files changed
+4207
-109
lines changed
Original file line number
Diff line number
Diff line change
@@ -0,0 +1,51 @@
1
+
---
2
+
name: Bug report
3
+
about: Create a report to help us improve
4
+
5
+
---
6
+
7
+
Thanks for stopping by to let us know something could be better!
8
+
9
+
**PLEASE READ**: If you have a support contract with Google, please create an issue in the [support console](https://cloud.google.com/support/) instead of filing on . This will ensure a timely response.
10
+
11
+
Please run down the following list and make sure you've tried the usual "quick fixes":
12
+
13
+
- Search the issues already opened: https://.com/googleapis/java-tasks/issues
14
+
- Check for answers on StackOverflow: http://stackoverflow.com/questions/tagged/google-cloud-platform
15
+
16
+
If you are still having issues, please include as much information as possible:
17
+
18
+
#### Environment details
19
+
20
+
1. Specify the API at the beginning of the title. For example, "BigQuery: ...").
21
+
General, Core, and Other are also allowed as types
22
+
2. OS type and version:
23
+
3. Java version:
24
+
4. cloudtasks version(s):
25
+
26
+
#### Steps to reproduce
27
+
28
+
1. ?
29
+
2. ?
30
+
31
+
#### Code example
32
+
33
+
```java
34
+
// example
35
+
```
36
+
37
+
#### Stack trace
38
+
```
39
+
Any relevant stacktrace here.
40
+
```
41
+
42
+
#### External references such as API reference guides
43
+
44
+
- ?
45
+
46
+
#### Any additional information below
47
+
48
+
49
+
Following these steps guarantees the quickest resolution possible.
50
+
51
+
Thanks!
Original file line number
Diff line number
Diff line change
@@ -0,0 +1,21 @@
1
+
---
2
+
name: Feature request
3
+
about: Suggest an idea for this library
4
+
5
+
---
6
+
7
+
Thanks for stopping by to let us know something could be better!
8
+
9
+
**PLEASE READ**: If you have a support contract with Google, please create an issue in the [support console](https://cloud.google.com/support/) instead of filing on . This will ensure a timely response.
10
+
11
+
**Is your feature request related to a problem? Please describe.**
12
+
What the problem is. Example: I'm always frustrated when [...]
13
+
14
+
**Describe the solution you'd like**
15
+
What you want to happen.
16
+
17
+
**Describe alternatives you've considered**
18
+
Any alternative solutions or features you've considered.
19
+
20
+
**Additional context**
21
+
Any other context or screenshots about the feature request.
Original file line number
Diff line number
Diff line change
@@ -0,0 +1,7 @@
1
+
---
2
+
name: Support request
3
+
about: If you have a support contract with Google, please create an issue in the Google Cloud Support console.
4
+
5
+
---
6
+
7
+
**PLEASE READ**: If you have a support contract with Google, please create an issue in the [support console](https://cloud.google.com/support/) instead of filing on . This will ensure a timely response.
Original file line number
Diff line number
Diff line change
@@ -0,0 +1 @@
1
+
Fixes #<issue_number_goes_here> (it's a good idea to open an issue first for context and/or discussion)
Original file line number
Diff line number
Diff line change
@@ -0,0 +1 @@
1
+
releaseType: java-yoshi
Original file line number
Diff line number
Diff line change
@@ -0,0 +1,45 @@
1
+
.gitignore
2
+
3
+
# Packages
4
+
dist
5
+
bin
6
+
var
7
+
sdist
8
+
target
9
+
10
+
# Unit test / coverage reports
11
+
.coverage
12
+
.tox
13
+
nosetests.xml
14
+
15
+
# Translations
16
+
*.mo
17
+
18
+
# Mr Developer
19
+
.mr.developer.cfg
20
+
21
+
.metadata
22
+
.project
23
+
.pydevproject
24
+
*.iml
25
+
.idea
26
+
.settings
27
+
.DS_Store
28
+
.classpath
29
+
30
+
# Built documentation
31
+
docs/
32
+
33
+
34
+
# Wheel directory used in Travis builds.
35
+
gcloud-java-wheels/
36
+
src/test/resources/gcd-head.zip
37
+
src/test/resources/gcd-v1beta2-rev1-2.1.1.zip
38
+
39
+
# API key file containing value of GOOGLE_API_KEY for integration tests
0 commit comments