You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ofbiz.apache.org by Jacques Le Roux <ja...@les7arts.com> on 2012/07/13 14:01:03 UTC

Re: svn commit: r1361167 - /ofbiz/trunk/build.xml

Both should work, on which platform or JVM did  you get an issue?
http://www.oracle.com/technetwork/java/javase/tech/vmoptions-jsp-140102.html#PerformanceTuning

Jacques

From: <ha...@apache.org>
> Author: hansbak
> Date: Fri Jul 13 11:33:57 2012
> New Revision: 1361167
> 
> URL: http://svn.apache.org/viewvc?rev=1361167&view=rev
> Log:
> memory allocation misspellings
> 
> Modified:
>    ofbiz/trunk/build.xml
> 
> Modified: ofbiz/trunk/build.xml
> URL: http://svn.apache.org/viewvc/ofbiz/trunk/build.xml?rev=1361167&r1=1361166&r2=1361167&view=diff
> ==============================================================================
> --- ofbiz/trunk/build.xml (original)
> +++ ofbiz/trunk/build.xml Fri Jul 13 11:33:57 2012
> @@ -27,7 +27,7 @@ under the License.
>     <property name="memory.initial.param" value="-Xms128M"/>
>     <property name="memory.max.param" value="-Xmx512M"/>
>     <property name="pos.memory.max.param" value="-Xmx512M"/>
> -    <property name="memory.maxpermsize.param" value="-XX:MaxPermSize=512m"/>
> +    <property name="memory.maxpermsize.param" value="-XX:MaxPermSize=512M"/>
> 
>     <available file="applications/build.xml" property="applications.present"/>
>     <available file="specialpurpose/build.xml" property="specialpurpose.present"/>
> @@ -376,7 +376,7 @@ under the License.
>             description="Start OFBiz">
>         <java jar="ofbiz.jar" fork="true">
>             <jvmarg value="${memory.initial.param}"/>
> -            <jvmarg value="${pos.memory.max.param}"/>
> +            <jvmarg value="${memory.max.param}"/>
>             <jvmarg value="${memory.maxpermsize.param}"/>
>         </java>
>     </target>
> @@ -384,7 +384,7 @@ under the License.
>             description="Start OFBiz as a separate process">
>         <java jar="ofbiz.jar" fork="true" spawn="true">
>             <jvmarg value="${memory.initial.param}"/>
> -            <jvmarg value="${pos.memory.max.param}"/>
> +            <jvmarg value="${memory.max.param}"/>
>             <jvmarg value="${memory.maxpermsize.param}"/>
>         </java>
>     </target>
> 
>

Re: svn commit: r1361167 - /ofbiz/trunk/build.xml

Posted by Hans Bakker <ma...@antwebsystems.com>.
You mean the 'M' ? simply to be consistent that is all...

On 07/13/2012 07:01 PM, Jacques Le Roux wrote:
> Both should work, on which platform or JVM did  you get an issue?
> http://www.oracle.com/technetwork/java/javase/tech/vmoptions-jsp-140102.html#PerformanceTuning 
>
>
> Jacques
>
> From: <ha...@apache.org>
>> Author: hansbak
>> Date: Fri Jul 13 11:33:57 2012
>> New Revision: 1361167
>>
>> URL: http://svn.apache.org/viewvc?rev=1361167&view=rev
>> Log:
>> memory allocation misspellings
>>
>> Modified:
>>    ofbiz/trunk/build.xml
>>
>> Modified: ofbiz/trunk/build.xml
>> URL: 
>> http://svn.apache.org/viewvc/ofbiz/trunk/build.xml?rev=1361167&r1=1361166&r2=1361167&view=diff
>> ============================================================================== 
>>
>> --- ofbiz/trunk/build.xml (original)
>> +++ ofbiz/trunk/build.xml Fri Jul 13 11:33:57 2012
>> @@ -27,7 +27,7 @@ under the License.
>>     <property name="memory.initial.param" value="-Xms128M"/>
>>     <property name="memory.max.param" value="-Xmx512M"/>
>>     <property name="pos.memory.max.param" value="-Xmx512M"/>
>> -    <property name="memory.maxpermsize.param" 
>> value="-XX:MaxPermSize=512m"/>
>> +    <property name="memory.maxpermsize.param" 
>> value="-XX:MaxPermSize=512M"/>
>>
>>     <available file="applications/build.xml" 
>> property="applications.present"/>
>>     <available file="specialpurpose/build.xml" 
>> property="specialpurpose.present"/>
>> @@ -376,7 +376,7 @@ under the License.
>>             description="Start OFBiz">
>>         <java jar="ofbiz.jar" fork="true">
>>             <jvmarg value="${memory.initial.param}"/>
>> -            <jvmarg value="${pos.memory.max.param}"/>
>> +            <jvmarg value="${memory.max.param}"/>
>>             <jvmarg value="${memory.maxpermsize.param}"/>
>>         </java>
>>     </target>
>> @@ -384,7 +384,7 @@ under the License.
>>             description="Start OFBiz as a separate process">
>>         <java jar="ofbiz.jar" fork="true" spawn="true">
>>             <jvmarg value="${memory.initial.param}"/>
>> -            <jvmarg value="${pos.memory.max.param}"/>
>> +            <jvmarg value="${memory.max.param}"/>
>>             <jvmarg value="${memory.maxpermsize.param}"/>
>>         </java>
>>     </target>
>>
>>