config.jelly #3

  • //
  • guest/
  • perforce_software/
  • p4jenkins/
  • main/
  • src/
  • main/
  • resources/
  • org/
  • jenkinsci/
  • plugins/
  • p4/
  • populate/
  • ParallelSync/
  • config.jelly
  • View
  • Commits
  • Open Download .zip Download (469 B)
<?jelly escape-by-default='true'?>
<j:jelly xmlns:j="jelly:core" xmlns:f="/lib/form">
 	
	<f:entry field="enable" title="${%Enabled}">
		<f:checkbox default="false"/>
	</f:entry>

	<f:entry field="threads" title="${%Threads}">
		<f:textbox default="4"/>
	</f:entry>

	<f:entry field="minfiles" title="${%Minimum Files}">
		<f:textbox default="1"/>
	</f:entry>
	
	<f:entry field="minbytes" title="${%Minimum Bytes}">
		<f:textbox default="1024"/>
	</f:entry>

</j:jelly>
# Change User Description Committed
#3 22349 Paul Allen Parallel Sync using P4Java.

Update to P4Java 2017.2; using RPC level parallel sync and threaded within the JVM. Native parallel sync no longer requires a 'p4d' binary.
#2 19519 Paul Allen Jelly header update.

<?jelly escape-by-default='true'?>
#1 19324 Paul Allen Added Parallel Sync.

An Advanced Populate option.  Must specify the PATH to the ‘p4’ executable as parallel sync is not supported by p4java.

JENKINS-29228