search for: oin

Displaying 20 results from an estimated 23 matches for "oin".

Did you mean: in
2018 Oct 10
0
Microsoft joins OIN - I think Samba is covered !
Hi all, This morning Microsoft announced they are joining the OIN Software Patent pool which protects Linux systems. https://azure.microsoft.com/en-us/blog/microsoft-joins-open-invention-network-to-help-protect-linux-and-open-source/ Looking at the definition of "Linux System" here: https://www.openinventionnetwork.com/joining-oin/linux-sy...
2007 Aug 16
6
several plots on several pages
...graph one produces an error when plotting I(as in the example)? Everything works OK (for the firsat page) when graph one is plotted. I have the feeling, that I am thinking to complicated. Any help welcome, Rainer pdf("test.pdf") try( { ## Set layout to three rows and only oine column par( mfcol=c(3,1), oma=c(0,0,0,0), mar=c(4, 4, 2, 2) ) ## First row par(mfg=c(1,1)) try( plot(runif(ff)) ) ## Second row par(mfg=c(2,1)) try( plot(runif(100)) ) ## Third row par(mfg=c(3,1)) plot(runif(1000)) ## THE NEXT THREE SHOUL...
2012 Apr 09
5
Need to split long lines in mail archives
...and fold but these assume a pipeline from stdout to a fixed filename, which presumably is best done at the time of the original file's creation. I am looking for a way to deal with multiple existing files in a batch fashion so that the reformatted file is written back out to the same file name oin the same location. I cannot seem to hit upon a way to get this to work using find, xargs and fmt (or fold). Nor can I seem to find an example of how this might be done using these utilities. What I would like to discover is the functional equivalent of this: find /path/to/archives/*.html -print...
2016 Feb 11
2
inconsistency in treatment of USE.NAMES argument
...geStr.R:33 /DBI/R/DBDriver.R:205 /Kmisc/R/str_rev.R:37 /Matrix/R/diagMatrix.R:98 /MuMIn/R/utils-models.R:110 /OpenMx/R/MxNamespace.R:702 /OrthoPanels/R/opm.R:167 /XML2R/R/utils.R:16 /assertive.base/tests/testthat/test-utils.R:14 /bigrquery/R/utils.r:13 /bold/R/zzz.R:29 /checkmate/R/checkList.r:56 /coin/R/ExactDistributions.R:80 /coin/R/ExactDistributions.R:97 /coin/R/ExactDistributions.R:234 /coin/R/SymmetryTests.R:217 /copula/R/aux-acopula.R:950 /covr/R/data_frame.R:13 /covr/R/display_name.R:40 /cplm/R/lme4_lmer.R:423 /crunch/R/batches.R:71 /crunch/R/batches.R:102 /crunch/R/categorical-array.R:8...
2003 Dec 26
6
Problems with outgoing calls
Hello: I have found the following problems with outgoing calls with asterisk, compiled with an updated CVS on 22 Oct. 1.- Problem with retries: Whenever I set the MaxRetries parameter, to something greater than 0 in a call-fille, Asterisk ignores the RetryTime parameter and retries every file in the outgoing folder when a new call-file is copied int...
2005 Dec 16
3
Server crashed with Common/ocfsgencreate.c, Common/ocfsgenvote.c
Hi Experts, We have a 4nodes RAC running and recently one is down due to hardware (fibre optics card) failure. Since running on 3-nodes RAC, the surviving server just keep crashing. We cannot figure out why is this happening but checking /var/log/messages we have these error (notice the msg before crashing at 8:32): Dec 12 08:30:45 x335-142 kernel: (2) ERROR: file entry name did not match inode,
2004 Nov 22
3
Mode context extremely poor performance.
...g mode. I can see that the same number of reading block demand (according to the sql log) follow an increasing amount of ocfs_get_block2() call. In consequence the request reponse time is dramaticaly increase. I tried to put more verbose debug trace in ocfs_create_or_open_file() in order to grab to oin.hndl releasing token, but i don't konw enough OCFS desing yet to be performant, so i write to you to have help. First question: Could you help me please ..... ;-). Second: I see in the source you use VFS dentry struture. In the RH 2.4.18 I2 kernel this structure was little modified to be more...
2004 Nov 22
3
Mode context extremely poor performance.
...g mode. I can see that the same number of reading block demand (according to the sql log) follow an increasing amount of ocfs_get_block2() call. In consequence the request reponse time is dramaticaly increase. I tried to put more verbose debug trace in ocfs_create_or_open_file() in order to grab to oin.hndl releasing token, but i don't konw enough OCFS desing yet to be performant, so i write to you to have help. First question: Could you help me please ..... ;-). Second: I see in the source you use VFS dentry struture. In the RH 2.4.18 I2 kernel this structure was little modified to be more...
2017 Mar 11
2
Possible issue with R-tools on Windows
...\R\win-library\3.3" C:\Users\ROBBAE~1\AppData\Local\Temp\RtmpagJM0a/downloaded_packages/GO.db_3.4.0.tar.gz' had status 1 2: In install.packages(update[instlib == l, "Package"], l, repos = repos, : installation of package ?GO.db? had non-zero exit status Is there something going on with my RTools installation I should upgrade? My apologies if this is too off-topic for this list.
2011 Oct 30
2
Problem with directsound / Gothic
I am currently trying to run Gothic 1.08j on a Debian wheezy amd64 based machine using PlayOnLinux or just the plain wine installation. The game runs in generel but only if sound is disabled. To get sound working, AppDB and other tutorials advise to get the native directsound dlls and add overrides to the wine configuration. Whether I download the dlls and add the overrides manually or use
2017 Mar 12
0
Possible issue with R-tools on Windows
Hmmm, you may know winbuilder: It has R not installed oin drive C: and works well. Even with R installed on a network share I can easily install packages. using R-devel binary in, e.g. for 64 bit: in d:/RCompile/recent/R/bin/x64 working directory: d:/library-devel specified library: c:/tmp > install.packages("GO.db", lib="c:/tmp...
2016 Feb 08
2
inconsistency in treatment of USE.NAMES argument
...ment. According to the man page: USE.NAMES: logical; if ?TRUE? and if ?X? is character, use ?X? as ?names? for the result unless it had names already. But if 'X' has names already and 'USE.NAMES' is FALSE, it's not clear what will happen to the names. Are they going to propagate to the result or not? Unfortunately, vapply() and sapply() give a different answer: > vapply(list(A="a", B=1:2), is.integer, logical(1), USE.NAMES=FALSE) [1] FALSE TRUE > sapply(list(A="a", B=1:2), is.integer, USE.NAMES=FALSE) A B FA...
2015 Jul 29
1
Installing/updating packages on a lab network
On 7/28/2015 1:32 PM, Uwe Ligges wrote: > Just add the line > > R_LIBS_SITE=F:/R/library > > to the file R_HOME/etc/x64/Renviron.site Thanks, Uwe I have no way to test this and our IT people who do the installation know nothing of R, so follow-up questions: * There is no R_HOME/etc/x64/Renviron.site file, but there is a R_HOME/etc/Rprofile.site I can modify and ask them to
1999 Jun 22
2
No network neighborhood
Recently, we made a switch from 1.9.18 to 2.0.3. Under 1.9.18, we had local master turned off to prevent a browser election war. However, under some network configurations, (where the system was alone on a Workgroup), the system would, quite appropriately, not appear in the network neighborhood. So for 2.0.3 we changed the config file to allow election participation (local master = yes).
2003 Jul 31
4
'System' application exit with error even if it performs the job as expected
Hi, When I try to run the command wmix to mix two WAV files recorded by the Monitor application I get the following warning in the console and the macro exit at that point. Running the command from a standard system console it works. More, even from this macro it works and produce a valid mixed file, but still get that error and the macro cannot continue. Why? I have tried even with a simple wmix without any parameter and I get the same error. ..... -- Executi...
2009 Oct 10
3
Theora patent question
Does the reason Theora is relatively safe from patent infringement lawsuit have more to do with it actually not being encumbered, or is it because its use is decentralized? For example, FreeType is not patent-free, nor is Linux, yet they succeed because on the one hand, they are open source, and those who maintain them do not guarantee anything regarding patents, it is up to each individual user
2004 Jul 19
1
QoS for Voip.
...20: sfq perturb 10 > > >Brian Carrig wrote: > We run something similar allowing customers to place traffic into gold, silver or > bronze classes. I reserve a fixed amount of bandwidth for each class and allow > > them > to borrow (I hate the idea of bandwidth going to waste). However, excess > > bandwidth > is offered preferrentially to gold, then silver before being offered to bronze. > Because p2p and other bw consuming traffic are unlikely to be in the gold and > > silver > classes (they cost more) there haven'&...
2004 May 19
14
Can anyone fix this?
Hi, I appologise for the bad ettiquite of this, but I have tried looking for some HTB examples that would help me, and am having trouble understanding how the tc filters should work, but I can''t figure out why this isn''t working. I''ve written this script, based upon the ultimate traffic shaper at LARTC, to try and shape for me and my 3 housemates. The idea being to
2011 Jul 09
8
Show your CentOS Support
hi guys, I have about 80 CentOS T-Shirts, ranging from Medium to 3XL in size. These are the grey T-shirts we can see Ralph, Garry and the guys from hostdime modeling for us at: http://www.karan.org/pics/centos/images/002-IMG_2571.JPG If you would like one, please send me an email on kbsingh at the centos.org domain, and let me know your address and what size you would want, I would be happy
2020 Feb 24
5
Pc's not added (shown) to AD after remove and re-add.
Hai, ? After some "strange" pc problems with pc-domain trust i did some digging. Im pretty sure this is a samba bug, if someone can verify this. ? My steps. ? - Setup a win10 pc, static ip. - Join the domain. ? And its shown in AD and DNS. Turn of the pc. ? but, now next, set a new pc, use the same name but a different IP. join the domain. login and turn the pc offf ? Back to pc1. turn it on, your unable to login, the pc compains about its domain trust. Login as admin, remove the pc f...