search for: section_nam

Displaying 5 results from an estimated 5 matches for "section_nam".

Did you mean: section_name
2015 Nov 17
0
[PATCH 2/3] v2v: windows: Add a Windows '*.inf' file parser.
...ons = List.map ( + fun (header, lines) -> + let header = String.lowercase_ascii header in + let lines = List.map ( + fun (key, value) -> + String.lowercase_ascii key, value + ) lines in + header, lines + ) sections in + + sections + +let find_section t section_name = + let section_name = String.lowercase_ascii section_name in + List.assoc section_name t + +let find_key t section_name key_name = + let data = find_section t section_name in + let key_name = String.lowercase_ascii key_name in + List.assoc key_name data + +let load filename = + of_string (r...
2019 Sep 24
2
'samba-tool testparm --section' bugs?
...e 'exceptions.TypeError'>): uncaught exception - File "/usr/lib/python2.7/dist-packages/samba/netcmd/__init__.py", line 177, in _run return self.run(*args, **kwargs) File "/usr/lib/python2.7/dist-packages/samba/netcmd/testparm.py", line 105, in run lp[section_name].dump(verbose) root at vdmsv1:~# samba-tool testparm --section-name=users ERROR(<type 'exceptions.TypeError'>): uncaught exception - File "/usr/lib/python2.7/dist-packages/samba/netcmd/__init__.py", line 177, in _run return self.run(*args, **kwargs) File &quot...
2019 Sep 24
3
'samba-tool testparm --section' bugs?
...> File "/usr/lib/python2.7/dist- > > packages/samba/netcmd/__init__.py", line 177, in _run > > return self.run(*args, **kwargs) > > File "/usr/lib/python2.7/dist- > > packages/samba/netcmd/testparm.py", line 105, in run > > lp[section_name].dump(verbose) > > root at vdmsv1:~# samba-tool testparm --section-name=users > > ERROR(<type 'exceptions.TypeError'>): uncaught exception - > > File "/usr/lib/python2.7/dist- > > packages/samba/netcmd/__init__.py", line 177, in _run > &gt...
2015 Nov 17
8
[PATCH 0/3] v2v: windows: Use '*.inf' files to control how Windows drivers are installed.
https://github.com/rwmjones/libguestfs/tree/rewrite-virtio-copy-drivers Instead of trying to split and parse elements from virtio-win paths, use the '*.inf' files supplied with the drivers to control how Windows drivers are installed. The following emails best explain how this works: https://www.redhat.com/archives/libguestfs/2015-October/msg00352.html
2017 Jul 25
2
PGO, zlib and 'default.profraw'
Hi David, When I use CMake to configure, ‘zlib’ and its header are detected - I build on CentOS 6.5 or CentOS 7. Since I run CMake from the command-line, I tried added ‘-DLLVM_ENABLE_ZLIB=0’ and ‘-DLLVM_ENABLE_ZLIB=1’ (using ‘-DLLVM_ENABLE_ZLIB=ON’ does not seem to work). Both ‘clang’ and ‘llvm-profdata’ (and all other tools and utilities) are configured and built together, in any event,