Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
1answer
105 views

Haskell benchmarking/Optimization of nf/whnf of non-strict reduction

I am trying to optimize a library which is designed to take a large data set and then apply different operations to it. Now that the library is working, I want to optimize it. I am under the ...
4
votes
1answer
102 views

Forcing evaluation of function input before benchmarking in Criterion

How do you force evaluation of the input of a function before benchmarking the function in Criterion? I am trying to benchmark some functions, but will like to exclude time to evaluate input thunk. ...
2
votes
0answers
31 views

can´t change the Failure Criteria to a Composite Failure Criteria

I need help with Solidworks 2011 version 1.0 64bit Windows7! I´f build a composite shell and want to simulate a simple force on a surface. Everything is fine exapt of the following: When I want ...
1
vote
0answers
115 views

Error when using AliasToBeanResultTransformer in Criterion

I am trying to do some paging together with some fetching, but the result returns duplicates. I have therefore added a AliasToBeanResultTransformer, but then I get the following error: Could not find ...
1
vote
2answers
318 views

How to translate this query into Criteria with propel?

I try to do the query with Symfony and Propel's Criteria, but it's doesn't work : SELECT * FROM `produit` WHERE `nom` LIKE '%parasol%' OR `chapeau` LIKE '%parasol%' OR `description` LIKE '%parasol%' ...
0
votes
2answers
66 views

Mysql criterion query

Got question. If i make query to server i use something like this: mysql_query("select * FROM test WHERE car = '$car'); If i make query to server and use two criterions i use something like this: ...
0
votes
1answer
113 views

How to make a criteria query with 3 OR Criterions properly?

I'd like to make a criteria query with 3 OR Criterions and I dont know what is the best way to do it. Currently I only have 2 or Restrictions. Criteria crit = session.createCriteria(Reader.class) ...
0
votes
1answer
38 views

Showing data thats fulfills more than one specified criterion

Got setup simple database for learning. Got data inserted. Now im trying make show that data that fulfills criterion is only displayed. Like i select in forms age 33 and male. Then only male that age ...
0
votes
2answers
359 views

NHibernate Criterion and formula

I have a setup where I have a table with two fields, FirstName and LastName. To do a search in the name, I have made a formula which contains FirstName + " " + Lastname. But if I try to do the ...
0
votes
1answer
62 views

How do I query by the count of a property in nhibernate without using a detached criteria?

hey guys, I'm using NHibernate version 2.1.2.4000. The Entity class bowl { int id { get; set; } List<fruit> fruits { get; set; } } The Desired (pseudo) Query var bowls = ...
0
votes
2answers
36 views

Or statements in criterion

I have a list of orders, which are connected to a user-table. Each order can contain multiple users. I then have a search area where an admin can search through all orders by searching for e.g. a ...