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 """Flags shared across multiple commands.""" from typing import List, Optional from absl import flags def define_null_marker( flag_values: flags.FlagValues, ) -> flags.FlagHolder[Optional[str]]: return flags.DEFINE_string( 'null_marker', None, 'An optional custom string that will represent a NULL value' 'in CSV External table data.', flag_values=flag_values, ) def define_null_markers( flag_values: flags.FlagValues, ) -> flags.FlagHolder[Optional[List[str]]]: return flags.DEFINE_list( 'null_markers', [], 'An optional list of custom strings that will represent a NULL value' 'in CSV External table data.', flag_values=flag_values, ) def define_time_zone( flag_values: flags.FlagValues, ) -> flags.FlagHolder[Optional[str]]: return flags.DEFINE_string( 'time_zone', None, 'Default time zone that will apply when parsing timestamp values that' ' have no specific time zone. For example, "America/Los_Angeles".', flag_values=flag_values, ) def define_date_format( flag_values: flags.FlagValues, ) -> flags.FlagHolder[Optional[str]]: return flags.DEFINE_string( 'date_format', None, 'Format elements that define how the DATE values are formatted in the' ' input files. For example, "MM/DD/YYYY".', flag_values=flag_values, ) def define_datetime_format( flag_values: flags.FlagValues, ) -> flags.FlagHolder[Optional[str]]: return flags.DEFINE_string( 'datetime_format', None, 'Format elements that define how the DATETIME values are formatted in' ' the input files. For example, "MM/DD/YYYY HH24:MI:SS.FF3".', flag_values=flag_values, ) def define_time_format( flag_values: flags.FlagValues, ) -> flags.FlagHolder[Optional[str]]: return flags.DEFINE_string( 'time_format', None, 'Format elements that define how the TIME values are formatted in the' ' input files. For example, "HH24:MI:SS.FF3".', flag_values=flag_values, ) def define_timestamp_format( flag_values: flags.FlagValues, ) -> flags.FlagHolder[Optional[str]]: return flags.DEFINE_string( 'timestamp_format', None, 'Format elements that define how the TIMESTAMP values are formatted in' ' the input files. For example, "MM/DD/YYYY HH24:MI:SS.FF3".', flag_values=flag_values, ) def define_source_column_match( flag_values: flags.FlagValues, ) -> flags.FlagHolder[Optional[str]]: return flags.DEFINE_enum( 'source_column_match', None, ['POSITION', 'NAME'], 'Controls the strategy used to match loaded columns to the schema in CSV' ' External table data. Options include:' '\n POSITION: matches by position. This option assumes that the columns' ' are ordered the same way as the schema.' '\n NAME: matches by name. This option reads the header row as column' ' names and reorders columns to match the field names in the schema.', flag_values=flag_values, ) def define_parquet_map_target_type( flag_values: flags.FlagValues, ) -> flags.FlagHolder[Optional[str]]: return flags.DEFINE_enum( 'parquet_map_target_type', None, ['ARRAY_OF_STRUCT'], 'Specifies the parquet map type. If it is equal to ARRAY_OF_STRUCT,' ' then a map_field will be represented with a repeated struct (that has' ' key and value fields).', flag_values=flag_values, ) def define_timestamp_target_precision( flag_values: flags.FlagValues, ) -> flags.FlagHolder[Optional[List[str]]]: return flags.DEFINE_list( 'timestamp_target_precision', [], 'Precisions (maximum number of total digits in base 10) for second of' ' TIMESTAMP types that are allowed to the destination table for' ' autodetection mode.' '\n' '\n Available for the formats: CSV.' '\n' '\n For the CSV Format, Possible values include:' '\n Not Specified, [], or [6]: timestamp(6) for all auto detected' ' TIMESTAMP columns.' '\n [6, 12]: timestamp(6) for all auto detected TIMESTAMP columns that' ' have less than 6 digits of subseconds. timestamp(12) for all auto' ' detected TIMESTAMP columns that have more than 6 digits of subseconds.' '\n [12]: timestamp(12) for all auto detected TIMESTAMP columns.' '\n' '\n The order of the elements in this array is ignored.' '\n Inputs that have higher precision than the highest target precision' ' will be truncated.', flag_values=flag_values, ) def define_reservation_id_for_a_job( flag_values: flags.FlagValues, ) -> flags.FlagHolder[Optional[str]]: return flags.DEFINE_string( 'reservation_id', None, 'Reservation ID used when executing the job. Reservation should be in the' 'format of project_id:reservation_id, project_id:location.reservation_id,' 'or reservation_id', flag_values=flag_values, ) def define_event_driven_schedule( flag_values: flags.FlagValues, ) -> flags.FlagHolder[Optional[str]]: return flags.DEFINE_string( 'event_driven_schedule', None, 'Event driven schedule in json format. Example:' ' --event_driven_schedule=\'{"pubsub_subscription":' ' "projects/project-id/subscriptions/subscription-id"}\'. This flag' ' should not be used with --schedule, --no_auto_scheduling,' ' --schedule_start_time or --schedule_end_time.', flag_values=flag_values, ) def define_use_full_timestamp( flag_values: flags.FlagValues, ) -> flags.FlagHolder[bool]: return flags.DEFINE_boolean( 'use_full_timestamp', False, 'Use full precision ISO8601 string representation for timestamp values' ' in the result.', flag_values=flag_values, ) def define_parent_group( flag_values: flags.FlagValues, ) -> flags.FlagHolder[Optional[str]]: return flags.DEFINE_string( 'parent_group', None, 'The resource name of the parent reservation group. It can be a full ' 'resource name or just the reservation group ID.', flag_values=flag_values, )