Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
5answers
245 views

Python: 'object in list' checks and '__cmp__' overflow

this is my first time at stack overflow so I'm sorry if the format doesn't fit quite right with the site. I just recently started learning programming, almost 2 weeks have passed since. I'm learning ...
6
votes
2answers
2k views

x86 CMP Instruction Difference

Question What is the (non-trivial) difference between the following two x86 instructions? 39 /r CMP r/m32,r32 Compare r32 with r/m32 3B /r CMP r32,r/m32 Compare r/m32 with r32 ...
5
votes
4answers
160 views

How can i change the __cmp__ function of an instance (not in class)?

How can i change the __cmp__ function of an instance (not in class)? Ex: class foo: def __init__(self, num): self.num = num def cmp(self, other): return self.num - other.num # ...
4
votes
4answers
214 views

Understanding python object membership for sets

If I understand correctly, the __cmp__() function of an object is called in order to evaluate all objects in a collection while determining whether an object is a member, or 'in', the collection. ...
3
votes
5answers
333 views

__cmp__ method is this not working as expected in Python 2.x?

class x: def __init__(self,name): self.name=name def __str__(self): return self.name def __cmp__(self,other): print("cmp method called with ...
2
votes
1answer
149 views

strange behavior of x86 “cmp” instruction

Here is the code: #include <iostream> #include <time.h> using namespace std; #define ARR_LENGTH 1000000 #define TEST_NUM 0 typedef unsigned int uint; uint arr[ARR_LENGTH]; uint ...
2
votes
2answers
32 views

Infinite loop when using cmpq and je

I'm decrementing RAX on each iteration. If RAX is zero, the program should change flow. # AT&T syntax start_calc_factorial: decq %rax cmpq $0, %rax je quit_calc_factorial mulq %rcx jmp ...
2
votes
3answers
860 views

sort with lexicographic order

I see the results from the following code, but I don't understand exactly how the or knows what to do in the following sort example: use Data::Dumper; $animals{'man'}{'name'} = 'paul'; ...
1
vote
2answers
69 views

x86 cmp function

I am using gdb to examine a program. In assembly, the code is doing: cmp $0x5, %eax However, when I examine the contents of %eax, I get: \020\343\377\377\377\177 when examined as a string. How is ...
1
vote
4answers
73 views

Compare two lines in same file

Given a file like the following:- 01/09/2005 02/09/2005 03/09/2006 03/09/2006 I wish to compare if the last two lines are the same, and return a 1 if so or a 0 if they are not. I can get the last ...
1
vote
1answer
108 views

how can make a batch file that will mount a iso file?

I have a ISO game file that I have to mount with virtual clone drive every time I turn on the computer. So I want to make a simple batch file that mounts the ISO file with the VCD program ...
1
vote
0answers
189 views

TFTP server written in C - Binary diff at the client end shows a difference but not always

I have written a tftp server in C . The tftp client I am using is the native linux client . The file transfer seems to happen correctly . The sent and received file sizes appear to be the same . But ...
1
vote
1answer
213 views

simple 8086 compare instruction problem

recently i have a 8086 assembly homework to finish, i try to use the CMP instruction , but can't get it right.here is the code: MOV AL, 88h CMP AL, 24h JL exit label: mov al,4h exit: ...
1
vote
1answer
137 views

CMP 2.0 bean auto-generated primary key WAS 6.1

is it possible to map bean's key field with identity primary key column in DB2? Sample table: CREATE TABLE ADDRESS ( ID INTEGER NOT NULL GENERATED BY DEFAULT AS IDENTITY ( START ...
1
vote
1answer
477 views

Sign Flag and Overflow Flag are not functioning according to expectation

Suppose AX=8FFE and BX= 0FFF Now if we write Cmp ax,bx Now at this point what will happen is, source (bx) will be subtracted from destination (ax) and the appropriate flags will be updated. As ...
0
votes
0answers
19 views

update a record more than once in the same session CMP entity bean GlassFish2.1

I am new to J2EE. I am using GlassFish Server 2.1, mysqlserver5.1 for my j2ee project. CMP managed entity bean updates a record first time successfully. But, the CMP managed entity bean fails to ...
0
votes
1answer
41 views

forwarding Intent?

for example k9-Mail will try to find a application to handle some attachments and uses the MimeType-Specification of the email. For example with PDF it sends correct (debugging information): 12-27 ...
0
votes
1answer
92 views

Python Object Comparison without defining __cmp__ for the class

Suppose I create a class in python, but I don't define a __cmp__ method for my class. Now I create two instances of that class and compare them. What cmp method does Python use? I ran the code and it ...
0
votes
0answers
38 views

Getting strange cast exception while creating CMP entity

I'm getting strange exception: java.lang.ClassCastException: com.jfhs.achievements._Achievement_DynamicStub cannot be cast to java.lang.Long while trying to create simple CMP entity bean. As i ...
0
votes
1answer
61 views

how do you make a password generator in command prompt that uses letters?

I know how to create a password generator in command prompt but it only uses numbers. Is there a way to make it generate letters as well? for example, ASDE-DASD-DWAS-AWDS.
0
votes
1answer
48 views

CMP entity bean in OpenEJB (OpenJPA?)

I try to run an old EJB2 system on OpenEJB and it uses Entity Bean to access database. Current status is I can run it and can send SQL to Oracle DB (I can see the session and SQL in Oracle), but the ...
0
votes
0answers
39 views

Cannot Insert to a table with auto increment field using CMP with Jboss 4xx?

I am doing something with CMP in Jboss 4xx. In my app, I was trying to insert to a table is MS SQl server 2005 in which the primary key is auto increment. However, I could not insert and JBoss ...
0
votes
0answers
48 views

How to specify relationship field in CMP with jbosscmp-jdbc.xml?

I am tesing Entity bean using CMP with Jboss (4xx). Here is my db: Here is the content of jbosscmp-jdbc.xml <jbosscmp-jdbc> <defaults> ...
0
votes
1answer
89 views

cmp and je not working when comparing equal values

[Homework disclaimer] I'm working on the binary bomb lab. Basically, I have to use the objdump of a "bomb" executable to find the right input strings to disarm the "bomb." Currently I've solved 5/7 ...
0
votes
1answer
59 views

How to add fields to EJB CMP entity bean automatically?

We have a data model that contains large amount of columns in few key tables. Now I'd need to add corresponding mappings for them to EJB 3.x CMP entity beans. Because column name (on DB) and Java-side ...
0
votes
0answers
63 views

Differences between ejbCreate() in CMP and BMP?

I am reading some text regarding entity beans in EJB 2.0. In the section about CMP and BMP, the author said that both these kinds of beans have ejbCreate(Integer id) and in either case, this method ...
0
votes
1answer
61 views

Invalid XML: jbosscmp-jdbc.xml while deploy in Jboss 4?

I am trying to deploy my J2EE application. In my app, I used CMP so there is a need of jbosscmp-jdbc.xml file. Howerver, when I tried to deploy my app in the Jboss, I got the follwing exception: ...
0
votes
1answer
95 views

Adding sun-cmp-mappings.xml file

I am creating CMP beans using Netbeans 6.9.1. Everything worked fine until I added the sun-cmp-mappings.xml file to the conf folder and comment out line 59 in project.properties. I got this error ...
0
votes
1answer
80 views

'Order' entity bean

My database has a table name Order. When I create a new CMP Entity bean, NetBeans 6.9.1 automatically generated a bean with 3 classes name: Order1.java Order1Local.java Order1LocalHome.java I ...
0
votes
1answer
208 views

bisect and lists of user defined objects (python 3)

Before python 3, I used bisect to insert user-defined objects into a list. bisect was happy with this because my user-defined object had a def __cmp__ that defined how to compare the objects. I've ...
0
votes
1answer
61 views

How can I postpone the actual DB insertion of my CMP2.1 bean in JBoss 5.1?

I am migrating a Weblogic 9 application to JBoss 5.1, and bumped into the following problem: A session ejb manages CMP 2.1 entities. Those are inserted at the time of the call to ...
0
votes
1answer
109 views

when is an EJB CMP entity bean actually created

I have a session bean that provides a business method, in which it creates several CMP entity beans, something like this public void businessMethod(int number) { try { MyBeanHome home = ...
0
votes
0answers
150 views

Possible to get CMP for EJB entities without using session beans?

Newbie to EJB, exploring CMP and trying to figure out the angles... I'm using Weblogic 10.3. I've created entities, utilized them from a session bean via JPA and called the session bean from a ...
0
votes
1answer
326 views

Where to find good examples or Templates for Configuration Management Plans?

Documentation is not the favorite area of a developer but an important area to fulfill if you want to have standards in the organization. We are trying to put together a new Configuratio Mgmt Plan to ...