Displaying 20 results from an estimated 1033 matches for "unname".
Did you mean:
uname
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...
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 consid...
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 "ar...
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 00:12:51, 2] tdb/tdbutil.c:td...
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...
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:
identical(serialize(x1,NULL,version = 2),serialize(x2,NULL,version =
2)) # T...
2019 Mar 05
3
Development version of R fails tests and is not installed
...(est$ar[1,,], diag(0.8, 2), tol = 0.08)# seen 0.0038
+ all.equal(est[1:6], es.[1:6], tol = 5e-3)
+ all.equal(estd$x.mean, es.d$x.mean, tol = 0.01) # seen 0.0023
+ all.equal(estd[c(1:3,5:6)],
+ es.d[c(1:3,5:6)], tol = 1e-3)## seen {1,3,8}e-4
+ all.equal(lapply(estd[1:6],unname),
+ lapply(est [1:6],unname), tol = 2e-12)# almost identical
+ all.equal(lapply(es.d[1:6],unname),
+ lapply(es. [1:6],unname), tol = 2e-12)
+ })
Error: lapply(es.d[1:6], unname) and lapply(es.[1:6], unname) are not equal:
Component "aic": Mean relative di...
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
> values".
Okay that's good to know. So unnamed arguments get assigned t...
2005 Oct 27
9
Overloaded samba server. Is it a bug?
...:36 srvsmb01 smbd[2983]: [2005/10/25 04:40:36, 0]
lib/util_sock.c:write_data(554)
Oct 25 04:40:36 srvsmb01 smbd[2983]: write_data: write failure in
writing to client 167.252.104.98. Error Connection reset
by peer
(this happens very often)
From /var/log/samba/log.nmbd
tdb(unnamed): tdb_open_ex: /var/lib/samba/unexpected.tdb (2059,2959)
is already open in this process
[2005/10/26 04:17:01, 2] tdb/tdbutil.c:tdb_log(767)
tdb(unnamed): tdb_open_ex: /var/lib/samba/unexpected.tdb (2059,2959)
is already open in this process
[2005/10/26 04:17:01, 2] tdb/tdbutil.c:t...
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 name, the
optim...
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, 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: enabling netbios namecache, timeout 660 seconds
[2004/02/04 12:00:06, 5] tdb/tdbutil.c:tdb_log(724)
tdb(unna...
2018 Apr 27
5
predict.glm returns different results for the same model
...t;- exp(rnorm(nrow(dat), mean = mns[dat$claim + 1], sd =
sds[dat$claim + 1]))
dat <- dat[order(dat$wind), ]
m1 <- glm(claim ~ ns(wind, df = 5), data = dat, family = binomial)
m2 <- glm(claim ~ splines::ns(wind, df = 5), data = dat, family = binomial)
# The model coefficients are the same
unname(coef(m1))
#> [1] 0.5194712 -0.8687737 -0.6803954 4.0838947 2.3908674 4.1564128
unname(coef(m2))
#> [1] 0.5194712 -0.8687737 -0.6803954 4.0838947 2.3908674 4.1564128
# But the predictions are not!
newdf <- data.frame(wind = seq(min(dat$wind), max(dat$wind), length = 5))
unname(pred...
2014 Nov 16
2
Problem with Xen4CentOS
...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.
Domain-0 0 2048 64 r----- 6791.5
Domain-Unnamed 1 4099 4 --ps-- 94.8
The failure is not consistently reproducable, some guests (of the...
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.add...
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!"...
2013 Jun 04
1
[LLVMdev] Accessing slot numbers of unnamed instructions (SlotTracker)
...tly 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 correctly, AssemblyWriter uses
SlotTracker to keep track of the numbers used for unnamed instructions.
Unfortunately for me SlotTracker is missing from LLVM's public header files. Is
there any other way to retrieve a slot number...
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 * variable?
--
View this message in context: http://llvm.1065342.n5.nabble.com/get-the-identifies-of-the-unnamed-temporaries-from-the-instruc...