Skip to content

Commit 6627a7d

Browse files
SantoshSantosh
authored andcommitted
First Prototype: Containing thread control , result and task queue , high precision
1 parent 5484101 commit 6627a7d

18 files changed

+339
-246
lines changed

build.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
<!-- the Compile on Save feature is turned off for the project. -->
88
<!-- You can turn off the Compile on Save (or Deploy on Save) setting -->
99
<!-- in the project's Project Properties dialog box.-->
10-
<project name="Threaded_SC" default="default" basedir=".">
11-
<description>Builds, tests, and runs the project Threaded_SC.</description>
10+
<project name="ClusterComputing" default="default" basedir=".">
11+
<description>Builds, tests, and runs the project ClusterComputing.</description>
1212
<import file="nbproject/build-impl.xml"/>
1313
<!--
1414
@@ -58,7 +58,7 @@
5858
5959
An example of overriding the target for project execution could look like this:
6060
61-
<target name="run" depends="Threaded_SC-impl.jar">
61+
<target name="run" depends="ClusterComputing-impl.jar">
6262
<exec dir="bin" executable="launcher.exe">
6363
<arg file="${dist.jar}"/>
6464
</exec>
-76 Bytes
Binary file not shown.
-2.79 KB
Binary file not shown.
-3.15 KB
Binary file not shown.
-2.21 KB
Binary file not shown.

nbproject/build-impl.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ is divided into following sections:
1919
- cleanup
2020
2121
-->
22-
<project xmlns:j2seproject1="http://www.netbeans.org/ns/j2se-project/1" xmlns:j2seproject3="http://www.netbeans.org/ns/j2se-project/3" xmlns:jaxrpc="http://www.netbeans.org/ns/j2se-project/jax-rpc" basedir=".." default="default" name="Threaded_SC-impl">
22+
<project xmlns:j2seproject1="http://www.netbeans.org/ns/j2se-project/1" xmlns:j2seproject3="http://www.netbeans.org/ns/j2se-project/3" xmlns:jaxrpc="http://www.netbeans.org/ns/j2se-project/jax-rpc" basedir=".." default="default" name="ClusterComputing-impl">
2323
<fail message="Please build using Ant 1.8.0 or higher.">
2424
<condition>
2525
<not>
@@ -449,7 +449,7 @@ is divided into following sections:
449449
</fileset>
450450
</union>
451451
<taskdef classname="org.testng.TestNGAntTask" classpath="${run.test.classpath}" name="testng"/>
452-
<testng classfilesetref="test.set" failureProperty="tests.failed" listeners="org.testng.reporters.VerboseReporter" methods="${testng.methods.arg}" mode="${testng.mode}" outputdir="${build.test.results.dir}" suitename="Threaded_SC" testname="TestNG tests" workingDir="${work.dir}">
452+
<testng classfilesetref="test.set" failureProperty="tests.failed" listeners="org.testng.reporters.VerboseReporter" methods="${testng.methods.arg}" mode="${testng.mode}" outputdir="${build.test.results.dir}" suitename="ClusterComputing" testname="TestNG tests" workingDir="${work.dir}">
453453
<xmlfileset dir="${build.test.classes.dir}" includes="@{testincludes}"/>
454454
<propertyset>
455455
<propertyref prefix="test-sys-prop."/>
@@ -600,7 +600,7 @@ is divided into following sections:
600600
<condition else="-testclass @{testClass}" property="test.class.or.method" value="-methods @{testClass}.@{testMethod}">
601601
<isset property="test.method"/>
602602
</condition>
603-
<condition else="-suitename Threaded_SC -testname @{testClass} ${test.class.or.method}" property="testng.cmd.args" value="@{testClass}">
603+
<condition else="-suitename ClusterComputing -testname @{testClass} ${test.class.or.method}" property="testng.cmd.args" value="@{testClass}">
604604
<matches pattern=".*\.xml" string="@{testClass}"/>
605605
</condition>
606606
<delete dir="${build.test.results.dir}" quiet="true"/>
@@ -892,7 +892,7 @@ is divided into following sections:
892892
<delete file="${built-jar.properties}" quiet="true"/>
893893
</target>
894894
<target if="already.built.jar.${basedir}" name="-warn-already-built-jar">
895-
<echo level="warn" message="Cycle detected: Threaded_SC was already built"/>
895+
<echo level="warn" message="Cycle detected: ClusterComputing was already built"/>
896896
</target>
897897
<target depends="init,-deps-jar-init" name="deps-jar" unless="no.deps">
898898
<mkdir dir="${build.dir}"/>
@@ -1377,7 +1377,7 @@ is divided into following sections:
13771377
<delete file="${built-clean.properties}" quiet="true"/>
13781378
</target>
13791379
<target if="already.built.clean.${basedir}" name="-warn-already-built-clean">
1380-
<echo level="warn" message="Cycle detected: Threaded_SC was already built"/>
1380+
<echo level="warn" message="Cycle detected: ClusterComputing was already built"/>
13811381
</target>
13821382
<target depends="init,-deps-clean-init" name="deps-clean" unless="no.deps">
13831383
<mkdir dir="${build.dir}"/>

