similar to: Samba 3 and Windows 2003

Displaying 20 results from an estimated 50000 matches similar to: "Samba 3 and Windows 2003"

2017 Jun 11
1
Memory leak in nleqslv()
Hello all, I am relatively new to R, but enjoying it very much. I am hoping that someone on this list can help me with an issue I am having. I am having issues with iterations over nleqslv, in that the solver does not appear to clean up memory used in previous iterations. I believe I've isolated the/my issue in a small sample of code: library(nleqslv) cons_ext_test <- function(x){
2007 Nov 06
1
R 2.6.0 make check fails on SGI origin 350 and
Hello I am trying to install R 2.6.0 on a SGI Origin 350 running IRIX 6.5 6.5.28f R was configured with the following options: > --x-includes=/usr/include/X11 > --x-libraries=/usr/lib/X11 > --includedir=/usr/freeware/include > --includedir=/usr/freeware/lib32 > --includedir=/usr/freeware/lib64 > --with-readline=no > --with-iconv=no > CC=cc gmake complied
2010 Dec 25
0
[LLVMdev] Reviewer for our Path Profiling Implementation
On Fri, Dec 24, 2010 at 5:06 PM, Andrew Trick <atrick at apple.com> wrote: > On Dec 21, 2010, at 7:57 AM, Bob Wilson wrote: > > >> To get some idea about the number of people who could be involved in a > >> project like this, I would like to ask for a quick show of hands: Who > would > >> be interested in contributing code to LLVM-with-profiling? (Either
2010 Nov 09
1
[LLVMdev] How can we recruit a reviewer for our path-profiling implementation?
Summary: We need to find a reviewer for our implementation of Ball-Laurus path profiling. It is well known that path profiling generates more precise information about a program's behaviour than edge profiling. We are conducting a research project with the goal of developing a methodology to make feedback-directed optimization (FDO) more sound. We are developing combined profiles that enable
2002 Mar 14
1
Printer Configurations
We are running multiple SAMBA servers but they all access the same printers, so I would like to copy the config files (as there are about 100 printers) from the main server to the others so that al the attached drivers and comments and such are intact. Any ideas on this one? BTW Our servers are running Solaris8, Linux (red hat 7.2), etc... -- -Broderick Wood- Analyst, Systems Support Group
2006 Mar 26
2
Problem with names() in a plot after ordering a data.frame. Syntax or stupidity?
I am a complete newbie in R . Using R 2.2.0 Windows XP This started as a simple exercise to see if I could produce a simple Cleveland style dotchart with a line from the '2' axis to the dot rather than a continuous line as do "dotchart" and "dotchart2". At least I could not find that option. I got a crude program to work but it includes unnecessary steps.
2005 Jan 27
1
binomia data and mixed model
Hi, I am a first user of R. I was hoping I could get some help on some data I need to analyze. The experimental design is a complete randomized design with 2 factors (Source material and Depth). The experimental design was suppose to consist of 4 treatments replicated 3 time, Source 1 and applied at 10 cm and source 2 applied at 20 cm. During the construction of the treatmetns the depths vary
2010 Oct 24
4
[LLVMdev] Inlining in LLVM
Duncan: I am only superficially familiar with LLVM structure. What I am trying to find out is if functions that have a single invocation are still found in the code during the compilation. In Open64 and other compilers, there is an early inlining pass that inlines all procedures that have a single invocation site. The reasoning is that if there is a single call to a procedure, then there is not
2003 Oct 21
2
R1.8.0 and virtual PC (PR#4708)
Dear Sir/Madam First, I should tell that I'm using virtual PC "w2k" in a mac osx 10.2. The problem: I recently downloaded the windows version 1.8.0. I found the following problem with the instruction plot. E.g., if I type the following instructions, I got the following error message: > x = 1:10 > y = 2*x > plot(x,y) Hit <Return> to see next plot: Error in
2006 Dec 05
0
Wombling
Hello, Does anyone know if there is any package in R to perform wombling (sensu Barbujani et al. 1990) or a related method? RSiteSearch only gives 2 results with "wombling" and I am not aware of any other name for the method. Some weeks ago there was a related question on the list but there was no response... I acknowledge that programming it wouldn't be so difficult (only
2010 Oct 22
1
[LLVMdev] Early inlining in LLVM?
This question is related with an evaluation of a research work that uses LLVM as a platform. Does LLVM implement an early inlining strategy? Does this early inlining strategy inlines all functions that are called only once in the program? Thanks, -- Cheers, Nelson / \ / / Jose Nelson Amaral - amaral at cs.ualberta.ca ) / ( Professor
2010 Apr 04
2
One question about saving graph by using xyplot
Hey, folk. I am trying to get many figures by using the function "xyplot" in the library "lattice". I tried to using the loop to finish it quickly. But I cannot open the saved file after I run the program. But if I use the function "plot" to get other simply figures, it can work. So I want to ask how I can get the saved figures by using "xyplot". The
2012 May 20
1
[LLVMdev] Error While Inserting New Instruction to LLVM IR
Hello; I wanted to insert two new terminator instructions in LLVM IR. I modified the necessary files (as mentioned in the tutorial in LLVM site and some more to meet the new structure of LLVM, (e.g no Lexer.l now, we have LLLexer.cpp. Again in the tutorial, files like LLVMBitCodes.h, include/llvm-c/core.h that need to be modified are not mentioned) But I am getting the error while building
2009 Jul 23
1
ggplot2 : commands on one line vs two lines.
I have just started using ggplot2 and I seem to be doing something stupid in writing ggplot2 commands on more than one line. In the example below the commands on one line are working fine, but as soon as I put them on two lines I get an error. Can any one point out what I am doing wrong? It must be something blindingly simple. Thanks Example
2010 Mar 26
7
seed data
Hi I am using seed_fu to seed initial data to tables (http://github.com/mbleigh/seed-fu) . And in db/fixtures/state.rb I have values like (I am filling only two data for simplicity) State.seed_many(:name, :abbr,:fips,:country_id, [ { :name => "Alberta", :abbr => ''AB'',:fips => ''01'', :country_id => 2 }, { :name =>
2004 Feb 16
1
repeated measures nonlinear regression
Hi, I found this email on the R website. I am trying to figure out how to analyse a data set that I believe will need to be run through a procedure involving repeated measures, regression and mixed models. The data is of insect populations (dependent variable - either 0/1=binomial, or as counts=poisson) in sites with different characteristics (multiple independent variables which are both
2012 May 18
3
[LLVMdev] Adding a New Instruction to LLVM IR
Hello; I was planning to add a new instruction to the LLVM IR (and later to MIPS backend) for TLS(Thread level speculation) support. For this I tried to follow the steps described in http://llvm.org/docs/ExtendingLLVM dot html#instruction. But I could not find any llvm/lib/AsmParser/Lexer.l and llvm/lib/AsmParser/llvmAsmParser.y file in both the svn repository and the source code downloaded
2007 Feb 27
3
looping
Greetings: I am looking for some help (probably really basic) with looping. What I want to do is repeatedly sample observations (about 100 per sample) from a large dataset (100,000 observations). I would like the samples labelled sample.1, sample.2, and so on (or some other suitably simple naming scheme). To do this manually I would >smp.1 <- sample(100000, 100) >sample.1 <-
2012 Mar 29
1
[LLVMdev] Error Linking Math Library
Hello; I was trying to create an executable from the "hmmer" benchmark source code files after applying some optimization. I am running the following script - #!/bin/bash while read line; do clang -S -emit-llvm -DNDEBUG -DSPEC_CPU -o $line'.o' $line'.c' done < files.txt while read line; do opt -block-placement $line'.o' -o $line'.o' done <
2012 Apr 01
0
[LLVMdev] How to Get Path Profile and Print it
Hello; I was trying to use utils/profile.pl script to get path profile and print it from a simple hello world program. First I do the following - Compile the hello.c into LLVM bitcode file using - clang hello.c -S -emit-llvm -o hello.bc But when I try to run the following script - ../llvmclang/llvm-3.0.src/utils/profile.pl -edge hello.bc I get the following error - llvm-prof: hello.bc: