- Sort Score
- Num 10 results
- Language All
Results 21 - 30 of 143 for Finished (0.06 seconds)
-
src/main/java/org/codelibs/fess/app/job/ScriptExecutorJob.java
if (scheduledJob.isLoggingEnabled() && logger.isInfoEnabled()) { logger.info("Finished job: id={}", id); } } else { if (scheduledJob.isLoggingEnabled() && logger.isInfoEnabled()) { logger.info("Finished job: id={}, returnValue:\n{}", id, ret); } jobLog.setScriptResult(ret.toString()); }
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 5.5K bytes - Click Count (0) -
buildSrc/src/main/kotlin/Osgi.kt
jarTask, ) bundleExtension.run { setClasspath(osgi.compileClasspath + sourceSets["main"].compileClasspath) bnd(*bndProperties) } // Call the convention when the task has finished, to modify the jar to contain OSGi metadata. jarTask.doLast { bundleExtension.buildAction().execute(this) } } fun Project.applyOsgiMultiplatform(vararg bndProperties: String) {Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Fri Aug 01 08:06:31 GMT 2025 - 5.1K bytes - Click Count (0) -
configure.cmd
:: the License. @echo off set configure_dir=%~dp0 set configure_dir=%configure_dir:~0,-1% python "%configure_dir%\configure.py" %* || ( exit /b )
Created: Tue Dec 30 12:39:10 GMT 2025 - Last Modified: Tue Aug 11 09:27:42 GMT 2020 - 782 bytes - Click Count (0) -
guava/src/com/google/common/util/concurrent/MoreExecutors.java
* * <p>This method waits 120 seconds before continuing with JVM termination, even if the executor * has not finished its work. * * <p>This is mainly for fixed thread pools. See {@link Executors#newFixedThreadPool(int)}. * * @param executor the executor to modify to make sure it exits when the application is finished * @return an unmodifiable version of the input which will not hang the JVM */ @J2ktIncompatibleCreated: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Wed Oct 08 18:55:33 GMT 2025 - 45.2K bytes - Click Count (0) -
docs/en/docs/advanced/advanced-dependencies.md
In version 0.121.0, FastAPI added support for `Depends(scope="function")` for dependencies with `yield`. Using `Depends(scope="function")`, the exit code after `yield` is executed right after the *path operation function* is finished, before the response is sent back to the client. And when using `Depends(scope="request")` (the default), the exit code after `yield` is executed after the response is sent.
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Thu Nov 13 07:37:15 GMT 2025 - 9.1K bytes - Click Count (0) -
src/main/java/jcifs/SmbPipeResource.java
* Gets the type of this pipe. * * @return the type of the pipe */ int getPipeType(); /** * Create a pipe handle * * @return pipe handle, needs to be closed when finished */ SmbPipeHandle openPipe();Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 2K bytes - Click Count (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/NativeImageTestsAccessors.kt
Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Wed Mar 19 19:25:20 GMT 2025 - 1.3K bytes - Click Count (0) -
cmd/metacache-set.go
if hasErr > 0 && hasErr+fnf > len(disks)-opts.minDisks { if opts.finished != nil { opts.finished(errs) } return errors.Join(errs...) } // Break if all at EOF or error. if atEOF+hasErr == len(readers) { if hasErr > 0 && opts.finished != nil { opts.finished(errs) } break } if agree == len(readers) { // Everybody agreed
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 30.7K bytes - Click Count (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/ws/MessageInflater.kt
// Instead, we ensure that all bytes from source have been processed by inflater. do { inflaterSource.readOrInflate(buffer, Long.MAX_VALUE) } while (inflater.bytesRead < totalBytesToRead && !inflater.finished()) // The inflater data was self-terminated and there's unexpected trailing data. Tear it all down // so we don't leak that data into the input of the next message. if (inflater.bytesRead < totalBytesToRead) {Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Sun Sep 21 06:26:07 GMT 2025 - 2.4K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/log/LogType.java
GET_CONTENT, /** Indicates a redirect location was found. */ REDIRECT_LOCATION, /** Indicates processing a response. */ PROCESS_RESPONSE, /** Indicates the crawling process has finished. */ FINISHED_CRAWLING, /** Indicates processing child URLs due to an exception. */ PROCESS_CHILD_URLS_BY_EXCEPTION, /** Indicates processing a child URL due to an exception. */Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Sun Jul 06 02:13:03 GMT 2025 - 2.4K bytes - Click Count (0)