OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:tar_file
(Results
1 - 8
of
8
) sorted by null
/external/icu/icu4c/as_is/os400/
unpax-icu.sh
63
tar_file
=$1
66
if [ ! -r $
tar_file
]; then
67
echo "$
tar_file
does not exist or cannot be read."
80
echo "Extracting from $
tar_file
..."
84
pax -C 819 -rc${VERBOSE_UNPACK}f $
tar_file
$ebcdic_data
90
pax -C 37 -r${VERBOSE_UNPACK}f $
tar_file
$ebcdic_data
106
pax -C 819 -rvf $
tar_file
`cat icu/as_is/bomlist.txt`
127
pax -C 819 -rvf $
tar_file
$binary_files;
139
pax -C 819 -rvf $
tar_file
$binary_files
150
pax -C 819 -rvf $
tar_file
$more_bin_file
[
all
...]
fixup-icu.sh
28
tar_file
=$1
52
pax -C 819 -rvf $
tar_file
$binary_files;
63
pax -C 819 -rvf $
tar_file
$binary_files
/external/icu/icu4c/as_is/os390/
unpax-icu.sh
43
tar_file
=$1
44
if [ ! -r $
tar_file
]; then
45
echo "$
tar_file
does not exist or cannot be read."
51
echo "Extracting from $
tar_file
..."
54
pax -rvf $
tar_file
-o to=IBM-1047,from=ISO8859-1 -o setfiletag
92
for i in $(pax -f $
tar_file
2>/dev/null)
123
pax -rvf $
tar_file
$binary_files
129
echo "$0 has completed extracting ICU from $
tar_file
."
/external/autotest/client/site_tests/platform_DebugDaemonDumpDebugLogs/
platform_DebugDaemonDumpDebugLogs.py
29
with tarfile.open(tmp_file, mode) as
tar_file
:
30
if len(
tar_file
.getmembers()) == 0:
/external/toolchain-utils/automation/common/
command.py
223
def UnTar(
tar_file
, dest_dir):
225
MakeDir(dest_dir), Shell('tar', '-x', '-f',
tar_file
, '-C', dest_dir))
228
def Tar(
tar_file
, *args):
231
if
tar_file
.endswith('.tar.bz2'):
233
elif
tar_file
.endswith('.tar.gz'):
236
assert
tar_file
.endswith('.tar')
238
options.extend(['-f',
tar_file
])
241
return Chain(MakeDir(os.path.dirname(
tar_file
)), Shell('tar', *options))
/external/tensorflow/tensorflow/lite/testing/
generated_examples_zip_test.cc
234
const string&
tar_file
) {
235
if (zip_file.empty() &&
tar_file
.empty()) {
237
"Neither zip_file nor
tar_file
was given"));
240
TF_CHECK_OK(archive_environment()->UnArchive(zip_file,
tar_file
,
246
TF_CHECK_OK(ReadManifest(
tar_file
, decompress_tmp_dir, &stuff));
/external/boringssl/src/util/bot/
extract.py
71
with tarfile.open(path, 'r:' + compression) as
tar_file
:
72
for info in
tar_file
:
78
yield FileEntry(info.name, info.mode,
tar_file
.extractfile(info))
/external/tensorflow/tensorflow/python/keras/utils/
data_utils_test.py
51
with tarfile.open(tar_file_path, 'w:gz') as
tar_file
:
52
tar_file
.add(text_file_path)
Completed in 358 milliseconds