Displaying 18 results from an estimated 18 matches for "removeattributes".
2009 Dec 21
1
[PATCH] snapshot: Explicitly remove unused disk source attribute
This fixes a regression introduced by 9e3d1160. Snapshot was leaving both dev
and file attributes specified. The result was that the v2v would actually
operate on the underlying storage rather than the snapshot.
---
snapshot/v2v-snapshot.pl | 5 +++++
1 files changed, 5 insertions(+), 0 deletions(-)
diff --git a/snapshot/v2v-snapshot.pl b/snapshot/v2v-snapshot.pl
index f089a77..e2cc33c 100755
2013 May 15
2
[LLVMdev] Attributes & CloneFunctionInto
...totally fine with any kind of workaround, e.g. removing all
attributes from the target declaration, then cloning, and then setting
the correct attributes.
However, I can't find a way to modify an existing alignment *in any way*
without hitting an assertion (the other one being line 727 for
removeAttributes). I've also tried using addAttributes() and
setAttributes() to set the alignment to 0, but this seems to be ignored...
Any help on this? :)
Thanks,
Ralf
2013 May 15
1
[LLVMdev] Attributes & CloneFunctionInto
..., e.g. removing all
>> attributes from the target declaration, then cloning, and then setting
>> the correct attributes.
>> However, I can't find a way to modify an existing alignment *in any
>> way* without hitting an assertion (the other one being line 727 for
>> removeAttributes). I've also tried using addAttributes() and
>> setAttributes() to set the alignment to 0, but this seems to be
>> ignored...
>
> SAFECode clones a function to change the alignment of byval arguments.
> You can look at the code at
> http://llvm.org/viewvc/llvm-project/saf...
2013 May 15
0
[LLVMdev] Attributes & CloneFunctionInto
...nd of workaround, e.g. removing all
> attributes from the target declaration, then cloning, and then setting
> the correct attributes.
> However, I can't find a way to modify an existing alignment *in any
> way* without hitting an assertion (the other one being line 727 for
> removeAttributes). I've also tried using addAttributes() and
> setAttributes() to set the alignment to 0, but this seems to be
> ignored...
SAFECode clones a function to change the alignment of byval arguments.
You can look at the code at
http://llvm.org/viewvc/llvm-project/safecode/branches/release...
2013 Apr 08
0
[LLVMdev] Inaccurate comment in LLParser: "align 2" is a synonym for "alignstack 2"?
The following comment:
00881 // As a hack, we allow "align 2" on functions as a synonym
for "alignstack
00882 // 2".
in "lib/AsmParser/LLParser.cpp" appears inaccurate, the "alignment" is
later parsed as the alignment of the function itself, both when
directly placed on the function:
02975 // If the alignment was parsed as an attribute, move
2006 Nov 13
8
Problems with Prototype in script.aculo.us 1.6.5
Hi,
When I''m using the Prototype version attached to script.aculo.us 1.6.5
(Prototype 1.5.0_rc1 revision [5462]) I get some "Object doesn''t
support this property or method" in the Effect.BlindDown method (when
the method tries to get the dimentions). If I''m using the version of
prototype that was attached to 1.6.4 I do not get this error.
Is this a known
2007 Aug 29
0
Element.addMethods vs extending prototype.
Hi.
I''m using prototype.js V1.6.0_rc0.
I''ve successfully used Element.addMethods() to add some additional
functionality to my forms ... Element.addMethods(''FORM'', { ... });
So far so good.
I now want to add a new property to all forms.
Is there an equivalent Element.addProperty(''FORM'', { ... }); technique
I could use?
As readAttribute /
2010 Mar 31
3
[PATCH] Remove v2v-snapshot
We now always copy a guest during conversion, meaning this tool is no longer
required.
---
Build.PL | 2 +-
MANIFEST | 2 -
lib/Sys/VirtV2V.pm | 9 +-
lib/Sys/VirtV2V/Connection.pm | 1 -
po/POTFILES.in | 1 -
snapshot/run-snapshot-locally | 43 --
snapshot/v2v-snapshot.pl | 931
2006 May 19
6
Multiple dynamic Sortables
I''m writing an appliation that contains several dynamically created lists. I
had hoped that the following method for using the Sortable library from
scriptaculous would work:
1) create the list
2) create a Sortable for it
3) create another list
4) create a Sortable for it
and so on. Unfortunately this doesn''t work. I can''t find any info in the
documentation for
2014 Nov 28
0
Wine release 1.7.32
The Wine development release 1.7.32 is now available.
What's new in this release (see below for details):
- New version of the Mono engine.
- A few more functions implemented in MSHTML.
- Improved support for restoring display mode.
- Font metrics improvements in DirectWrite.
- Various bug fixes.
The source is available from the following locations:
2012 Apr 27
0
Wine release 1.5.3
The Wine development release 1.5.3 is now available.
What's new in this release (see below for details):
- Support for graphics bounds tracking.
- A number of fixes to the builtin Internet Explorer.
- Support for displaying ARM code in the Wine debugger.
- Various DirectMusic improvements.
- Better namespace support in MSXML.
- Various bug fixes.
The source is available from the
2010 Apr 02
0
Wine release 1.1.42
The Wine development release 1.1.42 is now available.
What's new in this release (see below for details):
- Support for shared 32/64-bit setups.
- Dwarf debug info support for better backtraces.
- More standard actions supported in MSI.
- Support for TIFF image format in WinCodecs.
- A number of Direct3D improvements.
- Shell fixes for better Internet Explorer support.
- Various
2010 Jan 22
0
Wine release 1.1.37
The Wine development release 1.1.37 is now available.
What's new in this release (see below for details):
- A number of fixes in AVI file support.
- Several MSXML improvements.
- A few MSI fixes.
- Various bug fixes.
The source is available from the following locations:
http://ibiblio.org/pub/linux/system/emulators/wine/wine-1.1.37.tar.bz2
2019 Mar 29
0
Wine release 4.5
The Wine development release 4.5 is now available.
What's new in this release (see below for details):
- Support for Vulkan 1.1.
- Better support for kernel objects in device drivers.
- Still more Media Foundation APIs implemented.
- Support for SVG elements in MSHTML.
- Fixes for case conversion troubles in Turkish locale.
- Various bug fixes.
The source is available from the
2014 Nov 03
8
[LLVMdev] [PATCH] Protection against stack-based memory corruption errors using SafeStack
...lar stack protector won't run on this function
+ // (safestack attribute takes precedence)
+ AttrBuilder B;
+ B.addAttribute(Attribute::StackProtect)
+ .addAttribute(Attribute::StackProtectReq)
+ .addAttribute(Attribute::StackProtectStrong);
+ F.removeAttributes(AttributeSet::FunctionIndex, AttributeSet::get(
+ F.getContext(), AttributeSet::FunctionIndex, B));
+ }
+
+ if (AA->onlyReadsMemory(&F)) {
+ // XXX: we don't protect against information leak attacks for now
+ DEBUG(dbgs() << "[SafeStack]...
2015 Dec 03
3
Function attributes for LibFunc and its impact on GlobalsAA
----- Original Message -----
> From: "James Molloy via llvm-dev" <llvm-dev at lists.llvm.org>
> To: "Vaivaswatha Nagaraj" <vn at compilertree.com>
> Cc: "LLVM Dev" <llvm-dev at lists.llvm.org>
> Sent: Thursday, December 3, 2015 4:41:46 AM
> Subject: Re: [llvm-dev] Function attributes for LibFunc and its impact on GlobalsAA
>
>
2009 Jul 07
0
[PATCH server] Update app to work with rails 2.3.2
Note that this does not fix gettext for app,
that will be done separately in another patch
as F10/F11 require different setups for that.
In the meantime gettext works if manually changed
in environment.rb to gettext_rails instead of
gettext/rails
Signed-off-by: Jason Guiditta <jason.guiditt at gmail.com>
---
src/app/controllers/application.rb | 200 --------
2009 Jul 20
9
Upgrade server to run on Rails 2.3.2/F11
Note that one of the 8 patches (#6) will be sent separately in reply
to this email, as some of the replaced lines are too long, so git
won't let me send the email. However, there is nothing wrong with
that patch, and it should be applied in the sequence listed below.
Note also that I assume this will be tested on a clean f11 install, rather
than an upgrade of an existing ovirt server