Displaying 20 results from an estimated 3000 matches similar to: "One more empty page printig via samba."
1999 Apr 16
1
Unusuall printig problem
Hello,
As anybody ever experienced the following problem:
When we try to print a page, we get the following error:
Unable to start print job due to insufficient memory or invalid printer
specification
The strange thing is that it was working fine before, we tried to add an
additional printer
and after that nothing was working. If we remove the printers and
recreate just this one
we get the
2006 Jan 05
1
samba 3.0.21a without printig
hi,
we try to configure samba 3.0.21a _without_ printing service, but it
seems samba still try to connect to the print server.
load printers = No
disable spoolss = Yes
show add printer wizard = No
from the logs:
---------------------------------
[2006/01/05 16:54:01, 0] printing/print_cups.c:cups_cache_reload(85)
Unable to connect to CUPS server localhost - Connection refused
2004 Aug 06
2
problem with oddsock yp server
Hello,
I'm running Icecast2 server (cvs-2003-03-19) with program of Czech
public radio stations "Czech Radio".
I'm affraid I found something wrong in the yp-directory subsytem of the
Icecast2.
I'm using this access to directory server:
<directory>
<yp-url><a
2011 Dec 17
2
help me....
Life times of one brand of light bulb were observed. Life hours of nine light
bulbs were 898, 720, 354, 405, 620, 54, 229, 306, 890. There were three more
light bulbs that were still burning after 1000 hours. It is common to assume
the life time of a light bulb follows an exponential distribution. With the
observed data find the MLE of the parameter of the exponential distribution
with EM
2011 Oct 31
3
[LLVMdev] [LLVM, llvm-diff] Question about FunctionDifferenceEngine and DiffConsumer::printValue
Hi,
Please find the attached patch for review.
-Stepan.
John McCall wrote:
> On Oct 28, 2011, at 2:00 AM, Stepan Dyatkovskiy wrote:
>> I found next code when switch instruction differs:
>>
>> Engine.logf("right switch has extra case %r")<< CaseValue;
>>
>> Where CaseValue is a ConstantInt object. Looking how logf works I found
>> that it
2011 Dec 12
3
[LLVMdev] [LLVM, llc] TypeLegalization, DAGCombining, vectors loading
Hi all. The question about 'load' instruction.
When we promote
v2i5 = load <addr> ; <MemoryVT = v2i5>
to
v2i64 = load <addr> ;<MemoryVT = v2i5>
should we insert vector shuffling that moves second v2i5 item to the
second v2i64 item?
Or it is still depends from target?
Thanks.
-Stepan.
2005 Sep 05
4
Dummy variables model
Hi, all!
Anyone know an easy way to specify the following model.
Panel dataset, with stock through time, by firm.
I want to run a model of y on a bunch of explanatory variables, and one
dummy for each firm, which is 1 for observations that come from firm i,
and 0 everywhere else. I have over 200 firms (and a factor variable that
contains a firm identifier).
Any easy way of going about
2012 Jan 11
2
[LLVMdev] Exec time and compile time testing.
Hi all. Is there any way to look how my changes affected on compile and
exec time, except looking at global test-suite compile and exec time? In
another words is there any way to detect regression/improvement for
particular tests?
Thanks!
-Stepan.
2020 Feb 25
3
RIOT 2020
I hope you don?t mind us using this mailing list for a small
advertisement, but we think it is most relevant for this group:
We'd like to invite you to RIOT 2020 - the 5rd workshop on R
Implementation, Optimization and Tooling [1]. It will take place
co-located with, and during, useR! 2020 in St. Louis on July 8th. RIOT
is an excellent venue for deep technical discussions about R
2012 May 24
3
[LLVMdev] make check-lit + grep escape characters
I just want to update test/Transforms/LowerSwitch/feature.ll that
already uses grep.
It uses grep + count, probably due to shorter construction.
-Stepan.
Eric Christopher wrote:
>
> On May 24, 2012, at 12:12 AM, Stepan Dyatkovskiy wrote:
>
>> Hi all. I found that if you want to use grep with escape characters in
>> lit, you should pass it within the double slash (\\). Since
2011 Nov 03
0
[LLVMdev] [LLVM, llvm-diff] Question about FunctionDifferenceEngine and DiffConsumer::printValue
ping.
-Stepan.
Stepan Dyatkovskiy wrote:
> Hi,
>
> Please find the attached patch for review.
>
> -Stepan.
>
> John McCall wrote:
>> On Oct 28, 2011, at 2:00 AM, Stepan Dyatkovskiy wrote:
>>> I found next code when switch instruction differs:
>>>
>>> Engine.logf("right switch has extra case %r")<< CaseValue;
>>>
2014 Jan 17
6
[LLVMdev] MergeFunctions: reduce complexity to O(log(N))
Hi all,
I propose simple improvement for MergeFunctions pass, that reduced its
complexity from O(N^2) to O(log(N)), where N is number of functions in
module.
The idea, is to replace the result of comparison from "bool" to
"-1,0,1". In another words: define order relation on functions set.
To be sure, that functions could be comparable that way, we have to
prove that order
2011 Sep 08
2
[LLVMdev] [LLVM, llvm-mc, AsmParser] Symbol locations.
Hi everybody. I found that there are some problems with symbol location in AsmParser.
1. We need to know where symbol was declared.
2. We need to know where symbol was defined first time.
There are two ways:
1. Add helper table to the parser with additional symbol info. But it takes additional memory consumption.
2. Add user tag (void*) for MCSymbol object. As I understood MCSymbol can live
2011 Dec 13
3
[LLVMdev] [LLVM, llc] TypeLegalization, DAGCombining, vectors loading
Yes. It doesn't works properly. I also read the your discussion in bug
1784: http://llvm.org/bugs/show_bug.cgi?id=1784
I found that know Type and Vector Lagalization and in DAGCombining
implicitly assumed that element size of MemoryVT is multiply of 8 bits.
Thats the main reason why v2i5 works improperly with load/store. But I
can't determine exactly what MemoryVT means...
-Stepan.
2012 Apr 26
3
[LLVMdev] ConstantRange in PR1255
Well... each case is represented as pair<BB, vector<Range> >. Right?
We need "union" for optimal case building. And we need support "difference" if we decided that some ranges or numbers in case will never used (in some optimization passes it happens sometimes).
-Stepan
26.04.2012, 15:18, "Duncan Sands" <baldrick at free.fr>:
> Hi Stepan,
>
2014 Jan 22
2
[LLVMdev] MergeFunctions: reduce complexity to O(log(N))
Hi Tobias,
> I can't really see a way to combine our approach with your patch. What
> are your thoughts?
I think it is possible. Even more - we need to combine our efforts, in order to bring this pass into real live.
I'have read your presentation file, and unfortunately read your patch only a little.
How exactly you scan functions on 2nd stage? Could you explain the algorithm in
2011 Sep 16
3
[LLVMdev] [LLVM] make check-lit never finished...
Hi. I just want to know does anyone has the same problem or not.
After running "make check-lit" tests are stopped at 61th percent (Linker tests). Each time it stops on different tests.
Thanks.
--
Regards,
Stepan
2012 Jan 12
1
[LLVMdev] Exec time and compile time testing.
Stepan,
If you interested in only running a subset of the suite, then you can just cd to the associated subdirectory and execute the make command there. Due to the structuring of the makefile it's rather difficult to run an individual test. If you want to setup the structure of the test-suite (say after a fresh checkout/build) I've found that 'make -n' is helpful. It will allow
2006 May 23
1
Nut issue or MGE issue?
Hi,
I took the advice of Daniel O'Connor, found out what variables I
had available to me, and put them in the conf. So now it looks like :
[ellipse]
driver = mge-shut
port = /dev/cuaa0
desc = "UPS"
lowbatt = 5
offdelay = 120
let the UPS charge up fully, 24 hours.
I plugged a single lamp into it, with a 60W bulb.
At 3:40p
2002 Feb 05
1
memory leak?
Hi list,
I'm configuring microsoft doc|ppt|xls viewers to run under KDE. After a
bit of hassle even printig works ok :) Great work, guys.
I noticed while running xlview.exe that wine proccess grows about 3mb in
size each 5 seconds. Running with --debugmsg warn+all shows lots of
'warn:heap:HEAP_Is_Real_Arena Heap 0x40ef0000: block 0x300476d2 is not
inside heap' messages. With