Displaying 20 results from an estimated 70 matches for "exect".
Did you mean:
expect
2020 Jul 25
0
[klibc:master] Kbuild: Add a per-architecture option to disable exectable stacks
...562319cdba0102c3a8a8298ba94e645418193d5
Author: Ben Hutchings <ben at decadent.org.uk>
AuthorDate: Wed, 29 Apr 2020 22:28:10 +0100
Committer: Ben Hutchings <ben at decadent.org.uk>
CommitDate: Sat, 25 Jul 2020 17:33:29 +0100
[klibc] Kbuild: Add a per-architecture option to disable exectable stacks
We still want to avoid executable stacks, but now we will only do so
for architectures where we know we can avoid stack trampolines for
signal return.
Disable executable stacks only if KLIBCEXECSTACK is set to 'n' by the
architecture's MCONFIG.
Signed-off-by: Ben Hutchings...
2009 Jul 25
3
[LLVMdev] Bug in ExecutionEngine::getConstantValue() -- Instruction::PtrToInt
I think I might have found a bug in the exection engine's 'constants
folding'.
Basically APInt's parameters are the wrong way round.
Line 577 for lib/ExecutionEngine/ExecutionEngine.cpp :-
case Instruction::PtrToInt: {
GenericValue GV = getConstantValue(Op0);
uint32_t PtrWidth = TD->getPointerSizeInBits();...
2005 May 06
3
Broken filters?
Hi!
By iptables I set marking (-j MARK) just before -j IMQ.
There are only three marks. Exectly all of them are ditected to 1:20
Why I see 3 pkts in default 1:30?
How explain it?
### imq0: queueing disciplines
qdisc htb 1: r2q 10 default 30 direct_packets_stat 0
Sent 631429 bytes 1812 pkts (dropped 0, overlimits 20)
### imq0: traffic classes
class htb 1:20 root prio 0 rate 100Kbit c...
2006 Feb 10
3
[Req] polymorphic associations howto
Hi people,
I''m looking into polymorphic associations as a way to cleanup some
messy parts of my code. I think they will allow me to do exectly what
I need, but since there''s little to none written on this subject, I''d be
delighted if someone could shed some light on this. Especially what
the different options and needed table structures need to be.
Thanks,
- Fabien
2012 Jul 09
3
puppetdb = rise in exection expired notices?
I''m getting more and more "execution expired" as systems checking and
hit puppetdb for the first time (switching from a mysql instance). The
command queue isn''t long (1-5, if anything, all the time), and ym
master itself seems to be dealing well enough. I have seen the
collection time growing higher and higher though. This is a ~2K node
deployment, and one of the few
2018 Jan 16
2
SSH with User in Member Domain
Yes and the permissions are ok too.
getent passwd XXXX
XXXX:*:11109:10513::/home/<DOMAIN>/XXXXX:/bin/bash
I exected comand(simulated ssh):
login XXXX
journalctl |grep login
-------------------
Jan 16 17:33:05 <HOSTNAME> login[2150]: pam_unix(login:auth):
authentication failure; logname=USER-SUDO uid=0 euid=0 tty=/dev/pts/0
ruser= rhost= user=XXXXXXX
Jan 16 17:33:07 <HOSTNAME> login[2150]: FAI...
2009 Jul 25
0
[LLVMdev] Bug in ExecutionEngine::getConstantValue() -- Instruction::PtrToInt
Aaron Gray wrote:
> I think I might have found a bug in the exection engine's 'constants
> folding'.
>
> Basically APInt's parameters are the wrong way round.
>
> Line 577 for lib/ExecutionEngine/ExecutionEngine.cpp :-
>
> case Instruction::PtrToInt: {
> GenericValue GV = getConstantValue(Op0);
> u...
2004 Jun 24
1
samba and photoshop
...My hunch is that there is something photoshop is doing as it saves that
samba doesn't like, maybe tring to save a temp cache file or something.
I have tried the same action ( same file) with a totally different OSX
server ( fresh install, with only afp and samba turned on) and XP box,
with the exect same results. Has anyone ever seen this and maybe know a
work around?
Thanks
Brent
2002 Sep 17
2
looping logins
...ll joined into the PDC domain. Logging on the PDC is
..../%m.log so that I get a log for each PC.
When I look at the cpu usage on the PDC system one process is continuouly using 25%.
If I set debug level 10 there is continuous output to one PC's log file. I am not
good at working out what exectly is happening but it appears that there are repeated
login attempts for one user from that PC (in any event, SAMBA keeps looking up the
user's ldap entry, successfully). I look at the PC and it is sitting on the XP login
window waiting to be given a username and password. If I re-boot the...
2018 Dec 19
1
Little strangeness on dns-* account...
The dns-COMPUTER-NAME "user" contains the dns/SPN so be very carefull here and dont remove this user.
Normaly, you would have exected to have the DNS/spn on the serverObject in the AD.
So imo yes, a small bug, but as Andrew told this is intended.
Adding : isCriticalSystemObject: TRUE
Should not be needed.
What i would do here is, use the description field. ( DNS Service Account for .... )
Filter out all "*Service Acc...
2012 Nov 29
2
[LLVMdev] operator overloading fails while debugging with gdb for i386
...int x;
int y;
public:
A1(int a, int b)
{
x=a;
y=b;
}
A1 operator+(const A1&);
};
A1 A1::operator+(const A1& second)
{
A1 sum(0,0);
sum.x = x + second.x;
sum.y = y + second.y;
return (sum);
}
int main (void)
{
A1 one(2,3);
A1 two(4,5);
return 0;
}
when the exectable of this code is debugged in gdb for i386, we dont get the
expected results.
when we break at return 0; and give the command: print one + two, the result
should be $1 = {x = 6, y = 8}, but the result obtained is $1 = {x = 2, y = 3}.
This is related to debug information generated, as normally t...
2009 May 08
1
anyDuplicated(incomp=NA) fails
...18
[1] 0
> anyDuplicated(c(1,NA,3,NA,3), incomp=3) # expect 4
Warning: stack imbalance in 'anyDuplicated', 20 then 21
Warning: stack imbalance in '.Internal', 19 then 20
Warning: stack imbalance in '{', 17 then 18
[1] 0
> anyDuplicated(c(1,NA,3,NA,3), incomp=c(3,NA)) # exect 0
Warning: stack imbalance in 'anyDuplicated', 20 then 21
Warning: stack imbalance in '.Internal', 19 then 20
Warning: stack imbalance in '{', 17 then 18
[1] 0
> version$svn
[1] "48493"
After applying the attached patch I get
> anyDuplicated(c(1,NA,3,NA,5),...
2018 Jun 14
1
new problem
...OLkeFucyLL0R3jC6ubgB/AzL
> tpNqmoM7ftD0l7oJGM3fofFGaC6DrB2L8kFS2MRx263K291Z1KLFPQ==
> =sNJL
> -----END PGP SIGNATURE-----
In an attempt to find out what the problem is I have now done the
following:
installed dovecot on my laptop
my data is mounted per NFS
started Thunderbird
I get exectly the same messages
I then copied my data onto a local partition of my hard drive laptop
and mount this as my $HOME
The reasoning behind this: eliminte any problems coming from NFS.
Again - the same error messages.
Most worrying is that when I fire up Thunderbird I get:
SERVERBUG internal err...
2005 May 16
2
Winbind problem when exec freeradius
Hil list!
I'm trying to authenticate Active Directory Users via freeradius. I
can do it in a general case (user and domain) without
problem. Now I have to do it restricting the authentication to the
members of a group.
I can exect the script (as is put in radiusd.conf) correct from the
command line:
Deb:~# /usr/bin/ntlm_auth --username=javi2
--require-membership-of='AAMM\MyGroup' --domain=AAMM
password:
NT_STATUS_OK: Success (0x0)
Deb:~# /usr/bin/ntlm_auth --username=javi2
--require-membership-of='AAMM\OtherGro...
2001 Feb 08
2
Installling more than one wine version (fwd)
...le by calling it by its absolute
path name.
It's sort of a moving target you picked on.
Lawson
Oh - did Corel hack the sonames on their version? That would sure stop
it working it you install current dll's and winelib _in place of_ the
original ones.
You can find out by doing ldd on an exectable or library. The sonames
it wants are on the left; the files the dynamic linker thinks will make
it happy are on the right.
Constants aren't, and variables won't.
---cut here
________________________________________________________________
GET INTERNET ACCESS FROM JUNO!
Juno offers...
2002 Mar 21
1
RGui error on Windows 2000
...nstallation not
self registering correctly.
The fix was to copy a new uncorrupted register from the default user. Though
some of my desktop settings were altered, all problems were fixed with no
discernable impact on R or .Rdata files. Interestingly, the problem did not
recur when the offending VB exectable was installed again and both R and the
other program now happily coexist. In short, I don't know what caused the
problem nor what a general solution might be.
***********************************
Simon Gatehouse
CSIRO Exploration and Mining,
Newbigin Close...
2004 Feb 24
1
Problems with changing security setting on shared folders via Win2k
...uot;. Maybe it's not the exact error message because I use
a german Windows 2k.
I tried it as Administrator and as normal Domain User. Creating and
deleting a folder works fine. Another strange thing is that I get no
information about the actual settings. No checkbox (full control, change,
execte and so on) is selected. If someone wants to take a look at it I can
send a screenshot of the settings.
Has anyone a clue for me how to fix this?
---------------------
Some settings of my smb.conf
[global]
workgroup = ZBH
netbios name =VESUVIO
server string = ZBH_Master
map to guest = Bad Us...
2012 Dec 01
0
[LLVMdev] operator overloading fails while debugging with gdb for i386
...};
>
>
> A1 A1::operator+(const A1& second)
> {
> A1 sum(0,0);
> sum.x = x + second.x;
> sum.y = y + second.y;
>
> return (sum);
> }
>
>
> int main (void)
> {
> A1 one(2,3);
> A1 two(4,5);
>
> return 0;
> }
>
>
> when the exectable of this code is debugged in gdb for i386, we dont get the
> expected results.
>
> when we break at return 0; and give the command: print one + two, the result
> should be $1 = {x = 6, y = 8}, but the result obtained is $1 = {x = 2, y = 3}.
>
> This is related to debug informat...
2018 Jul 27
3
SHELL() function Asterisk 13 - can only accept one paramter in string?
...erDi and answered by ${CHANNEL}...)
same=>n,Set(CHANNEL(accountcode)=${curIncAccCode})
same=>n,Set(nothing=${SHELL(/usr/src/verdi/bash/verdiLogIncomingCall.sh NA ${curIncAccCode} ${sourceChannel} IN ${CHANNEL} ${numbersource} ApiLogIncomingCall.java 1)})
same=>n,MacroExit()
giving this on exection:
-- SIP/3002-000070c2 answered SIP/centra-out-000070bf
-- Executing [s at macro-verdianswer:1] NoOp("SIP/3002-000070c2", "Entering Verdi answer macro - picked up by SIP/3002-000070c2") in new stack
-- Executing [s at macro-verdianswer:2] NoOp("SIP/3002-000070c2&...
2020 Feb 04
2
Balloon pressuring page cache
[...]
>>
>> Issue 2: When called via the shrinker, (but also to fix Issue 1), it could be
>> that we do have VIRTIO_BALLOON_F_MUST_TELL_HOST. I assume this means
>> (-ENOCLUE) that we have to wait until the hypervisor notifies us via the STOP? Or
>> for which event do we have to wait? Because there is no way to *tell host* here
>> that we want to reuse a page.