OXIESEC PANEL
- Current Dir:
/
/
opt
/
gsutil
/
third_party
/
google-auth-library-python
Server IP: 2a02:4780:11:1594:0:ef5:22d7:a
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
12/09/2024 05:26:03 PM
rwxr-xr-x
📄
.coveragerc
315 bytes
11/30/2023 05:43:15 PM
rw-r--r--
📄
.flake8
126 bytes
11/30/2023 05:43:15 PM
rw-r--r--
📁
.github
-
11/30/2023 05:43:15 PM
rwxr-xr-x
📄
.gitignore
582 bytes
11/30/2023 05:43:15 PM
rw-r--r--
📄
.repo-metadata.json
425 bytes
11/30/2023 05:43:15 PM
rw-r--r--
📄
.trampolinerc
1.67 KB
11/30/2023 05:43:15 PM
rw-r--r--
📄
CHANGELOG.md
96.09 KB
11/30/2023 05:43:15 PM
rw-r--r--
📄
CODE_OF_CONDUCT.md
1.93 KB
11/30/2023 05:43:15 PM
rw-r--r--
📄
CONTRIBUTING.rst
6.65 KB
11/30/2023 05:43:15 PM
rw-r--r--
📄
CONTRIBUTORS.md
3.45 KB
11/30/2023 05:43:15 PM
rw-r--r--
📄
LICENSE
11.09 KB
11/30/2023 05:43:15 PM
rw-r--r--
📄
MANIFEST.in
100 bytes
11/30/2023 05:43:15 PM
rw-r--r--
📄
README.rst
2.81 KB
11/30/2023 05:43:15 PM
rw-r--r--
📄
SECURITY.md
329 bytes
11/30/2023 05:43:15 PM
rw-r--r--
📁
docs
-
11/30/2023 05:43:15 PM
rwxr-xr-x
📁
google
-
11/30/2023 05:43:15 PM
rwxr-xr-x
📄
mypy.ini
54 bytes
11/30/2023 05:43:15 PM
rw-r--r--
📄
noxfile.py
4.28 KB
11/30/2023 05:43:15 PM
rw-r--r--
📄
owlbot.py
838 bytes
11/30/2023 05:43:15 PM
rw-r--r--
📄
renovate.json
353 bytes
11/30/2023 05:43:15 PM
rw-r--r--
📁
samples
-
11/30/2023 05:43:15 PM
rwxr-xr-x
📁
scripts
-
11/30/2023 05:43:15 PM
rwxr-xr-x
📄
setup.cfg
27 bytes
11/30/2023 05:43:15 PM
rw-r--r--
📄
setup.py
2.91 KB
11/30/2023 05:43:15 PM
rw-r--r--
📁
system_tests
-
11/30/2023 05:43:15 PM
rwxr-xr-x
📁
testing
-
11/30/2023 05:43:15 PM
rwxr-xr-x
📁
tests
-
11/30/2023 05:43:15 PM
rwxr-xr-x
📁
tests_async
-
11/30/2023 05:43:15 PM
rwxr-xr-x
Editing: .trampolinerc
Close
# Copyright 2023 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # Add required env vars here. required_envvars+=( ) # Add env vars which are passed down into the container here. pass_down_envvars+=( "NOX_SESSION" ############### # Docs builds ############### "STAGING_BUCKET" "V2_STAGING_BUCKET" ################## # Samples builds ################## "INSTALL_LIBRARY_FROM_SOURCE" "RUN_TESTS_SESSION" "BUILD_SPECIFIC_GCLOUD_PROJECT" # Target directories. "RUN_TESTS_DIRS" # The nox session to run. "RUN_TESTS_SESSION" ) # Prevent unintentional override on the default image. if [[ "${TRAMPOLINE_IMAGE_UPLOAD:-false}" == "true" ]] && \ [[ -z "${TRAMPOLINE_IMAGE:-}" ]]; then echo "Please set TRAMPOLINE_IMAGE if you want to upload the Docker image." exit 1 fi # Define the default value if it makes sense. if [[ -z "${TRAMPOLINE_IMAGE_UPLOAD:-}" ]]; then TRAMPOLINE_IMAGE_UPLOAD="" fi if [[ -z "${TRAMPOLINE_IMAGE:-}" ]]; then TRAMPOLINE_IMAGE="" fi if [[ -z "${TRAMPOLINE_DOCKERFILE:-}" ]]; then TRAMPOLINE_DOCKERFILE="" fi if [[ -z "${TRAMPOLINE_BUILD_FILE:-}" ]]; then TRAMPOLINE_BUILD_FILE="" fi