- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 58 for daemon (0.18 sec)
-
.teamcity/src/test/kotlin/ApplyDefaultConfigurationTest.kt
@ParameterizedTest @CsvSource( value = [ "myParam, true, '--daemon'", "'' , true, '--daemon'", "myParam, false, '--no-daemon'", "'' , false, '--no-daemon'" ] ) fun `can apply defaults to linux test configurations`(extraParameters: String, daemon: Boolean, expectedDaemonParam: String) {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Sep 24 06:22:49 UTC 2024 - 6.3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/Crawler.java
} public void setBackground(final boolean background) { this.background = background; } public boolean isDaemon() { return daemon; } public void setDaemon(final boolean daemon) { this.daemon = daemon; } /* * (non-Javadoc) * * @see java.lang.Runnable#run() */ @Override public void run() {
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:47:32 UTC 2024 - 7.9K bytes - Viewed (0) -
cmd/signals.go
daemon.SdNotify(false, daemon.SdNotifyStopping) exit(stopProcess()) case signal := <-globalServiceSignalCh: switch signal { case serviceRestart: logger.Info("Restarting on service signal") daemon.SdNotify(false, daemon.SdNotifyReloading) stop := stopProcess() rerr := restartProcess() if rerr == nil { daemon.SdNotify(false, daemon.SdNotifyReady) }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Sep 04 17:02:39 UTC 2024 - 3.2K bytes - Viewed (0) -
architecture/runtimes.md
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu May 02 06:42:46 UTC 2024 - 2.3K bytes - Viewed (0) -
src/packaging/deb/init.d/fess
fi if [ -n "$MAX_MAP_COUNT" -a -f /proc/sys/vm/max_map_count ]; then sysctl -q -w vm.max_map_count=$MAX_MAP_COUNT fi # Start Daemon start-stop-daemon -d $FESS_HOME --start -b --user "$FESS_USER" -c "$FESS_USER" --pidfile "$PID_FILE" --exec $DAEMON -- $DAEMON_OPTS return=$? if [ $return -eq 0 ]; then i=0 timeout=10 # Wait for the process to be properly started before exiting
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sun Jan 15 06:32:15 UTC 2023 - 5.8K bytes - Viewed (0) -
.teamcity/src/main/kotlin/configurations/GradleBuildConfigurationDefaults.kt
timeout: Int = 90, daemon: Boolean = true, buildJvm: Jvm = BuildToolBuildJvm, extraSteps: BuildSteps.() -> Unit = {} ) { buildType.applyDefaultSettings(os, timeout = timeout, buildJvm = buildJvm) buildType.killProcessStep(KILL_LEAKED_PROCESSES_FROM_PREVIOUS_BUILDS, os) buildType.gradleRunnerStep(model, gradleTasks, os, arch, extraParameters, daemon) buildType.steps {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Sep 24 06:22:49 UTC 2024 - 8K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/artifact/resolver/DefaultArtifactResolverTest.java
tg.enumerate(ts); for (Thread active : ts) { String name = active.getName(); boolean daemon = active.isDaemon(); assertTrue(daemon, name + " is no daemon Thread."); } } assertTrue(seen, "Could not find ThreadGroup: " + DefaultArtifactResolver.DaemonThreadCreator.THREADGROUP_NAME); } @Test
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3K bytes - Viewed (0) -
src/packaging/rpm/init.d/fess
touch "$pidfile" && chown "$FESS_USER":"$FESS_GROUP" "$pidfile" fi echo -n $"Starting $prog: " # if not running, start it up here, usually something like "daemon $exec" daemon --user $FESS_USER --pidfile="$pidfile" $exec -d retval=$? pid=`ps aux | grep "^${FESS_USER}" | grep "${PROC_NAME}" | sed 's/[\t ]\+/\t/g' | cut -f2` if [ -n "$pid" ]; then echo $pid > "$pidfile"
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sun Jan 15 06:32:15 UTC 2023 - 3.7K bytes - Viewed (0) -
build-logic/buildquality/src/main/kotlin/gradlebuild.configure-ci-artifacts.gradle.kts
is FindBrokenInternalLinks -> listOf(reportFile.get().asFile) is DistributionTest -> listOf( gradleInstallationForTest.gradleUserHomeDir.dir("test-kit-daemon").get().asFile, gradleInstallationForTest.gradleUserHomeDir.dir("kotlin-compiler-daemon").get().asFile, gradleInstallationForTest.daemonRegistry.get().asFile ) else -> emptyList() } fun Task.attachedReportLocations() = when (this) {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Sep 11 14:21:47 UTC 2024 - 2.1K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/ThreadFactoryBuilder.java
return this; } /** * Sets daemon or not for new threads created with this ThreadFactory. * * @param daemon whether or not new Threads created with this ThreadFactory will be daemon threads * @return this for the builder pattern */ @CanIgnoreReturnValue public ThreadFactoryBuilder setDaemon(boolean daemon) { this.daemon = daemon; return this; } /**
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Oct 14 22:50:54 UTC 2024 - 7.9K bytes - Viewed (0)