Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
google-cloud-sdk /
platform /
bq /
frontend /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2026-06-08 18:08
bigquery_command.py
11.74
KB
-rw-r--r--
1980-01-01 08:00
bq_cached_client.py
7.57
KB
-rw-r--r--
1980-01-01 08:00
command_cancel.py
2.56
KB
-rw-r--r--
1980-01-01 08:00
command_copy.py
10.35
KB
-rw-r--r--
1980-01-01 08:00
command_delete.py
14.51
KB
-rw-r--r--
1980-01-01 08:00
command_extract.py
5.67
KB
-rw-r--r--
1980-01-01 08:00
command_head.py
3.3
KB
-rw-r--r--
1980-01-01 08:00
command_info.py
750
B
-rw-r--r--
1980-01-01 08:00
command_init.py
6.51
KB
-rw-r--r--
1980-01-01 08:00
command_insert.py
5.69
KB
-rw-r--r--
1980-01-01 08:00
command_list.py
25.87
KB
-rw-r--r--
1980-01-01 08:00
command_load.py
25.65
KB
-rw-r--r--
1980-01-01 08:00
command_make.py
58.42
KB
-rw-r--r--
1980-01-01 08:00
command_mkdef.py
9.94
KB
-rw-r--r--
1980-01-01 08:00
command_partition.py
8.14
KB
-rw-r--r--
1980-01-01 08:00
command_query.py
30.25
KB
-rw-r--r--
1980-01-01 08:00
command_repl.py
7.5
KB
-rw-r--r--
1980-01-01 08:00
command_show.py
15.89
KB
-rw-r--r--
1980-01-01 08:00
command_snapshot.py
22
B
-rw-r--r--
1980-01-01 08:00
command_truncate.py
11.2
KB
-rw-r--r--
1980-01-01 08:00
command_undelete.py
1.97
KB
-rw-r--r--
1980-01-01 08:00
command_update.py
51.52
KB
-rw-r--r--
1980-01-01 08:00
command_version.py
620
B
-rw-r--r--
1980-01-01 08:00
command_wait.py
3.42
KB
-rw-r--r--
1980-01-01 08:00
commands_iam.py
22.24
KB
-rw-r--r--
1980-01-01 08:00
flags.py
6.06
KB
-rw-r--r--
1980-01-01 08:00
utils.py
63.78
KB
-rw-r--r--
1980-01-01 08:00
utils_data_transfer.py
3.08
KB
-rw-r--r--
1980-01-01 08:00
utils_flags.py
1.46
KB
-rw-r--r--
1980-01-01 08:00
utils_formatting.py
47
KB
-rw-r--r--
1980-01-01 08:00
utils_id.py
1.69
KB
-rw-r--r--
1980-01-01 08:00
Save
Rename
#!/usr/bin/env python """BQ CLI frontend flag utils.""" from typing import Optional from absl import app from absl import flags import table_formatter import bq_flags from clients import utils as bq_client_utils FLAGS = flags.FLAGS def using_alpha_feature(feature: bq_flags.AlphaFeatures) -> bool: return feature in bq_flags.ALPHA.value def fail_if_not_using_alpha_feature(feature: bq_flags.AlphaFeatures) -> None: if not using_alpha_feature(feature): raise app.UsageError(f"Please specify '--alpha={feature.value}' and retry.") def get_formatter_from_flags( secondary_format: Optional[str] = 'sparse', ) -> table_formatter.TableFormatter: if FLAGS['format'].present: return table_formatter.GetFormatter(FLAGS.format) else: return table_formatter.GetFormatter(secondary_format) def get_job_id_from_flags() -> Optional[bq_client_utils.JobIdGenerator]: """Returns the job id or job generator from the flags.""" if FLAGS.fingerprint_job_id and FLAGS.job_id: raise app.UsageError( 'The fingerprint_job_id flag cannot be specified with the job_id flag.' ) if FLAGS.fingerprint_job_id: return bq_client_utils.JobIdGeneratorFingerprint() elif FLAGS.job_id is None: return bq_client_utils.JobIdGeneratorIncrementing( bq_client_utils.JobIdGeneratorRandom() ) elif FLAGS.job_id: return FLAGS.job_id else: # User specified a job id, but it was empty. Let the # server come up with a job id. return None