Displaying 20 results from an estimated 1033 matches for "unnammed".
Did you mean:
unnamed
2010 May 12
0
tdb(unnamed): tdb_open_ex: /var/run/samba/unexpected.tdb is already open in this process
Why this log?
Debian Lenny 5.0.4
Samba with PDC
tailf -f /var/log/samna/log.nmbd
tdb(unnamed): tdb_open_ex: /var/run/samba/unexpected.tdb (65025,49187)
is already open in this process
[2010/05/12 09:57:36, 1] lib/util_tdb.c:tdb_log(682)
tdb(unnamed): tdb_open_ex: /var/run/samba/unexpected.tdb
(65025,49187) is already open in this process
[2010/05/12 09:57:36, 1] lib/util_tdb.c:tdb_log(682)
2009 Jun 11
2
Tables without names
A table without names displays like a vector:
> unname(table(2:3))
[1] 1 1 1
and preserves the table class (as with unname in general):
> dput(unname(table(2:3)))
structure(c(1L, 1L), .Dim = 2L, class = "table")
Does that make sense? R is not consistent in its treatment of such unname'd
tables:
In plot, they are considered erroneous input:
>
2014 Aug 13
2
[LLVMdev] Functions with unnamed parameters in LLVM IR
Hi,
Recently I came across some IR produced by a frontend that had unnamed
function arguments. For example something like this.
```
define i32 @foo(i32, i32, i32) #0 {
%x = add i32 %1, %2
ret i32 %x
}
```
I had never seen this before, so I took a look at the LLVM language
reference manual and the section on functions [1] doesn't say anything
about what "argument list" can be
2005 Aug 04
1
SAMBA LOG: tdb/tdbutil.c:tdb_log(725) tdb(unnamed): tdb_open_ex: /var/cache/samba/unexpected.tdb (835, 457947) is already open in this process
Please, What's this?
Please, please, how to resolve ?
[root@neosaldina-lj003 samba]# more nmbd.log
tdb(unnamed): tdb_open_ex: /var/cache/samba/unexpected.tdb (835,457947) is
alr
eady open in this process
[2005/08/04 00:12:51, 2] tdb/tdbutil.c:tdb_log(725)
tdb(unnamed): tdb_open_ex: /var/cache/samba/unexpected.tdb (835,457947) is
alr
eady open in this process
[2005/08/04
2013 Apr 09
2
[LLVMdev] get the identifies of the unnamed temporaries from the instruction of LLVM IR
hello guys:
I am in trouble with get the identifies of the unnamed temporaries from the
instruction of LLVM IR.
for example:
instruction: %4 = mul nsw i32 %1, %width
unnamed temporaries: %4, %1
how to get them?
I have tried several iterators(op_iterator,value_op_iterator) and
getOperand(int) function,but none of them works.
does anyone know how to get it? thanks very much
--
View this message
2020 Jul 22
3
Invisible names problem
I ran into strange behavior when removing names.
Two ways of removing names:
i <- rep(1:4, length.out=20000)
k <- c(a=1, b=2, c=3, d=4)
x1 <- unname(k[i])
x2 <- k[i]
x2 <- unname(x2)
Are they identical?
identical(x1,x2) # TRUE
but no
identical(serialize(x1,NULL),serialize(x2,NULL)) # FALSE
But problem is with serialization type 3, cause:
2019 Mar 05
3
Development version of R fails tests and is not installed
G'day all,
I have daily scripts running to install the patched version of the
current R version and the development version of R on my linux box
(Ubuntu 18.04.2 LTS).
The last development version that was successfully compiled and
installed was "R Under development (unstable) (2019-02-25 r76159)" on
26 February. Since then the script always fails as a regression test
seems to
2014 Aug 14
2
[LLVMdev] Functions with unnamed parameters in LLVM IR
On 13 August 2014 15:48, Tim Northover <t.p.northover at gmail.com> wrote:
>> The above LLVM IR was confusing to me because I usually see that
>> unnamed registers start counting from 1 (i.e. %1 = add ...).
>
> There's a (usually hidden) %0 representing the entry basic block
> there. The general rule is "start from 0 and keep counting; skip named
>
2005 Oct 27
9
Overloaded samba server. Is it a bug?
Experts,
We've just migrated from samba 2.2.8a to samba 3.0.20b in a very large
corporate environment. Everything was really fine in our lab, but we
began
experiment serious load problems on the productive servers the morning
after
the procedure took place. I'll try (briefly) to describe the
characteristics
of the scenario:
Resources:
Old Environment:
Hardware:
2013 Apr 09
0
[LLVMdev] get the identifies of the unnamed temporaries from the instruction of LLVM IR
Hi,
On 09/04/13 10:16, Dong Chen wrote:
> hello guys:
> I am in trouble with get the identifies of the unnamed temporaries from the
> instruction of LLVM IR.
this is a FAQ. Most names in the IR are just there to make it easier to read
and can safely be removed. You can't rely on instructions having names, and as
you saw often they do not have a name. Even if they start off with a
2013 Apr 09
2
[LLVMdev] get the identifies of the unnamed temporaries from the instruction of LLVM IR
hi, Duncan Sands:
thanks for your reply old friend.
the reason why I want to get the unnamed value is that I am doing some
analysis based on the IR code. And IR is in the form of SSA(static single
assignment). so i need to get the operands of each instructions including a
lot of instructions like this (%4 = mul nsw i32 %1, %width).
the unnamed values are the connection of instructions, if i
2004 Feb 04
1
tdb(unnamed): tdb_brlock failed (fd=12) at offset 4 rw_type=1 lck_type=13
Some times I have in log :
[2004/02/04 12:00:06, 5] lib/gencache.c:gencache_init(59)
Opening cache file at /var/lock/samba/gencache.tdb
[2004/02/04 12:00:06, 5] tdb/tdbutil.c:tdb_log(724)
tdb(unnamed): tdb_brlock failed (fd=12) at offset 4 rw_type=1
lck_type=13: Ressource temporairement non disponible
[2004/02/04 12:00:06, 5] libsmb/namecache.c:namecache_enable(58)
namecache_enable:
2018 Apr 27
5
predict.glm returns different results for the same model
Hi all,
Very surprising (to me!) and mystifying result from predict.glm(): the
predictions vary depending on whether or not I use ns() or
splines::ns(). Reprex follows:
library(splines)
set.seed(12345)
dat <- data.frame(claim = rbinom(1000, 1, 0.5))
mns <- c(3.4, 3.6)
sds <- c(0.24, 0.35)
dat$wind <- exp(rnorm(nrow(dat), mean = mns[dat$claim + 1], sd =
sds[dat$claim + 1]))
dat <-
2014 Nov 16
2
Problem with Xen4CentOS
Hi folks,
we (the company i am working for) are running several dozens of
virtualisation servers using CentOS 6 + Xen4CentOS as the virtualisation
infrastructure.
With the latest versions of all packages installed [1], we see failures
in live-migration of stock-CentOS6 HVM guests, leaving a
"Domain-unnamed" on the source host, while the migrated guest runs fine
on the target host.
2009 Sep 03
2
clearNames and unname
Just noticed these two functions (clearNames is stats and unname in
base) that do the same thing.
Hadley
--
http://had.co.nz/
2009 Jul 09
2
[LLVMdev] Unnamed pass in on the fly pass manager
I have written a module pass. When I use the debug pass structure
option, the name of my module pass is printed but then I get "Unnamed
pass" when the FunctionPassManagerImpl *FPP calls dumpPassStructure
(in PassManager.cpp). Is this the expected behavior, or should I be
concerned that there is an error in my approach?
Thanks,
Scott
2014 Jan 14
2
[LLVMdev] Question About the LLVM IR unnamed values!
Hi.
I found that, in all the LLVM IR I get from the source C file. the unnamed
values all created by the "load" instruction. eg:
; Function Attrs: nounwind uwtable
define i32 @add(i32 %x, i32 %y) #0 {
entry:
%x.addr = alloca i32, align 4
%y.addr = alloca i32, align 4
%c = alloca i32, align 4
store i32 %x, i32* %x.addr, align 4
store i32 %y, i32* %y.addr, align 4
* %0 =
2009 Jul 10
0
[LLVMdev] Unnamed pass in on the fly pass manager
Update: the "unnamed pass" is PostDominatorTree. My module pass
requires PDT (specified in its getAnalysisUsage). When it visits a
function, it calls getAnalysis<PostDominatorTree>(), which triggers
the failed assertion "getAnalysis*() called on an analysis that was
not 'required' by pass!"
This issue has been addressed on this mailing list, but it seems the
2013 Jun 04
1
[LLVMdev] Accessing slot numbers of unnamed instructions (SlotTracker)
Hey everyone,
I'm currently trying to figure out a method for providing a unique
identification of an llvm::Instruction that is consistent with the output of an
AssemblyWriter. Obviously this is easy for named instructions: In this case
the identification is the name itself, but I'd like to have the same thing for
unnamed instructions.
If I understand the code in AssemblyWriter.cpp
2013 Apr 09
2
[LLVMdev] get the identifies of the unnamed temporaries from the instruction of LLVM IR
hi Sean Silva:
i really appriciate for your reply.
but you konw that "dump()" instruction can print "%4" in the screen and each
time print the same name "%4" not "%5" or "%6" for the same unnamed value.
so there must be a way to determinate it. if "dump()" instruction can print
it on the screen, can i find some way to store it in a char *