0
votes
1answer
28 views
Maven assembly plugin: run only one descriptor
I have a project which has several custom descriptors written for the assembly plugin. Is there a way to run only one of those descriptors at a time instead of the whole bunch? I tried using the …
0
votes
2answers
79 views
Use a Descriptor (EDIT: Not a single decorator) for multiple attributes?
Hi,
Python 2.5.4. Fairly new to Python, brand new to decorators as of last night. If I have a class with multiple boolean attributes:
class Foo(object):
_bool1 = True
_bool2 = True
…
1
vote
4answers
56 views
question on changing file descriptor number in c…
Hi all...my question is how would I change the program below so that it takes a file descriptor number on the command line rather than a file name? Any help would be greatly appreciated. Thank You.
…
0
votes
1answer
88 views
python attribute lookup without any descriptor magic?
I've started to use the python descriptor protocol more extensively in the code I've been writing. Typically, the default python lookup magic is what I want to happen, but sometimes I'm finding I …
2
votes
1answer
110 views
Difference between using __init__ and setting a class variable
I'm trying to learn descriptors, and I'm confused by objects behaviour - in the two examples below, as I understood __init__ they should work the same. Can someone unconfuse me, or point me to a …
2
votes
3answers
89 views
Why does declaring a descriptor class in the __init__ function break the descriptor functionality?
In class B below I wanted the __set__ function in class A to be called whenever you assign a value to B().a . Instead, setting a value to B().a overwrites B().a with the value. Class C assigning to …
0
votes
1answer
125 views
Netbeans problem: Can’t add application descriptor, getting null pointer exceptions
When I try to add to the application descriptor in a Netbeans mobile project by clicking on 'Add' in the 'Application Descriptor' panel in the projecct config window nothing happens, netbeans gives a …
0
votes
4answers
107 views
Simulating file descriptor in user space
I would like to implement a socket-like object in user space. There's an important requirement that it should be pollable (i.e. it's state should be queryable via select or poll call).
Is there a …
1
vote
5answers
401 views
Portable way to pass file descriptor between different processes
On most UNIX systems passing an open file between processes can be easily done for child/parent processes by fork(); however I need to share a fd "after" the child was already forked.
I've found some …
2
votes
3answers
208 views
Why do managed attributes just work for class attributes and not for instance attributes in python?
To illustrate the question check the following code:
class MyDescriptor(object):
def __get__(self, obj, type=None):
print "get", self, obj, type
return self._v
def __set__(self, obj, …
0
votes
0answers
150 views
Microsoft Updates doesn’t work without updating the security descriptor [closed]
When I try to run Microsoft Update from my computer at work, it often fails with an error.
If I follow the troubleshooting instructions, it takes me to instructions to run this command to repair the …
0
votes
4answers
651 views
web.xml and relative paths
in web.xml i set my welcome file to a jsp within web.xml
<welcome-file>WEB-INF/index.jsp</welcome-file>
inside index.jsp i then forward on to a servlet
<% …
