search for: othewise

Displaying 20 results from an estimated 64 matches for "othewise".

Did you mean: otherwise
2017 Jul 11
1
[PATCH] hivexsh: Add missing documentation for -u switch
...od index 7d7fc0a..8b10a6a 100644 --- a/sh/hivexsh.pod +++ b/sh/hivexsh.pod @@ -61,6 +61,13 @@ script, use: #!/usr/bin/hivexsh -f +=item B<-u> + +Use heuristics to tolerate certain levels of corruption within hives. + +This is unsafe but may allow to export/merge valid keys/values in an +othewise corrupted hive. + =item B<-w> If this option is given, then writes are allowed to the hive -- 2.13.2
2010 Jul 23
1
Dovecot and LDAP - virtual hosting problem
...nf to authenticate both users from the same ldap tree. My ldap tree is organized like: ou=people,o=example.com,dc=acme ou=people,o=somevirtdomain.cp,dc=acme and so on... The only one thing that comes on my mind is something like (default domain) in dovecot.conf (if %d is empty then %d=examle.com, othewise...) I know this option does not exist but is just comes on my mind... Maybe some specific filter_search or something like that? Than you for any help in advance.
2010 Apr 07
2
[LLVMdev] graph abstraction proposal
...raph instread of GraphTraits. the abstraction has to provide some typedefs and methods (and would be quite similar to GraphTraits): typedef XXX NodeType; typedef XXX ChildIteratorType; typedef XXX NodesIteratorType; getRoots(); // return all roots getRoot(); // return the root if it is only one, othewise NULL child_begin(NodeType* node); // iterators for children of a node child_end(NodeType* node); nodes_begin(); // iterators for the nodes of a node nodes_end(); A concrete graph needs a constructor that stores a reference to the data that is to look like a graph. e.g. struct BasicBlockGraph {...
2004 Jun 22
1
The truncate_inode_page call inocfs_file_releasecaus es the severethroughput drop of file reading in OCFS2.
...From: ocfs2-devel-bounces@oss.oracle.com=20 >[mailto:ocfs2-devel-bounces@oss.oracle.com] On Behalf Of Wim Coekaerts >Sent: 2004=C4=EA6=D4=C222=C8=D5 16:01 >To: Zhang, Sonic > >the problem is, how can we notify. I think we don't want to=20 >notify every >node on every change othewise we overload the interconnect and we don't >have a good consistent map, if I remmeber Kurts explanation correctly. >this has to be fixed for regular performance for sure, the question is >how do we do this in a good way.=20 What we are thinking is like follows: 1.Both node A and node...
2010 Apr 08
0
[LLVMdev] graph abstraction proposal
...traction has to provide some typedefs and methods > (and would be quite similar to GraphTraits): > > typedef XXX NodeType; > typedef XXX ChildIteratorType; > typedef XXX NodesIteratorType; > > getRoots(); // return all roots > getRoot(); // return the root if it is only one, othewise NULL > or just add these methods to GraphTraits? > > child_begin(NodeType* node); // iterators for children of a node > child_end(NodeType* node); > > nodes_begin(); // iterators for the nodes of a node > nodes_end(); > > > A concrete graph needs a constructor that s...
2017 Jul 11
0
[PATCH] hivexml: Add -u flag for HIVEX_OPEN_UNSAFE
...ug report. Keep going even if we find errors in the Registry file. This skips over any parts of the Registry that we cannot read. +=item B<-u> + +Use heuristics to tolerate certain levels of corruption within hives. + +This is unsafe but may allow to export/merge valid keys/values in an +othewise corrupted hive. + =back =head1 SEE ALSO -- 2.13.2
2017 Dec 29
0
[PATCH 1/1] hivexregedit: add --max-depth option for exports
...f --git a/regedit/hivexregedit b/regedit/hivexregedit index cd49063..737450d 100755 --- a/regedit/hivexregedit +++ b/regedit/hivexregedit @@ -259,6 +259,20 @@ Use heuristics to tolerate certain levels of corruption within hives. This is unsafe but may allow to export/merge valid keys/values in an othewise corrupted hive. +=cut + +my $max_depth; + +=item B<--max-depth> depth + +Limits the recursion depth of the export. For example, an export +with a max depth of 1 will only include values directly under the +specified key/prefix. A max depth of 0 will return no values. + +Exports include all...
2010 Apr 18
1
update of a function
On 18/04/2010 7:52 AM, carol white wrote: > Hi, > I could finally create an R package. I was suprised to notice that when I want to update a function, even if it is updated in package_name/R/function.R and after build but it is not updated when the package is loaded. I see that the tar.gz file is updated but when I load the package, I get the old version. The only solution that I found was
2003 Mar 05
1
Re: re problems with ext3 well if think it is
Simon May wrote: > Hi I'm hoping you maybe able to help > I have late last year converted all my machines to ext3 no problems > now I have one machine crashing once every 4 / 5 days > I have used a crash dump and see the following > > <0>Assertion failure in do_get_write_access() at transaction.c:589: > "handle->h_buffer_credits > 0" > >
2012 Feb 24
0
[newbie] how to represent very skewed spatial data?
What are good ways to (automatedly) plot (or othewise present) spatial data that is very skewed? E.g. http://tinyurl.com/dn2VerySkewedSpatialData produced with fields:image.plot. There are obviously outliers :-) which may or may not be "for real." At an exploratory stage in the investigation, I don't want to prejudge, I just want to sh...
2012 May 14
1
BackupPC FAQ? Backups Apparently Working, but Web Interface Shows Nothing
BackuPC host is CentOS 6.2. Just one windows XP client. SMB backups appear to be working; there is data in the backup directory tree, including a subdir named for the client, in which I can manually view individual files that have been backed up. Now trying to use the web interface. Apache lets me log in, but the status screen shows nothing. Hosts screen says: This status was generated
2017 Jul 14
2
[hivex PATCH 1/2] hivexregedit: fix POD markup
...I<never> use it if the output is going to be passed into another program or stored in another hive. -=back - =cut my $unsafe; @@ -261,6 +259,8 @@ Use heuristics to tolerate certain levels of corruption within hives. This is unsafe but may allow to export/merge valid keys/values in an othewise corrupted hive. +=back + =cut GetOptions ("help|?" => \$help, -- 2.9.4
2010 Apr 09
0
[LLVMdev] graph abstraction proposal
...ts to the graph interface. This will allow the DOTGraphTraits based printers to not only print trees. > typedef XXX NodeType; > typedef XXX ChildIteratorType; > typedef XXX NodesIteratorType; > > getRoots(); // return all roots > getRoot(); // return the root if it is only one, othewise NULL > > child_begin(NodeType* node); // iterators for children of a node > child_end(NodeType* node); > > nodes_begin(); // iterators for the nodes of a node > nodes_end(); > > > A concrete graph needs a constructor that stores a reference to the data > that is to loo...
2017 Dec 29
2
[PATCH 0/1] hivexregedit: add --max-depth option for exports
This new option allows you to only export what you care about from a registry hive by specifying a max recursion depth. Michael Meyer (1): hivexregedit: add --max-depth option for exports perl/lib/Win/Hivex/Regedit.pm | 14 ++++++++++++-- regedit/hivexregedit | 18 +++++++++++++++++- 2 files changed, 29 insertions(+), 3 deletions(-) -- 2.14.3 (Apple Git-98)
2010 Jan 20
4
C++ Runtime error
I know this has come up quite a few times. Its that same r6034 error except I have vcrun2005 and when I try to install vcrun2008 with winetricks I get....The same error! So I can't upgrade because of the error and a loooot of my programs wont work because of it now. Is there a previous version I need first and have to install them in order?
2018 Mar 18
1
Samba 4 ACL with RHEL 7 XFS
Hello, We are moving to RHEL 7 with Samba 4, and XFS file systems with ACL turned on by default. We come from RHEL 5 Samba 3 with no ACL activated, on file systems. Initially anyway, we do not want ACL support activated, in order to initially preserve legacy. Our shares will have these directives: force user = dl4ub force group = dl4ub create mode = 0000 force create mode = 0660 directory
2004 Jun 22
1
The truncate_inode_page call in ocfs_file_release causes the severethroughput drop of file reading in OCFS2.
Hi, We have investigated the possible causes of the severe throughput drop of file reading in OCFS2 that found in the iozone benchmark. We find the major cause is the inadequate inode page cache cleaning when open or close the last reference to an inode. In routine ocfs_file_release(), if the caller is the last reference to this inode, truncate_inode_page is called to invalidate all page
2023 Jan 04
1
[networkupstools/nut] Project Release Cycle Plan Needed (Issue #1769)
Hello, Good question - I hoped to deal them out twice a year or so, but it (toxically, in hindsight) stumbled on trying to adddress a few bugs reported in 2.8.0 to deliver fixes as 2.8.1 :\ I've dealt with projects that port stuff to a release/stable branch, and at least for a small team like ours it is a much more difficult endeavour/overhead than trying to keep "master" clean
2023 Jan 04
1
[networkupstools/nut] Project Release Cycle Plan Needed (Issue #1769)
Hello, Good question - I hoped to deal them out twice a year or so, but it (toxically, in hindsight) stumbled on trying to adddress a few bugs reported in 2.8.0 to deliver fixes as 2.8.1 :\ I've dealt with projects that port stuff to a release/stable branch, and at least for a small team like ours it is a much more difficult endeavour/overhead than trying to keep "master" clean
2002 Feb 25
1
Samba-2.2.3a and Win95?
...2 netbios name = devil load printers = false encrypt passwords = Yes smb passwd file = /var/samba/devil/private/smbpasswd security = user ; I would prefer, that this machine is not a domain-master-browser, ; but it has to, since othewise it would not be accepted by some ; windows clients as the PDC. So sorry. GHess 11-Jan-2002 os level = 64 local master = yes domain master = yes domain admin group = +winadmin preferred master = yes ; Nevertheless, we try to move (ke...