| /petsc/src/benchmarks/ ! |
| H A D | PLogEvent.c | 41 fprintf(stderr, "%-15s : %e sec, with options : ", "PetscLogEvent", (y - x) / 10.0); in main() 44 if (flg) fprintf(stderr, "-log "); in main() 46 if (flg) fprintf(stderr, "-log_all "); in main() 48 if (flg) fprintf(stderr, "-log_view "); in main() 50 if (flg) fprintf(stderr, "-log_mpe "); in main() 52 fprintf(stderr, "\n"); in main()
|
| H A D | benchmarkExample.py | 61 …pipe = Popen(command, cwd=cwd, stdin=None, stdout=PIPE, stderr=PIPE, bufsize=-1, shell=True, unive…
|
| /petsc/src/binding/petsc4py/test/ ! |
| H A D | test_stdout.py | 12 prevstderr = sys.stderr 14 sys.stderr = StringIO() 29 newstderr = sys.stderr 31 sys.stderr = prevstderr
|
| /petsc/lib/petsc/bin/ ! |
| H A D | petscnagfor | 39 sub = subprocess.Popen(args, stdout=subprocess.PIPE,stderr=subprocess.PIPE) 42 error = sub.stderr.read().decode('UTF-8') 91 print(error,file=sys.stderr) 98 print(error,file=sys.stderr) 144 if lerror: print("\n"+lerror,file=sys.stderr) 150 print(error,file=sys.stderr) 182 print(error,file=sys.stderr)
|
| /petsc/lib/petsc/bin/maint/ ! |
| H A D | gcov.py | 26 self._stderr = sys.stderr 30 def setup(self, stdout = None, stderr = None, verbosity = 0): argument 34 if stderr is None: 35 stderr = self._stderr 39 self.stderr = stderr 55 self.__log(self.stderr, *args, **kwargs) 204 print(cpe.stderr) 281 stderr = blame_output.stderr.strip() 282 if stderr.startswith('fatal: no such path') and stderr.endswith('in HEAD'): 516 stderr = stderr_file.open('w') [all …]
|
| H A D | generateetags.py | 87 …S,PeOP -a -f '+ctagfile+' '+' '.join(frlist), shell=True, stdout=DEVNULL, stderr=subprocess.STDOUT) 89 …/ctags -a -f '+ctagfile+' '+' '.join(frlist), shell=True, stdout=DEVNULL, stderr=subprocess.STDOUT) 91 …'ctags -a -f '+ctagfile+' '+' '.join(frlist), shell=True, stdout=DEVNULL, stderr=subprocess.STDOUT)
|
| H A D | abicheck.py | 22 output = subprocess.check_output([compiler,'--help'], stderr=subprocess.STDOUT)
|
| /petsc/doc/ ! |
| H A D | build_man_pages.py | 61 if sp.stderr and sp.stderr.find('WARNING') > -1: 62 print(sp.stderr)
|
| /petsc/src/mat/tests/ ! |
| H A D | mmio.c | 34 fprintf(stderr, "This application does not support "); in mm_read_unsymmetric_sparse() 35 fprintf(stderr, "Market Market type: [%s]\n", mm_typecode_to_str(matcode)); in mm_read_unsymmetric_sparse() 42 fprintf(stderr, "read_unsymmetric_sparse(): could not parse matrix size.\n"); in mm_read_unsymmetric_sparse() 66 fprintf(stderr, "read_unsymmetric_sparse(): could not parse i, j and nonzero.\n"); in mm_read_unsymmetric_sparse()
|
| /petsc/src/sys/classes/viewer/impls/mathematica/ ! |
| H A D | runtime.c | 119 fprintf(stderr, "ERROR: %s\n", (char *)MLErrorMessage(link)); in processPacket() 210 fprintf(stderr, "Invalid packet type %d\n", packetType); in processPackets()
|
| /petsc/src/binding/petsc4py/src/petsc4py/PETSc/ ! |
| H A D | PETSc.pyx | 362 FILE *stderr 418 # stop stdout/stderr redirect 425 fprintf(stderr, 431 fprintf(stderr, 457 elif (fd == PETSC_STDERR) and not (sys.stderr == sys.__stderr__): 462 sys.stderr.write(ustring) 498 if (sys.stdout != sys.__stdout__) or (sys.stderr != sys.__stderr__):
|
| /petsc/lib/petsc/bin/maint/petsclinter/petsclinter/util/ ! |
| H A D | _utility.py | 258 includes = output.stderr.split('#include <...> search starts here:\n')[1]
|
| /petsc/share/petsc/ ! |
| H A D | chkerrconvert.py | 236 print('stderr:\n',ret.stderr.decode())
|
| /petsc/src/sys/webclient/ ! |
| H A D | client.c | 50 bio_err = BIO_new_fp(stderr, BIO_NOCLOSE); in PetscSSLInitializeContext()
|
| /petsc/config/ ! |
| H A D | gmakegen.py | 302 sys.stderr.write('Unknown arguments: %s\n' % ' '.join(extra_args))
|
| H A D | testparse.py | 629 sys.stderr.write('Unknown arguments: %s\n' % ' '.join(extra_args))
|
| H A D | gmakegentest.py | 1097 sys.stderr.write('Unknown arguments: %s\n' % ' '.join(extra_args))
|
| /petsc/doc/changes/ ! |
| H A D | 300.md | 13 redirect all stdout/stderr output in Microsoft Windows for example.
|
| /petsc/config/BuildSystem/ ! |
| H A D | script.py | 174 pipe = Popen(command, cwd=cwd, env=env, stdin=None, stdout=PIPE, stderr=PIPE,
|
| /petsc/doc/developers/ ! |
| H A D | testing.md | 149 with `Error:`, then the test is assumed to be testing the `stderr` output, and the 331 `stdout` instead of `stderr`. While using `stderr` (alongside the `Error:`
|
| H A D | kernel.md | 149 messages to `stderr`, instead of the default `stdout`, with the
|
| /petsc/src/sys/classes/viewer/impls/ascii/ ! |
| H A D | filev.c | 14 if (rank == 0 && vascii->fd != stderr && vascii->fd != PETSC_STDOUT) { in PetscViewerFileClose_ASCII()
|
| /petsc/src/binding/petsc4py/conf/ ! |
| H A D | confpetsc.py | 99 sys.stderr.write(' '.join(s) + '\n')
|
| /petsc/doc/faq/ ! |
| H A D | index.md | 480 ### How can I redirect PETSc's `stdout` and `stderr` when programming with a GUI interface in Windo… 555 and `stderr` is automatically output to the console window. 558 To change where all PETSc `stdout` and `stderr` go, (you can also reassign 559 `PetscVFPrintf()` to handle `stdout` and `stderr` any way you like) write the 566 if (fd != stdout && fd != stderr) { /* handle regular files */
|
| /petsc/src/sys/objects/ ! |
| H A D | pinit.c | 793 PETSC_STDERR = stderr; in PetscInitialize_Common()
|