Displaying 4 results from an estimated 4 matches for "inlog".
Did you mean:
ilog
2005 Jun 06
1
A performance anomaly
...second version to
be slightly (very slightly) slower than the first. But I am finding
this is not the case! The second version is slightly faster. How can
this be?
On my machine (ibook @ 1.2 GHz, OS X "panther", R 2.1), I get:
> measurement(ols.lf1)
[1] 7.45
> measurement(ols.lf1.inlogs)
[1] 6.9
Here is the self-contained bug-demonstration code:
ols.lf1 <- function(theta, y, X) {
beta <- theta[-1]
sigma2 <- theta[1]
if (sigma2 <= 0) return(NA)
n <- nrow(X)
e <- y - X%*%beta
logl <- ((-n/2)*log(2*pi)) - ((n/2)*log(sigma2)) - ((t(e)%*%e)/(2*sigma2...
2004 Oct 12
1
Redirect "My Documents" for NT through XP
I have seen ways to redirect "My Documents" for XP through the registry, and
I've seen ways to do it in NT if you have NT server actually connected to
your PDC. I've seen ways to do it in 9x if you have Windows 98 somewhere so
that you can use their policy editor. Isn't there some way that I can do it
for everyone all at once? I don't happen to have any Win98
2005 Jul 02
1
limiting netlogon scripts to a subnet?-will this work?
Would this work? The problem is, I do not have
roaming profiles in use(As it is not practical for us,
as users tend to use the same computers). I want only
users with IP from 192.168.1.x to load the databases.
The loaddatabases.cmd file in question would contain
rem Grab IP address and dump to a file
ipconfig >"%userprofile%\ipconfig.txt"
echo Checking for your location
2004 Nov 21
1
will BDC work if PDC crashes?
Hello,
Will BDC work if PDC crashes or there is no connectivity between them?
I assume that the servers are storing users / passwords in LDAP
database; both BDC and PDC have LDAP running locally (changes in PDC are
replicated to BDC).
Will users be able to log into the domain / use roaming profiles with no
PDC (as it crashed or link was broken), when only BDC is running?
Tomek