Home
last modified time | relevance | path

Searched refs:DIR (Results 1 – 25 of 797) sorted by relevance

12345678910>>...32

/external/ltp/testcases/kernel/fs/racer/
Dfs_racer.sh32 DIR="$TMPDIR/race"
36 [ -e $DIR ] || mkdir $DIR
37 ./fs_racer_file_create.sh $DIR $MAX_FILES &
38 ./fs_racer_file_create.sh $DIR $MAX_FILES &
39 ./fs_racer_file_create.sh $DIR $MAX_FILES &
41 ./fs_racer_dir_create.sh $DIR $MAX_FILES &
42 ./fs_racer_dir_create.sh $DIR $MAX_FILES &
43 ./fs_racer_dir_create.sh $DIR $MAX_FILES &
45 ./fs_racer_file_rename.sh $DIR $MAX_FILES &
46 ./fs_racer_file_rename.sh $DIR $MAX_FILES &
[all …]
Dfs_racer_file_list.sh22 DIR=$1
26 ls -R $DIR/ > /dev/null 2> /dev/null &
27 ls -R $DIR/ > /dev/null 2> /dev/null &
28 ls -R $DIR/ > /dev/null 2> /dev/null &
29 ls -R $DIR/ > /dev/null 2> /dev/null &
30 ls -R $DIR/ > /dev/null 2> /dev/null &
32 ls -R $DIR/ > /dev/null 2> /dev/null &
33 ls -R $DIR/ > /dev/null 2> /dev/null &
34 ls -R $DIR/ > /dev/null 2> /dev/null &
35 ls -R $DIR/ > /dev/null 2> /dev/null &
[all …]
/external/toolchain-utils/binary_search_tool/full_bisect_test/
Dmain-bisect-test.sh17 DIR=full_bisect_test
20 if [[ ! -f "${DIR}/setup.sh" ]] ; then
21 echo "Cannot find ${DIR}/setup.sh. You are running this from the wrong directory."
27 ${DIR}/setup.sh
29 ./binary_search_state.py --get_initial_items="${DIR}/get_initial_items.sh" \
30 --switch_to_good="${DIR}/switch_to_good.sh" \
31 --switch_to_bad="${DIR}/switch_to_bad.sh" \
32 --test_setup_script="${DIR}/test_setup.sh" \
33 --test_script="${DIR}/interactive_test.sh" \
36 ${DIR}/cleanup.sh
[all …]
/external/linux-kselftest/tools/testing/selftests/firmware/
Dfw_filesystem.sh9 DIR=/sys/devices/virtual/misc/test_firmware
14 if [ ! -d $DIR ]; then
15 echo "$0: $DIR not present"
24 if [ ! -d $DIR ]; then
68 if printf '\000' >"$DIR"/trigger_request 2> /dev/null; then
73 if [ ! -e "$DIR"/trigger_async_request ]; then
76 if printf '\000' >"$DIR"/trigger_async_request 2> /dev/null; then
83 if echo -n "nope-$NAME" >"$DIR"/trigger_request 2> /dev/null; then
98 if ! echo -n "$NAME" >"$DIR"/trigger_request ; then
112 if [ ! -e "$DIR"/trigger_async_request ]; then
[all …]
Dfw_fallback.sh11 DIR=/sys/devices/virtual/misc/test_firmware
41 echo -n "$name" >"$DIR"/trigger_request &
45 while [ ! -e "$DIR"/"$name"/loading ]; do
54 echo 1 >"$DIR"/"$name"/loading
55 cat "$file" >"$DIR"/"$name"/data
56 echo 0 >"$DIR"/"$name"/loading
68 echo -n "$name" >"$DIR"/trigger_request 2>/dev/null &
72 while [ ! -e "$DIR"/"$name"/loading ]; do
81 echo -1 >"$DIR"/"$name"/loading
89 if [ ! -e "$DIR"/trigger_custom_fallback ]; then
[all …]
/external/mockftpserver/tags/2.0/src/test/groovy/org/mockftpserver/fake/command/
DRmdCommandHandlerTest.groovy36 static final DIR = p(PARENT, "usr")
39 createDirectory(DIR)
40 handleCommand([DIR])
41 assertSessionReply(ReplyCodes.RMD_OK, ['rmd', DIR])
42 assert fileSystem.exists(DIR) == false
47 createDirectory(p(DIR, SUB))
48 session.setAttribute(SessionKeys.CURRENT_DIRECTORY, DIR)
51 assert fileSystem.exists(p(DIR, SUB)) == false
55 handleCommand([DIR])
56 assertSessionReply(ReplyCodes.READ_FILE_ERROR, ['filesystem.doesNotExist', DIR])
[all …]
/external/mockftpserver/tags/2.4/src/test/groovy/org/mockftpserver/fake/command/
DRmdCommandHandlerTest.groovy36 static final DIR = p(PARENT, "usr")
39 createDirectory(DIR)
40 handleCommand([DIR])
41 assertSessionReply(ReplyCodes.RMD_OK, ['rmd', DIR])
42 assert fileSystem.exists(DIR) == false
47 createDirectory(p(DIR, SUB))
48 session.setAttribute(SessionKeys.CURRENT_DIRECTORY, DIR)
51 assert fileSystem.exists(p(DIR, SUB)) == false
55 handleCommand([DIR])
56 assertSessionReply(ReplyCodes.READ_FILE_ERROR, ['filesystem.doesNotExist', DIR])
[all …]
/external/mockftpserver/tags/2.0-rc1/MockFtpServer/src/test/groovy/org/mockftpserver/fake/command/
DRmdCommandHandlerTest.groovy36 static final DIR = p(PARENT, "usr")
39 createDirectory(DIR)
40 handleCommand([DIR])
41 assertSessionReply(ReplyCodes.RMD_OK, ['rmd', DIR])
42 assert fileSystem.exists(DIR) == false
47 createDirectory(p(DIR, SUB))
48 session.setAttribute(SessionKeys.CURRENT_DIRECTORY, DIR)
51 assert fileSystem.exists(p(DIR, SUB)) == false
55 handleCommand([DIR])
56 assertSessionReply(ReplyCodes.READ_FILE_ERROR, ['filesystem.doesNotExist', DIR])
[all …]
DCwdCommandHandlerTest.groovy34 def DIR = "/usr"
37 createDirectory(DIR)
38 handleCommand([DIR])
39 assertSessionReply(ReplyCodes.CWD_OK, ['cwd', DIR])
40 assert session.getAttribute(SessionKeys.CURRENT_DIRECTORY) == DIR
45 createDirectory(p(DIR, SUB))
46 session.setAttribute(SessionKeys.CURRENT_DIRECTORY, DIR)
49 assert session.getAttribute(SessionKeys.CURRENT_DIRECTORY) == p(DIR, SUB)
53 handleCommand([DIR])
54 assertSessionReply(ReplyCodes.READ_FILE_ERROR, ['filesystem.doesNotExist', DIR])
[all …]
/external/mockftpserver/tags/2.5/src/test/groovy/org/mockftpserver/fake/command/
DRmdCommandHandlerTest.groovy36 static final DIR = p(PARENT, "usr")
39 createDirectory(DIR)
40 handleCommand([DIR])
41 assertSessionReply(ReplyCodes.RMD_OK, ['rmd', DIR])
42 assert fileSystem.exists(DIR) == false
47 createDirectory(p(DIR, SUB))
48 session.setAttribute(SessionKeys.CURRENT_DIRECTORY, DIR)
51 assert fileSystem.exists(p(DIR, SUB)) == false
55 handleCommand([DIR])
56 assertSessionReply(ReplyCodes.READ_FILE_ERROR, ['filesystem.doesNotExist', DIR])
[all …]
/external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/command/
DRmdCommandHandlerTest.groovy36 static final DIR = p(PARENT, "usr")
39 createDirectory(DIR)
40 handleCommand([DIR])
41 assertSessionReply(ReplyCodes.RMD_OK, ['rmd', DIR])
42 assert fileSystem.exists(DIR) == false
47 createDirectory(p(DIR, SUB))
48 session.setAttribute(SessionKeys.CURRENT_DIRECTORY, DIR)
51 assert fileSystem.exists(p(DIR, SUB)) == false
55 handleCommand([DIR])
56 assertSessionReply(ReplyCodes.READ_FILE_ERROR, ['filesystem.doesNotExist', DIR])
[all …]
/external/mockftpserver/tags/2.0.1/src/test/groovy/org/mockftpserver/fake/command/
DRmdCommandHandlerTest.groovy36 static final DIR = p(PARENT, "usr")
39 createDirectory(DIR)
40 handleCommand([DIR])
41 assertSessionReply(ReplyCodes.RMD_OK, ['rmd', DIR])
42 assert fileSystem.exists(DIR) == false
47 createDirectory(p(DIR, SUB))
48 session.setAttribute(SessionKeys.CURRENT_DIRECTORY, DIR)
51 assert fileSystem.exists(p(DIR, SUB)) == false
55 handleCommand([DIR])
56 assertSessionReply(ReplyCodes.READ_FILE_ERROR, ['filesystem.doesNotExist', DIR])
[all …]
DCwdCommandHandlerTest.groovy34 def DIR = "/usr"
37 createDirectory(DIR)
38 handleCommand([DIR])
39 assertSessionReply(ReplyCodes.CWD_OK, ['cwd', DIR])
40 assert session.getAttribute(SessionKeys.CURRENT_DIRECTORY) == DIR
45 createDirectory(p(DIR, SUB))
46 session.setAttribute(SessionKeys.CURRENT_DIRECTORY, DIR)
49 assert session.getAttribute(SessionKeys.CURRENT_DIRECTORY) == p(DIR, SUB)
53 handleCommand([DIR])
54 assertSessionReply(ReplyCodes.READ_FILE_ERROR, ['filesystem.doesNotExist', DIR])
[all …]
/external/mockftpserver/tags/2.0-rc1/src/test/groovy/org/mockftpserver/fake/command/
DRmdCommandHandlerTest.groovy36 static final DIR = p(PARENT, "usr")
39 createDirectory(DIR)
40 handleCommand([DIR])
41 assertSessionReply(ReplyCodes.RMD_OK, ['rmd', DIR])
42 assert fileSystem.exists(DIR) == false
47 createDirectory(p(DIR, SUB))
48 session.setAttribute(SessionKeys.CURRENT_DIRECTORY, DIR)
51 assert fileSystem.exists(p(DIR, SUB)) == false
55 handleCommand([DIR])
56 assertSessionReply(ReplyCodes.READ_FILE_ERROR, ['filesystem.doesNotExist', DIR])
[all …]
/external/mockftpserver/tags/2.2/src/test/groovy/org/mockftpserver/fake/command/
DRmdCommandHandlerTest.groovy36 static final DIR = p(PARENT, "usr")
39 createDirectory(DIR)
40 handleCommand([DIR])
41 assertSessionReply(ReplyCodes.RMD_OK, ['rmd', DIR])
42 assert fileSystem.exists(DIR) == false
47 createDirectory(p(DIR, SUB))
48 session.setAttribute(SessionKeys.CURRENT_DIRECTORY, DIR)
51 assert fileSystem.exists(p(DIR, SUB)) == false
55 handleCommand([DIR])
56 assertSessionReply(ReplyCodes.READ_FILE_ERROR, ['filesystem.doesNotExist', DIR])
[all …]
DCwdCommandHandlerTest.groovy34 def DIR = "/usr"
37 createDirectory(DIR)
38 handleCommand([DIR])
39 assertSessionReply(ReplyCodes.CWD_OK, ['cwd', DIR])
40 assert session.getAttribute(SessionKeys.CURRENT_DIRECTORY) == DIR
45 createDirectory(p(DIR, SUB))
46 session.setAttribute(SessionKeys.CURRENT_DIRECTORY, DIR)
49 assert session.getAttribute(SessionKeys.CURRENT_DIRECTORY) == p(DIR, SUB)
53 handleCommand([DIR])
54 assertSessionReply(ReplyCodes.READ_FILE_ERROR, ['filesystem.doesNotExist', DIR])
[all …]
/external/mockftpserver/tags/2.0-rc3/MockFtpServer/src/test/groovy/org/mockftpserver/fake/command/
DRmdCommandHandlerTest.groovy36 static final DIR = p(PARENT, "usr")
39 createDirectory(DIR)
40 handleCommand([DIR])
41 assertSessionReply(ReplyCodes.RMD_OK, ['rmd', DIR])
42 assert fileSystem.exists(DIR) == false
47 createDirectory(p(DIR, SUB))
48 session.setAttribute(SessionKeys.CURRENT_DIRECTORY, DIR)
51 assert fileSystem.exists(p(DIR, SUB)) == false
55 handleCommand([DIR])
56 assertSessionReply(ReplyCodes.READ_FILE_ERROR, ['filesystem.doesNotExist', DIR])
[all …]
/external/mockftpserver/tags/2.3/src/test/groovy/org/mockftpserver/fake/command/
DRmdCommandHandlerTest.groovy36 static final DIR = p(PARENT, "usr")
39 createDirectory(DIR)
40 handleCommand([DIR])
41 assertSessionReply(ReplyCodes.RMD_OK, ['rmd', DIR])
42 assert fileSystem.exists(DIR) == false
47 createDirectory(p(DIR, SUB))
48 session.setAttribute(SessionKeys.CURRENT_DIRECTORY, DIR)
51 assert fileSystem.exists(p(DIR, SUB)) == false
55 handleCommand([DIR])
56 assertSessionReply(ReplyCodes.READ_FILE_ERROR, ['filesystem.doesNotExist', DIR])
[all …]
DCwdCommandHandlerTest.groovy34 def DIR = "/usr"
37 createDirectory(DIR)
38 handleCommand([DIR])
39 assertSessionReply(ReplyCodes.CWD_OK, ['cwd', DIR])
40 assert session.getAttribute(SessionKeys.CURRENT_DIRECTORY) == DIR
45 createDirectory(p(DIR, SUB))
46 session.setAttribute(SessionKeys.CURRENT_DIRECTORY, DIR)
49 assert session.getAttribute(SessionKeys.CURRENT_DIRECTORY) == p(DIR, SUB)
53 handleCommand([DIR])
54 assertSessionReply(ReplyCodes.READ_FILE_ERROR, ['filesystem.doesNotExist', DIR])
[all …]
/external/mockftpserver/tags/2.0.2/src/test/groovy/org/mockftpserver/fake/command/
DRmdCommandHandlerTest.groovy36 static final DIR = p(PARENT, "usr")
39 createDirectory(DIR)
40 handleCommand([DIR])
41 assertSessionReply(ReplyCodes.RMD_OK, ['rmd', DIR])
42 assert fileSystem.exists(DIR) == false
47 createDirectory(p(DIR, SUB))
48 session.setAttribute(SessionKeys.CURRENT_DIRECTORY, DIR)
51 assert fileSystem.exists(p(DIR, SUB)) == false
55 handleCommand([DIR])
56 assertSessionReply(ReplyCodes.READ_FILE_ERROR, ['filesystem.doesNotExist', DIR])
[all …]
/external/mockftpserver/tags/2.1/src/test/groovy/org/mockftpserver/fake/command/
DRmdCommandHandlerTest.groovy36 static final DIR = p(PARENT, "usr")
39 createDirectory(DIR)
40 handleCommand([DIR])
41 assertSessionReply(ReplyCodes.RMD_OK, ['rmd', DIR])
42 assert fileSystem.exists(DIR) == false
47 createDirectory(p(DIR, SUB))
48 session.setAttribute(SessionKeys.CURRENT_DIRECTORY, DIR)
51 assert fileSystem.exists(p(DIR, SUB)) == false
55 handleCommand([DIR])
56 assertSessionReply(ReplyCodes.READ_FILE_ERROR, ['filesystem.doesNotExist', DIR])
[all …]
/external/tensorflow/tensorflow/java/maven/
Drun_inside_container.sh75 cd "${DIR}/libtensorflow"
78 cd "${DIR}"
84 TARGET_DIR="${DIR}/tensorflow-android/target"
86 python "${DIR}/tensorflow-android/update.py" \
88 --template "${DIR}/tensorflow-android/pom-android.xml.template" \
93 NATIVE_DIR="${DIR}/libtensorflow_jni/src/main/resources/org/tensorflow/native"
119 cd "${DIR}"
123 NATIVE_DIR="${DIR}/libtensorflow_jni_gpu/src/main/resources/org/tensorflow/native"
139 cd "${DIR}"
156 rm -rf "${DIR}/proto/tmp"
[all …]
/external/tensorflow/tensorflow/tools/ci_build/windows/
Dlibtensorflow_cpu.sh50 DIR=lib_package
51 rm -rf ${DIR}
52 mkdir -p ${DIR}
55 cp bazel-bin/tensorflow/java/libtensorflow_jni.so ${DIR}/tensorflow_jni.dll
56 zip -j ${DIR}/libtensorflow_jni-cpu-windows-$(uname -m).zip \
57 ${DIR}/tensorflow_jni.dll \
59 rm -f ${DIR}/tensorflow_jni.dll
62 mkdir -p ${DIR}/include/tensorflow/c
63 mkdir -p ${DIR}/include/tensorflow/c/eager
64 mkdir -p ${DIR}/lib
[all …]
/external/mockftpserver/tags/2.x_Before_IDEA/src/test/groovy/org/mockftpserver/fake/command/
DRmdCommandHandlerTest.groovy37 def DIR = "/usr"
40 assert fileSystem.createDirectory(DIR)
41 commandHandler.handleCommand(createCommand([DIR]), session)
43 assert fileSystem.exists(DIR) == false
48 assert fileSystem.createDirectory(p(DIR,SUB))
49 session.setAttribute(SessionKeys.CURRENT_DIRECTORY, DIR)
52 assert fileSystem.exists(p(DIR,SUB)) == false
56 commandHandler.handleCommand(createCommand([DIR]), session)
57 assertSessionReply(ReplyCodes.EXISTING_FILE_ERROR, DIR)
61 assert fileSystem.createFile(DIR)
[all …]
/external/compiler-rt/lib/tsan/go/
Dbuildgo.sh100 DIR=$(mktemp -qd /tmp/gotsan.XXXXXXXXXX)
102 rm -rf $DIR
106 DIR=.
111 rm -f $DIR/gotsan.cc
113 cat $F >> $DIR/gotsan.cc
124 echo $CC gotsan.cc -c -o $DIR/race_$SUFFIX.syso $FLAGS $CFLAGS
126 $CC $DIR/gotsan.cc -c -o $DIR/race_$SUFFIX.syso $FLAGS $CFLAGS
128 $CC $OSCFLAGS test.c $DIR/race_$SUFFIX.syso -m64 -g -o $DIR/test $OSLDFLAGS
132 $DIR/test
134 $DIR/test 2>/dev/null

12345678910>>...32