Displaying 20 results from an estimated 10000 matches similar to: "Re: what REST architecture"
2014 Jan 14
1
[PATCH] hivex: Make empty strings in REG_MULTI_SZ values available.
---
lib/value.c | 26 +++++++++++++++++++++++---
1 file changed, 23 insertions(+), 3 deletions(-)
diff --git a/lib/value.c b/lib/value.c
index db6396f..c4e21ec 100644
--- a/lib/value.c
+++ b/lib/value.c
@@ -462,7 +462,27 @@ hivex_value_string (hive_h *h, hive_value_h value)
return ret;
}
-/* http://blogs.msdn.com/oldnewthing/archive/2009/10/08/9904646.aspx */
+/* Even though
+ *
2018 Nov 30
3
(Question regarding the) incomplete "builtins library" of "Compiler-RT"
Hi @ll,
compiler-rt implements (for example) the MSVC (really Windows)
specific routines compiler-rt/lib/builtins/i386/chkstk.S and
compiler-rt/lib/builtins/x86_64/chkstk.S as __chkstk_ms()
See <http://msdn.microsoft.com/en-us/library/ms648426.aspx>
Is there any special reason why compiler-rt doesn't implement
other MSVC specific functions (alias builtins or "compiler
2009 Jun 02
0
[LLVMdev] RFC: Atomics.h
Owen Anderson wrote:
> Is this actually the case? I can't find it documented anywhere on
> MSDN or the rest of the internet.
C:\Program Files\Microsoft SDKs\Windows\v6.0A\Include>grep -n -F
MemoryFence WinNT.h
2231:#define MemoryFence _mm_mfence
C:\Program Files\Microsoft SDKs\Windows\v6.0A\Include>grep -n -F
MemoryBarrier WinNT.h
2288:#define MemoryBarrier __faststorefence
2015 Feb 15
3
What options do I have to create OUs and ACLs in Samba4?
On 15/02/15 18:27, Marc Muehlfeld wrote:
> Hello John,
>
> Am 15.02.2015 um 18:56 schrieb John Lewis:
>> I need to create a couple of OUs under Users to separate my internal
>> users from my external users that have LDAP backed accounts so I can put
>> ACLs over the external users so I can limit what they can see on the
>> tree. What options do I have to create the
2013 May 06
2
flac-dev Digest, Vol 102, Issue 7
Ralph, for Mac OS you should download either the Unarchiver which is free,
or Entrophy which is what I use, but it costs like $15 I believe, both
support decompressing .7z and Entrophy supports compressing TO .7z
On Mon, May 6, 2013 at 3:00 PM, <flac-dev-request at xiph.org> wrote:
> Send flac-dev mailing list submissions to
> flac-dev at xiph.org
>
> To subscribe or
2018 Aug 21
0
Get Logical processor count correctly whether NUMA is enabled or disabled
Dear Arun,
thank you for the report. I agree with the analysis, detectCores() will
only report logical processors in the NUMA group in which R is running.
I don't have a system to test on, could you please check these
workarounds for me on your systems?
# number of logical processors - what detectCores() should return
out <- system("wmic cpu get numberoflogicalprocessors",
2013 May 07
0
flac-dev Digest, Vol 102, Issue 7
It's not that hard to repackage it, is it?
Here you go: www.icer.nl/misc_stuff/flac.xcodeproj .zip
On 06-05-13 23:37, Marcus Johnson wrote:
> Ralph, for Mac OS you should download either the Unarchiver which is
> free, or Entrophy which is what I use, but it costs like $15 I
> believe, both support decompressing .7z and Entrophy supports
> compressing TO .7z
>
>
> On
2013 Mar 15
2
snprintf and MS Visual Studio
Christoph Terasa wrote:
> Since MS refuses to support C99, the common practice is to use either
>
> sprintf_s:
> http://msdn.microsoft.com/en-us/library/ce3zzk1k(v=VS.80).aspx
> _snprintf_s:
> http://msdn.microsoft.com/de-de/library/f30dzcf6(v=VS.80).aspx
>
> The former can be used as a drop-in replacement of snprintf via a
> define, the latter takes an
2006 Apr 03
1
Microsoft Monad Shell
Not sure if this has application for R but Microsoft's new Monad shell
is now in public beta. I have not looked at it myself but I wonder
if the tools that are required to create Windows R packages
could be replaced by this?
----
The Monad team has recently released Monad Beta 3.1 to Microsoft Download
Center and we're working diligently towards a release of Monad 1.0! As
adoption of
2008 Jun 30
1
Did Microsoft release any useful information . . . ?
Hello,
I just read on an austrian news site ( http://futurezone.orf.at/hardcore/stories/289596/
) that Microsoft released documentation of some of their protocols.
On the site there are 4 links to Microsoft:
http://www.microsoft.com/presspass/press/2008/jun08/06-30InteropUpdatePR.mspx?rss_fdn=Press%20Releases
http://msdn.microsoft.com/en-us/library/cc216514.aspx
2013 Mar 14
0
snprintf and MS Visual Studio
On 3/14/2013 8:00 AM, Erik de Castro Lopo wrote:
> Hi all,
>
> There are a bunch of sprintf calls in the FLAC code base and I'd like
> to replace them with calls to snprintf but I know that can cause
> problems with at least some versions of Visual Studio.
>
> Whats the current state of play in this regard?
>
> Erik
Since MS refuses to support C99, the common
2013 Mar 15
0
snprintf and MS Visual Studio
Microsoft provides a surprisingly good (but proprietary) API inside strsafe.h. StringCchPrintfA can be substituted for snprintf but the return value is different. A small wrapper function around StringCchPrintfExA could get you enough information to emulate snprintf well. But sprintf_s might be good enough for the limited uses inside flac, as you said.
Sent from my iPhone
On Mar 14, 2013, at
2018 Aug 27
0
Get Logical processor count correctly whether NUMA is enabled or disabled
Dear Arun,
thank you for checking the workaround scripts.
I've modified detectCores() to use GetLogicalProcessorInformationEx. It
is in revision 75198 of R-devel, could you please test it on your
machines? For a binary, you can wait until the R-devel snapshot build
gets to at least this svn revision.
Thanks for the link to the processor groups documentation. I don't have
a machine
2018 Aug 17
2
Get Logical processor count correctly whether NUMA is enabled or disabled
Dear R-devel list,
R's detectCores() function internally calls "ncpus" function to get the total number of logical processors. However, this doesnot seem to take NUMA into account on Windows machines.
On a machine having 48 processors (24 cores) in total and windows server 2012 installed, if NUMA is enabled and has 2 nodes (node 0 and node 1 each having 24 CPUs), then R's
2016 Sep 15
0
Point-and-Print driver installation asks for confirmation on current Windows
I’ll share what i know for now and what works for me.
Most people wil see in there windows even log :
The user 'Printer Name Here' preference item in the 'Group Policy Object ... error code '0x80070bcb The specified printer driver was not found on the system
Event ID 4098.
For now i have set the following
2016 Sep 16
0
FW: Point-and-Print driver installation asks for confirmation on current Windows
Did someone say beer.. ;-)
I’ll share what i know for now and what works for me.
Most people wil see in there windows even log :
The user 'Printer Name Here' preference item in the 'Group Policy Object ... error code '0x80070bcb The specified printer driver was not found on the system
Event ID 4098.
2012 Apr 25
1
Function ReadFileEx in Wine
Hi,
I would like to know if this function is completely implement in Wine because since the release of new Ubisoft's games, there is a problem to launch correctly the game.
The error message is :
Code:
2011-12-21 22:04:31 [ 97] [ERROR ] NamedPipeReceiveLoop.cpp (74) : ReadFileEx failed, error = 997.
On Microsoft msdn website, this error (997 = ERROR_IO_PENDING) means that an operation
2015 Sep 03
1
ldapcmp issue
Thank you Rowland for these info.
So no more issue with 4.2.3 and auto-replication : )
Cheers
2015-09-03 11:52 GMT+02:00 Rowland Penny <rowlandpenny241155 at gmail.com>:
> On 03/09/15 09:59, mathias dufresne wrote:
>
>> Hi Mourik,
>>
>> whenChanged was replicated in my test once I did replicate in both way, so
>> it seems to me it is supposed to be
2018 Sep 03
0
Get Logical processor count correctly whether NUMA is enabled or disabled
A summary for reference: the new detectCores() for Windows in R-devel
seems to be working both for logical and physical cores on systems with
>64 logical processors? (thanks to Arun for testing!). If the feature
is important for anyone particularly using an older version of Windows
and/or on a system with >64 logical processors, it would be nice if you
could test and report any
2013 Dec 03
1
LDAPcmp show errors (serverState, subRefs)
Hi there!
Here it is a setup with an Windows 2003 SBS and two Samba 4.1.2.
Everything is working fine, but I found differences in LDAP and need to
know if this is relevant for replication
samba-tool ldapcmp ldap://sbssrv2003 ldap://samba4.1.2
[...]
Comparing:
'CN=Builtin,DC=SAMBADOMAIN,DC=local' [ldap://gaia]
'CN=Builtin,DC=SAMBADOMAIN,DC=local' [ldap://samba1]
Attributes