Home
last modified time | relevance | path

Searched refs:allowed_list (Results 1 – 2 of 2) sorted by relevance

/external/ltp/testcases/kernel/controllers/cpuset/cpuset_syscall_test/
Dcpuset_syscall_testset.sh107 allowed_list="$(awk '/Cpus_allowed_list:/{print $2}' $TEST_PROCSTATUS )"
108 test "$allowed_list" = "0"
110 tst_resm TFAIL "Result(/proc/<pid>/status) = \"$allowed_list\", expect = \"0\""
119 allowed_list="$(awk '/Cpus_allowed_list:/{print $2}' $TEST_PROCSTATUS )"
120 test "$allowed_list" = "0"
122 tst_resm TFAIL "Result(/proc/<pid>/status) = \"$allowed_list\", expect = \"0\""
131 allowed_list="$(awk '/Cpus_allowed_list:/{print $2}' $TEST_PROCSTATUS )"
132 test "$allowed_list" = "1"
134 tst_resm TFAIL "Result(/proc/<pid>/status) = \"$allowed_list\", expect = \"1\""
143 allowed_list="$(awk '/Cpus_allowed_list:/{print $2}' $TEST_PROCSTATUS )"
[all …]
/external/tensorflow/tensorflow/python/framework/
Dop_def_library.py57 allowed_list = attr_def.allowed_values.list.type
58 if dtype not in allowed_list:
63 ", ".join(dtypes.as_dtype(x).name for x in allowed_list)))
478 allowed_list = None
488 allowed_list = allowed_list_attr_map.get(input_arg.type_attr)
494 if dtype is None and allowed_list:
508 if inferred is not None and inferred.dtype in allowed_list: