search for: itest

Displaying 16 results from an estimated 16 matches for "itest".

Did you mean: test
2012 Oct 11
4
samba4 - setting acl rwx but getting r-x
Hello, I am having problem setting permission on shared folder: the folder is?datasamba/common and after I set full permission for a user itester (3000017) and also?tester (3000018), I could see that it is only granting r-x to those users. but I could see from the default permissions that they have rwx. getfacl /datasamba/common # file: datasamba/common # owner: root # group: users # flags: sst user::rwx user:root:rwx group::--- group:w...
2016 Jun 14
2
Double variable expansion / multiple password mechanisms
...ple userPassword attributes to your directory: > > userPassword: {CRAM-MD5}xxx > userPassword: {DIGEST-MD5}xxxx > userPassword: {SCRAM-SHA-1}xxxx > userPassword: {NTLM}xxxx > > > Karsten Did try this, didn't end end well. Jun 14 12:59:43 auth: Error: ldap(leonkyneur at itest.com,192.168.99.3,<SQn6QD41TpvLhgGR>): Multiple password values not supported Jun 14 12:59:43 auth: Panic: file passdb-ldap.c: line 99 (ldap_lookup_finish): assertion failed: (password == NULL || scheme != NULL) Jun 14 12:59:43 auth: Error: Raw backtrace: /usr/lib64/dovecot/libdovecot.so.0(...
2004 Aug 21
0
Microsoft Windows Network: The local device name is already in use.
...ax log size = 500 Deadtime = 15 Local master = no Guest account = gues Writeable = yes Create mask = Short perserve case = no Dos filetime resolution = yes Socket options = TCP_NODELAY IPTOS_LOWDELAY Read raw = yes Write raw = yes Oplocks = yes Max xmit = 65535 Wins server = ADC1 ADC2 {itest} Path = /itest Strict sync = yes Case sensitive = yes Hide dot files = no Oplocks = no
2013 Mar 30
0
Scoping issue with irf() from {vars}
...: ----------------------- testfun <- function(lags){ data(Canada) var.2c <- VAR(Canada, p = lags, type = "const") print(var.2c) } testfun(lags=3) ## Everything OK. Now this: testfun2 <- function(lags){ data(Canada) var.2c <- VAR(Canada, p = lags, type = "const") itest <- irf(var.2c) plot(itest) } testfun2(lags=3) ## I get an error message: Error in VAR(y = ysampled, p = lags, type = "const") (from #5) : ## object 'lags' not found. ------------------------- If you first assign lags and then define testfun2, it works. Seems to me like a s...
2011 Mar 30
3
Test errors in fuctional test after adding before_filter :login_required to controller
...equire a login of the user. Here''s an example of my Unit Controller with the added before_filter: IN THE ATTACHED FILE When executing the tests with rake test, I get different error messages. To show you my errors, I only executed the unit controller test with the following line: ruby -Itest test/functional/units_controller_test.rb I get the folowing errors: IN THE ATTACHED FILE If I delete the "before_filter :login_required" line from the unit controller, the test will be executed without any errors. I have a controller_authentication.rb file within my /lib directory. Th...
2008 Apr 13
2
Arrays and functions
Hi, I' am doing a stats project using R to work out the size of a t-test and wilcoxon test depending on the distribution and sample size. I just can't get it to work - I want to put my results from the function size() into an array.At the moment I keep getting the error message:Error in res[distribution, test, samplesize] <- results : subscript out of boundsCan anyone tell me where
2006 Feb 11
0
Dovecot pop3s problem : can't see email
...default): master in: REQUEST^I1^I14586^I1 Feb 11 13:54:55 tst dovecot: auth(default): sql(test,83.146.33.145): SELECT '/home/tst/Mail/' || home AS home, uid, gid FROM users WHERE userid = 'test' AND active = 'Y' Feb 11 13:54:55 tst dovecot: auth(default): master out: USER^I1^Itest^Ihome=/home/tst/Mail/test^Iuid=1001^Igid=1001 Feb 11 13:54:55 tst dovecot: pop3-login: Login: user=<test>, method=PLAIN, rip=83.146.33.145, lip=217.147.82.200, TLS Feb 11 13:54:58 tst dovecot: pop3(test): Logout. top=0/0, retr=0/ del=0/0, size=0 tst:/home/tst/Mail# ls -lt | grep test -rw----...
2010 Nov 08
0
Rails3: "rake test" task does not run tests.
Hello all, I have a spiffy new rails3 app for which I can run tests individually, but not via rake. Behold! > $ ruby -Itest test/unit/test_user.rb > Loaded suite test/unit/test_user > Started > . > Finished in 0.466033 seconds. > > 1 tests, 1 assertions, 0 failures, 0 errors, 0 skips > > Test run options: --seed 21789 and > $ rake test:units --trace > (in /home/blt/Documents/projects/rail...
2011 Oct 15
0
shoulda installation troubles
...mfile, and then run bundle install, thus the gem is installed, and it is featured in the list running gem list --local. but whenever I add something like class ModelTest < Test::Unit::TestCase should_not allow_value("blah").for(:email) end in a testfile, running that test with ruby -Itest test/unit/model_test.rb I get an error undefined method `allow_value'' for ModelTest:Class Am I missing something? should I manually require shoulda? where and how? thanks -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Gro...
2012 Mar 14
0
How do I create a new object in testing to test a controller?
....persisted? # make sure it''s persisted post :create, post: { email: "user-hcDgGtZH8xNBDgjK7y7TUQ@public.gmane.org" } assert_equal "ok, it exists", flash.now[:notice] end end And this is the execution flow: > $ bundle exec rake db:test:prepare $ ruby -Itest test/functional/sessions_controller_test.rb -n test_object_creation Run options: -n test_object_creation # Running tests: F Finished tests in 0.235903s, 4.2390 tests/s, 12.7171 assertions/s. 1) Failure: test_object_creation(SessionsControllerTest) [test/functional/sessions_controller_test.r...
2012 Nov 17
0
How to get more debug information in test log ?
...formation are logged ... Using the test console , there is no error at all : > rails console test >> Loading test environment (Rails 3.2.9.rc3) > site1 = FactoryGirl.create(:cms_site, label: "booboo") >> BEGIN .. .. >> but running my tests > unit > ruby -Itest test/unit/user_test.rb -n "/should_save_user_with_required_fields/" >> STARTED >> Error: test_should_save_user_with_required_fields(UserTest) NoMethodError: undefined method `respond_to?='' for #<Cms::Page:0x007fa0435bba68> test/factories/cms_layout.rb:14:...
2016 Jun 14
3
Double variable expansion / multiple password mechanisms
Hi, Trying to solve the problem of supporting multiple auth mechanisms + proxy and really don't want to store user passwords in plain test and fine to do master user to backend. I had the crazy thought I could do something like the following: For each user Store supported password schemes as LDAP attributes: userPasswordCRAM-MD5: {CRAM-MD5}xxx userPasswordDIGEST-MD5: {DIGEST-MD5}xxxx
2002 Aug 23
2
R 1.5.1 not working with Windows NT on Virtual PC 4 (PR#1932)
Full_Name: Alexandre Da Costa Version: 1.5.1 OS: Windows NT 4 on Virtual PC 4 Submission from: (NULL) (193.253.191.74) I am using Virtual PC 4.0.2 for every day work. I wanted to try connections of R 1.5.1 to Oracle DataBases. But R is running but is not working at all ! The simple commands end with "no finite arguments" error. See following session:
2011 Jul 25
4
Rails 3 test database issues
I am having a problem using the test database in Rails 3. It apparently has kept track of aspects of the database that I deleted completely from my migrations at some point. I don''t always use the ''down'' part of a migration and sometimes just recreate the whole database. I did rake db:migrate:reset and rake db:test:prepare, but when I run my test it is trying to access
2018 Jan 17
12
[6.0.0 Release] Release Candidate 1 tagged
Dear testers, Start your engines; 6.0.0-rc1 was just tagged. I know there are still open blockers and it's early in the process in a way, but I'd like to find out where we are. Please run the test script, let me know the results, and upload binaries. Thanks, Hans
2013 Sep 17
33
[Bug 69488] New: GF108 (NVC1) GPU lockup
https://bugs.freedesktop.org/show_bug.cgi?id=69488 Priority: medium Bug ID: 69488 Assignee: nouveau at lists.freedesktop.org Summary: GF108 (NVC1) GPU lockup QA Contact: xorg-team at lists.x.org Severity: normal Classification: Unclassified OS: All Reporter: vekinn at gmail.com Hardware: Other