Displaying 20 results from an estimated 29 matches for "unit1".
Did you mean:
unity
2011 Sep 26
1
Disabling Auto-complete
Hi,
I am a new user to R.
I am having the following problem while using R:
The defined function is having following a$unit as input but if I define
a$unit1 then still I am getting the output which is not desired.
__________________________
*Function:*
testfunction<-function(a){
stopifnot(a$unit==1)
cat("All is well")
}
b<-list(unit1=1 )
testfunction(b)
---------------------------------------------
*Output:*
> testfunction<-functi...
2012 Feb 26
6
Continuous pings going through a full DROP policy
...onnection is accepted in rules, continuous pinging to devices
will stop squarely in 4.0.15 as soon as a very basic firewall is
enabled whereas in 4.4.26.1, pinging will still continue after the
firewall is enabled.
All tests are done with proper reboot of the unit3 where the firewall
is applied:
unit1 <---> eth4 unit3 eth1 <---> unit2
192.168.3.2 192.168.3.1 172.30.159.103 172.30.159.102
lan zone net zone
In this case, continuous pings from unit1 to unit2 will stop when the
4.0.15 firewall is applied. Rebooting unit3 with 4.4.26.1 (easily
made since un...
2013 Oct 16
1
[LLVMdev] Unexpected behaviour of the LLVM gold plugin with --allow-multiple-definition
...LVM gold plugin, I have encountered an unexpected
behaviour when the option --allow-multiple-definition (or -z muldefs) is
specified for the linker.
Let's suppose the following scenario with four simple source files:
----- main.c ------
#include "unit.h"
int main() {
only_in_unit1();
only_in_unit2();
return get_unit_id();
}
----- unit.h ------
#ifndef _UNIT
#define _UNIT 1
int get_unit_id( void );
void only_in_unit1( void );
void only_in_unit2( void );
#endif
----- unit1.c ------
#include "unit.h"
int get_unit_id( void ) {
return 1;
}
void on...
2007 Oct 18
4
Samba 3 + LDAP with multiple ou's
Hello, all.
I was wondering if anyone could help me with this configuration:
I had a LDAP tree with this structure:
dc=base
+ ou=unit1
+ ou=People
+ ou=Groups
+ ou=Computers
+ ou=unit2
+ ou=People
+ ou=Groups
+ ou=Computers
+ ou=unit3
+ ou=People
+ ou=Groups
+ ou=Computers
...
And I need people from unit1 logging on unit2, unit3, etc.
First thing is to put all users on one SAMBA Domain, but:
Does Samba support...
2012 Jul 09
4
Skipping lines and incomplete rows
...a text file that has semi-colon separated values. The table is nearly
10,000 by 585. The files looks as follows:
*******************************************
First line: Skip this line
Second line: skip this line
Third line: skip this line
variable1 Variable2 Variable3 Variable4
Unit1 Unit2 Unit3
10 0.1 0.01 0.001
20 0.2 0.02 0.002
30 0.3 0.03 0.003
40 0.4 0.04 0.004
*******************************************
The f...
2010 Apr 01
0
OpenSSH Coredump and "Bad packet length" errors seen on 5.10 sparc sun4v (Generic_125100-10)
...var/core
# ls -ltr
-rw------- 1 root root 5199389 Feb 24 07:01
core_owtnmncccm0cnmo_ssh_0_0_1267016512_6729
# pstack core_owtnmncccm0cnmo_ssh_0_0_1267016512_6729
core 'core_owtnmncccm0cnmo_ssh_0_0_1267016512_6729' of 6729:
/usr/local/bin/ssh root at server0-unit1 rm -f
/etc/init.d/staticroutes
ff1ee314 AES_decrypt (3c, d1, aaa5d0a5, 314, 74, 3b0) + 2f4
ff1ee66c AES_cbc_encrypt (74490, 774a8, 10, 6a358, 61fb8,
61fb8) +2c
ff238abc aes_128_cbc_cipher (1, 774a8, 74490, 10, f0,
ff2d9a18) + 1c
ff23dfb8 EVP_Cipher (61f98, 774a8, 74490, 10, 61800, 6...
2008 Feb 23
1
clarification about glm
...e a binary covariate (unit=1,0)
the reference group would be 0? (prediction for unit=1)
example:
dat1<-data.frame(y,unit,x1,x2)
log_u <- glm(y~.,family=binomial,data=dat1)
summary(log_u)
Estimate Std. Error z value Pr(>|z|)
(Intercept) -0.54247 0.24658 -2.200 0.0278 *
unit1 -0.13052 0.22861 -0.571 0.5680
aps 0.03098 0.01433 2.162 0.0306 *
tiss0 0.02522 0.01101 2.291 0.0219 *
Thank you,
Sigalit.
[[alternative HTML version deleted]]
2005 Jan 18
3
User in passdb, but getpwnam() fails!
Hi
my problem is just like the subject, I could browse the shares with the same
username & password but I can't login to the domain, I'm using samba 3.0.2.a
with ldap backend, can anyone help me with this, I know it's been posted
before but I can't find a solution.
thanks
2012 Jun 11
1
[LLVMdev] scoreboard hazard det. and instruction groupings
Hal,
On 6/11/2012 12:48 PM, Andrew Trick wrote:
> Ignoring compile time for a moment, I think an advantage of a DFA is modeling a situation where the hardware can assign resources to best fit the entire group rather then one instruction at a time. For example, if InstA requires either Unit0 or Unit1, and InstB requires Unit0, is {InstA, InstB} a valid group? Depending on your cpu, a DFA could either recognize that it's valid, or give you a chance to reorder the instructions within a group once they've been selected.
>
I would recommend the DFA mechanism as well from what you've...
2012 Jun 11
0
[LLVMdev] scoreboard hazard det. and instruction groupings
...the DFA work either if you feel compelled to do that.
Ignoring compile time for a moment, I think an advantage of a DFA is modeling a situation where the hardware can assign resources to best fit the entire group rather then one instruction at a time. For example, if InstA requires either Unit0 or Unit1, and InstB requires Unit0, is {InstA, InstB} a valid group? Depending on your cpu, a DFA could either recognize that it's valid, or give you a chance to reorder the instructions within a group once they've been selected.
Ideally, you can express your constraints using InstrStage itinerary...
2012 Jun 11
3
[LLVMdev] scoreboard hazard det. and instruction groupings
I'm considering writing more-detailed itineraries for some PowerPC CPUs
that use the 'traditional' instruction grouping scheme. In essence,
this means that multiple instructions will stall in some pipeline stage
until a complete group is formed, then all will continue.
I expect to provide CPU-specific code to help determine when the
currently-waiting instructions would form a group.
2004 Nov 09
2
Segmendation Fault with smbpasswd
...+0x716) [0x81eb561]
#27 /lib/libc.so.6(__libc_start_main+0xce) [0x400d28ae]
#28 /usr/local/sbin/smbd(strcpy+0x35) [0x8076a91]
--
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Daniel Wilson
Systems Administrator
IT & Communications Service
University of Sunderland
Unit1 Technology Park
Chester Road
Sunderland
SR2 7PT
Tel: 0191 515 2695
This e-mail contains information which is confidential and may be privileged and is for the exclusive use of the recipient.
It is the responsibility of the recipient to ensure that this message and its attachments are virus free....
2005 Sep 29
7
ldapsam:trusted = yes kills smbd
...en i run the smbldap_search query i do get a
result!
my nobody user in ldap has a gidNumber of 65533 too!
Help would be appreciated!
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Daniel Wilson
Systems Administrator
IT & Communications Service
University of Sunderland
Unit1 Technology Park
Chester Road
Sunderland
SR2 7PT
Tel: 0191 515 2695
This e-mail contains information which is confidential and may be
privileged and is for the exclusive use of the recipient.
It is the responsibility of the recipient to ensure that this message
and its attachments are virus fre...
2007 Nov 05
2
Problem in mailing list ?!
...ldn't stat remote file: Operation unsupported
Couldn't stat remote file: Operation unsupported
Couldn't stat remote file: Operation unsupported
Couldn't stat remote file: Operation unsupported
Can't ls: "flash:/*" not found
ON switch:
<Quidway>dir
Directory of unit1>flash:/
1 -rw- 2450 Mar 09 2007 18:05:25 vrpcfg.def
2 (*) -rw- 2554 Nov 02 2007 23:11:43 vrpcfg.cfg
3 (b) -rw- 4833881 Feb 12 2007 17:57:46 s5600-vrp310-r1510p06.bin
4 (b) -rw- 801434 Feb 12 2007 18:00:02 hw-http3.1.5-0043.web
5 -rw-...
2004 Nov 10
1
Netscape samba schema needs updating!
...#39;user defined' )
then made sure "...sambaPasswordHistory $...." was in the
sambaSamAccount object class
regards
--
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Daniel Wilson
Systems Administrator
IT & Communications Service
University of Sunderland
Unit1 Technology Park
Chester Road
Sunderland
SR2 7PT
Tel: 0191 515 2695
This e-mail contains information which is confidential and may be privileged and is for the exclusive use of the recipient.
It is the responsibility of the recipient to ensure that this message and its attachments are virus free....
2005 Jan 18
2
IdealX
Have IdealX.org lost their domain? it seems to have been pinched by some
company selling domains.
Site is partially mirrored at Idealx.com but stil links to
idealx.org. Replace idealx.org urls
with idealx.com but the samba downloadable stuff isn't there at the moment.
Duncan
2005 Jan 18
0
trustdoms
...an logon to any domain?
also which domain does the machines need to be added to? also which SID
should my groups use ?
Any help?
--
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Daniel Wilson
Systems Administrator
IT & Communications Service
University of Sunderland
Unit1 Technology Park
Chester Road
Sunderland
SR2 7PT
Tel: 0191 515 2695
This e-mail contains information which is confidential and may be privileged and is for the exclusive use of the recipient.
It is the responsibility of the recipient to ensure that this message and its attachments are virus free....
2005 Jan 19
1
admin privileges on a single domain machine
Hello List!
I have a ldap based samba pdc with a few windows xp prof clients and a few
user accounts.
All the users have Domain User permissions.
Is it possible to give a Domain User admin privileges on a single box?
Lets say i have Machine A, B, C and D. Then user Foo should have normal
Domain User Priviles when he logs into A, B and C. BUT when he logs into
Machine D, he should have admin
2005 Jan 26
1
Does BDC also need trustdom ?
...on my PDC's, do i also need to setup up the
trusts on the BDC's encase of a PDC failure? If so how do i do this?
regards
--
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Daniel Wilson
Systems Administrator
IT & Communications Service
University of Sunderland
Unit1 Technology Park
Chester Road
Sunderland
SR2 7PT
Tel: 0191 515 2695
This e-mail contains information which is confidential and may be privileged and is for the exclusive use of the recipient.
It is the responsibility of the recipient to ensure that this message and its attachments are virus free....
2005 Feb 07
1
3.0.11 Ignoring unknown parameter "privileges"
...gnoring unknown parameter
"privileges"" which will mean i cant use "net rpc rights" commands!
Any ideas
--
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Daniel Wilson
Systems Administrator
IT & Communications Service
University of Sunderland
Unit1 Technology Park
Chester Road
Sunderland
SR2 7PT
Tel: 0191 515 2695
This e-mail contains information which is confidential and may be privileged and is for the exclusive use of the recipient.
It is the responsibility of the recipient to ensure that this message and its attachments are virus free....