Home
last modified time | relevance | path

Searched refs:forcedState (Results 1 – 8 of 8) sorted by relevance

/dports/net-mgmt/icingaweb2/icingaweb2-2.8.2/modules/setup/library/Setup/
H A DRequirementSet.php57 private $forcedState; variable in Icinga\\Module\\Setup\\RequirementSet
230 } elseif ($force && $this->forcedState !== null) {
231 return $this->forcedState;
250 return $this->forcedState = $state;
/dports/devel/hadoop2/hadoop-2.7.2-src/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-app/src/test/java/org/apache/hadoop/mapreduce/v2/app/
H A DTestMRAppComponentDependencies.java75 protected Job createJob(Configuration conf, JobStateInternal forcedState, in createJob() argument
87 currentUser.getUserName(), getContext(), forcedState, diagnostic); in createJob()
H A DTestMRAppMaster.java161 assertEquals(JobStateInternal.ERROR, appMaster.forcedState); in testMRAppMasterMidLock()
199 assertEquals(JobStateInternal.SUCCEEDED, appMaster.forcedState); in testMRAppMasterSuccessLock()
237 assertEquals(JobStateInternal.FAILED, appMaster.forcedState); in testMRAppMasterFailLock()
277 assertEquals(JobStateInternal.ERROR, appMaster.forcedState); in testMRAppMasterMissingStaging()
H A DTestStagingCleanup.java289 protected Job createJob(Configuration conf, JobStateInternal forcedState, in createJob() argument
385 protected Job createJob(Configuration conf, JobStateInternal forcedState, in createJob() argument
398 forcedState, diagnostic); in createJob()
H A DMRApp.java456 protected Job createJob(Configuration conf, JobStateInternal forcedState, in createJob() argument
469 forcedState, diagnostic); in createJob()
722 JobStateInternal forcedState, String diagnostic) {
728 appContext, forcedState, diagnostic);
H A DTestMRApp.java450 protected Job createJob(Configuration conf, JobStateInternal forcedState, in createJob() argument
452 spiedJob = spy((JobImpl) super.createJob(conf, forcedState, diagnostic)); in createJob()
/dports/devel/hadoop2/hadoop-2.7.2-src/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-app/src/main/java/org/apache/hadoop/mapreduce/v2/app/
H A DMRAppMaster.java221 JobStateInternal forcedState = null; field in MRAppMaster
301 forcedState = JobStateInternal.ERROR; in serviceInit()
315 forcedState = JobStateInternal.SUCCEEDED; in serviceInit()
318 forcedState = JobStateInternal.FAILED; in serviceInit()
322 forcedState = JobStateInternal.ERROR; in serviceInit()
627 protected Job createJob(Configuration conf, JobStateInternal forcedState,
637 forcedState, diagnostic);
1047 job = createJob(getConfig(), forcedState, shutDownMessage);
1065 .getNodeManagerHttpPort(), this.forcedState == null ? null
1066 : this.forcedState.toString(), appSubmitTime)));
/dports/devel/hadoop2/hadoop-2.7.2-src/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-app/src/main/java/org/apache/hadoop/mapreduce/v2/app/job/impl/
H A DJobImpl.java648 private JobStateInternal forcedState = null; field in JobImpl
664 JobStateInternal forcedState, String forcedDiagnostic) { in JobImpl() argument
703 this.forcedState = forcedState; in JobImpl()
1030 if(forcedState != null) { in getInternalState()
1031 return forcedState; in getInternalState()