Home
last modified time | relevance | path

Searched full:ps1 (Results 1 – 25 of 247) sorted by relevance

12345678910

/external/tensorflow/tensorflow/python/distribute/cluster_resolver/
Dtfconfig_cluster_resolver_test.py52 "ps": ["ps0:2222", "ps1:2222"],
65 tasks { key: 1 value: 'ps1:2222' } }
77 "ps": ["ps0:2222", "ps1:2222"],
90 tasks { key: 1 value: 'ps1:2222' } }
100 "ps": ["ps0:2222", "ps1:2222"],
117 "ps": ["ps0:2222", "ps1:2222"],
134 "ps": ["ps0:2222", "ps1:2222"],
152 "ps": ["ps0:2222", "ps1:2222"],
170 "ps": ["ps0:2222", "ps1:2222"],
190 "ps": ["ps0:2222", "ps1:2222"],
[all …]
Dcluster_resolver_test.py140 "ps": ["ps0:2222", "ps1:2222"],
148 tasks { key: 1 value: 'ps1:2222' } }
158 "ps": ["ps0:2222", "ps1:2222"],
175 "ps": ["ps0:2222", "ps1:2222"],
194 "ps": ["ps0:2222", "ps1:2222"],
204 "ps": ["ps0:2222", "ps1:2222"],
214 "ps": ["ps0:2222", "ps1:2222"],
224 "ps": ["ps0:2222", "ps1:2222"],
261 "ps1:2222"
279 tasks { key: 1 value: 'ps1:2222' } }
[all …]
/external/python/cpython3/Lib/venv/scripts/common/
Dactivate25 PS1="${_OLD_VIRTUAL_PS1:-}"
26 export PS1
57 _OLD_VIRTUAL_PS1="${PS1:-}"
58 PS1="__VENV_PROMPT__${PS1:-}"
59 export PS1
DActivate.ps113 default value for this is the parent of the directory that the Activate.ps1
22 Activate.ps1
23 Activates the Python virtual environment that contains the Activate.ps1 script.
26 Activate.ps1 -Verbose
27 Activates the Python virtual environment that contains the Activate.ps1 script,
31 Activate.ps1 -VenvDir C:\Users\MyUser\Common\.venv
35 Activate.ps1 -Prompt "MyPython"
36 Activates the Python virtual environment that contains the Activate.ps1 script,
41 On Windows, it may be required to enable this Activate.ps1 script by setting the
/external/mksh/
Dmkshrc_vendor11 if (( USER_ID )); then PS1='$'; else PS1='#'; fi
12 PS4='[$EPOCHREALTIME] '; PS1='${|
18 }$HOSTNAME:${PWD:-?} '"$PS1 "
Dmkshrc11 if (( USER_ID )); then PS1='$'; else PS1='#'; fi
12 PS4='[$EPOCHREALTIME] '; PS1='${|
18 }$HOSTNAME:${PWD:-?} '"$PS1 "
/external/python/cpython3/Lib/test/
Dtest_code_module.py32 del self.sysmod.ps1
38 self.assertEqual(self.sysmod.ps1, '>>> ')
39 self.sysmod.ps1 = 'custom1> '
41 self.assertEqual(self.sysmod.ps1, 'custom1> ')
47 self.sysmod.ps1 = 'custom2> '
49 self.assertEqual(self.sysmod.ps1, 'custom2> ')
/external/llvm/lib/Transforms/Utils/
DFlattenCFG.cpp194 BasicBlock *PS1 = PBI->getSuccessor(0); in FlattenParallelAndOr() local
196 BasicBlock *PS = (PS1 == BB) ? PS2 : PS1; in FlattenParallelAndOr()
197 int CIdx = (PS1 == BB) ? 0 : 1; in FlattenParallelAndOr()
223 BasicBlock *PS1 = TBB->getSuccessor(0); in FlattenParallelAndOr() local
225 BranchInst *PBI1 = dyn_cast<BranchInst>(PS1->getTerminator()); in FlattenParallelAndOr()
228 // If PS1 does not jump into PS2, but PS2 jumps into PS1, in FlattenParallelAndOr()
231 (PS1->getTerminator()->getSuccessor(0) != PS2)) { in FlattenParallelAndOr()
232 // Check whether PS2 jumps into PS1. in FlattenParallelAndOr()
234 (PS2->getTerminator()->getSuccessor(0) != PS1)) in FlattenParallelAndOr()
258 // PS1 must have a conditional branch. in FlattenParallelAndOr()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DFlattenCFG.cpp206 BasicBlock *PS1 = PBI->getSuccessor(0); in FlattenParallelAndOr() local
208 BasicBlock *PS = (PS1 == BB) ? PS2 : PS1; in FlattenParallelAndOr()
209 int CIdx = (PS1 == BB) ? 0 : 1; in FlattenParallelAndOr()
235 BasicBlock *PS1 = TBB->getSuccessor(0); in FlattenParallelAndOr() local
237 BranchInst *PBI1 = dyn_cast<BranchInst>(PS1->getTerminator()); in FlattenParallelAndOr()
240 // If PS1 does not jump into PS2, but PS2 jumps into PS1, in FlattenParallelAndOr()
243 (PS1->getTerminator()->getSuccessor(0) != PS2)) { in FlattenParallelAndOr()
244 // Check whether PS2 jumps into PS1. in FlattenParallelAndOr()
246 (PS2->getTerminator()->getSuccessor(0) != PS1)) in FlattenParallelAndOr()
270 // PS1 must have a conditional branch. in FlattenParallelAndOr()
/external/musl/src/math/
D__invtrigl.c7 pS1 = -4.16313987993683104320e-01L, variable
27 p = z*(pS0+z*(pS1+z*(pS2+z*(pS3+z*(pS4+z*(pS5+z*pS6)))))); in __invtrigl_R()
34 pS1 = -7.32816946414566252574527475428622708e-01L, variable
59 p = z*(pS0+z*(pS1+z*(pS2+z*(pS3+z*(pS4+z*(pS5+z*(pS6+z*(pS7+z*(pS8+z*pS9))))))))); in __invtrigl_R()
/external/python/cpython2/Parser/
Dparsetok.c73 char *ps1, char *ps2, perrdetail *err_ret) in PyParser_ParseFile() argument
75 return PyParser_ParseFileFlags(fp, filename, g, start, ps1, ps2, in PyParser_ParseFile()
81 char *ps1, char *ps2, perrdetail *err_ret, int flags) in PyParser_ParseFileFlags() argument
84 return PyParser_ParseFileFlagsEx(fp, filename, g, start, ps1, ps2, err_ret, &iflags); in PyParser_ParseFileFlags()
89 char *ps1, char *ps2, perrdetail *err_ret, int *flags) in PyParser_ParseFileFlagsEx() argument
95 if ((tok = PyTokenizer_FromFile(fp, ps1, ps2)) == NULL) { in PyParser_ParseFileFlagsEx()
/external/mesa3d/.gitlab-ci/windows/
DREADME.md13 The base container build job executes the `mesa_container.ps1` script which
19 The rebuild executes `docker build` which calls `mesa_deps.ps1` inside the
30 The Mesa build runs inside the base container, executing `mesa_build.ps1`.
DDockerfile9 COPY mesa_deps.ps1 C:\
10 RUN C:\mesa_deps.ps1
/external/tensorflow/tensorflow/python/training/
Dserver_lib_test.py434 "ps": ["ps0:2222", "ps1:2222"],
443 tasks { key: 1 value: 'ps1:2222' } }
457 "ps": ["ps0:2222", "ps1:2222"],
469 tasks { key: 1 value: 'ps1:2222' } }
496 "ps": ["ps0:2222", "ps1:2222"],
502 tasks { key: 1 value: 'ps1:2222' } }
521 "ps": ["ps0:2222", "ps1:2222"],
529 tasks { key: 1 value: 'ps1:2222' } }
546 "ps": ["ps0:2222", "ps1:2222"],
552 tasks { key: 1 value: 'ps1:2222' } }
[all …]
/external/python/cpython2/Lib/
Dcode.py71 decide whether to use sys.ps1 or sys.ps2 to prompt the next
178 using the familiar sys.ps1 and sys.ps2, and input buffering.
212 sys.ps1
214 sys.ps1 = ">>> "
232 prompt = sys.ps1
/external/python/cpython3/Lib/
Dcode.py58 decide whether to use sys.ps1 or sys.ps2 to prompt the next
166 using the familiar sys.ps1 and sys.ps2, and input buffering.
205 sys.ps1
207 sys.ps1 = ">>> "
225 prompt = sys.ps1
/external/python/cpython2/Demo/pysvr/
Dpysvr.py70 str(sys.ps1)
72 sys.ps1 = ">>> "
75 stdout.write(sys.ps1)
/external/fdlibm/
De_acos.c50 pS1 = -3.25565818622400915405e-01, /* 0xBFD4D612, 0x03EB6F7D */ variable
81 p = z*(pS0+z*(pS1+z*(pS2+z*(pS3+z*(pS4+z*pS5)))));
87 p = z*(pS0+z*(pS1+z*(pS2+z*(pS3+z*(pS4+z*pS5)))));
99 p = z*(pS0+z*(pS1+z*(pS2+z*(pS3+z*(pS4+z*pS5)))));
/external/libvpx/libvpx/vp8/common/
Dloopfilter_filters.c48 signed char ps1, qs1; in vp8_filter() local
52 ps1 = (signed char)*op1 ^ 0x80; in vp8_filter()
58 filter_value = vp8_signed_char_clamp(ps1 - qs1); in vp8_filter()
86 u = vp8_signed_char_clamp(ps1 + filter_value); in vp8_filter()
143 signed char ps1 = (signed char)*op1 ^ 0x80; in vp8_mbfilter() local
150 filter_value = vp8_signed_char_clamp(ps1 - qs1); in vp8_mbfilter()
180 s = vp8_signed_char_clamp(ps1 + u); in vp8_mbfilter()
/external/python/cpython3/Parser/
Dpeg_api.c20 int mode, const char *ps1, const char* ps2, in _PyParser_ASTFromFile() argument
26 return _PyPegen_run_parser_from_file_pointer(fp, mode, filename_ob, enc, ps1, ps2, in _PyParser_ASTFromFile()
/external/protobuf/csharp/
Dinstall_dotnet_sdk.ps110 $InstallScriptUrl = 'https://dot.net/v1/dotnet-install.ps1'
11 $InstallScriptPath = Join-Path "$env:TEMP" 'dotnet-install.ps1'
/external/vulkan-validation-layers/tests/
D_run_all_tests.ps14 # i.e. run_all_tests.ps1 -TestExceptions VkLayerTest.RequiredParameter:VkLayerTest.UnrecognizedValue
7 # i.e run_all_tests.ps1 -Debug
/external/libvpx/libvpx/vpx_dsp/x86/
Dhighbd_loopfilter_sse2.c59 __m128i ps1, qs1, ps0, qs0; in vpx_highbd_lpf_horizontal_16_sse2() local
151 ps1 = _mm_subs_epi16(p1, t80); in vpx_highbd_lpf_horizontal_16_sse2()
156 filt = _mm_and_si128(signed_char_clamp_bd_sse2(_mm_subs_epi16(ps1, qs1), bd), in vpx_highbd_lpf_horizontal_16_sse2()
179 ps1 = _mm_adds_epi16(signed_char_clamp_bd_sse2(_mm_adds_epi16(ps1, filt), bd), in vpx_highbd_lpf_horizontal_16_sse2()
362 ps1 = _mm_andnot_si128(flat, ps1); in vpx_highbd_lpf_horizontal_16_sse2()
366 p1 = _mm_or_si128(ps1, flat_p1); // full list of p1 values in vpx_highbd_lpf_horizontal_16_sse2()
516 __m128i ps1, ps0, qs0, qs1; in vpx_highbd_lpf_horizontal_8_sse2() local
544 ps1 = _mm_subs_epi16(p1, t80); in vpx_highbd_lpf_horizontal_8_sse2()
636 filt = signed_char_clamp_bd_sse2(_mm_subs_epi16(ps1, qs1), bd); in vpx_highbd_lpf_horizontal_8_sse2()
690 work_a = signed_char_clamp_bd_sse2(_mm_adds_epi16(ps1, filt), bd); in vpx_highbd_lpf_horizontal_8_sse2()
[all …]
/external/python/pycparser/tests/
Dtest_c_parser.py588 ps1 = self.parse(r'''
594 compound = ps1.ext[0].body.block_items[0].rvalue
600 compound = ps1.ext[0].body.block_items[1].rvalue
1672 ps1 = self.parse(s1)
1673 self.assert_all_Constants(ps1,
1675 self.assert_num_ID_refs(ps1, 'i', 1)
1676 self.assert_num_ID_refs(ps1, 'j', 2)
1696 ps1 = self.parse(s1)
1697 self.assert_num_ID_refs(ps1, 'argv', 3)
1698 self.assert_num_ID_refs(ps1, 'optind', 5)
[all …]
/external/python/cpython3/.azure-pipelines/windows-release/
Dstage-layout-nuget.yml38 copy $(Build.BinariesDirectory)\bin\Activate.ps1 Lib\venv\scripts\common\Activate.ps1 -Force

12345678910