nbproject/genfiles.properties

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
build.xml.data.CRC32=34680b21
2-
build.xml.script.CRC32=d8b528ee
1+
build.xml.data.CRC32=4a26c827
2+
build.xml.script.CRC32=a82765ab
33
build.xml.stylesheet.CRC32=[email protected]
44
# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml.
55
# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you.
6-
nbproject/build-impl.xml.data.CRC32=34680b21
7-
nbproject/build-impl.xml.script.CRC32=700def74
6+
nbproject/build-impl.xml.data.CRC32=4a26c827
7+
nbproject/build-impl.xml.script.CRC32=83905839
88
nbproject/build-impl.xml.stylesheet.CRC32=[email protected]

nbproject/private/private.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33
<editor-bookmarks xmlns="http://www.netbeans.org/ns/editor-bookmarks/2" lastBookmarkId="0"/>
44
<open-files xmlns="http://www.netbeans.org/ns/projectui-open-files/2">
55
<group>
6-
<file>file:/C:/Users/Santosh/Downloads/NetBeansProjects/Threaded_SC/src/threaded_sc/Multithreaded_Server.java</file>
7-
<file>file:/C:/Users/Santosh/Downloads/NetBeansProjects/Threaded_SC/src/threaded_sc/Multithreaded_ServerUI.java</file>
6+
<file>file:/C:/Users/Santosh/Downloads/NetBeansProjects/Threaded_SC/src/threaded_sc/JobExecutor.java</file>
87
<file>file:/C:/Users/Santosh/Downloads/NetBeansProjects/Threaded_SC/src/threaded_sc/Client.java</file>
98
</group>
109
</open-files>

nbproject/project.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ annotation.processing.enabled.in.editor=false
33
annotation.processing.processors.list=
44
annotation.processing.run.all.processors=true
55
annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output
6-
application.title=Threaded_SC
6+
application.title=ClusterComputing
77
application.vendor=Santosh
88
build.classes.dir=${build.dir}/classes
99
build.classes.excludes=**/*.java,**/*.form
@@ -23,7 +23,7 @@ debug.test.classpath=\
2323
${run.test.classpath}
2424
# This directory is removed when the project is cleaned:
2525
dist.dir=dist
26-
dist.jar=${dist.dir}/Threaded_SC.jar
26+
dist.jar=${dist.dir}/ClusterComputing.jar
2727
dist.javadoc.dir=${dist.dir}/javadoc
2828
endorsed.classpath=
2929
excludes=

nbproject/project.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<type>org.netbeans.modules.java.j2seproject</type>
44
<configuration>
55
<data xmlns="http://www.netbeans.org/ns/j2se-project/3">
6-
<name>Threaded_SC</name>
6+
<name>ClusterComputing</name>
77
<source-roots>
88
<root id="src.dir"/>
99
</source-roots>

0 commit comments

Comments
 (0)