Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 531 - 540 of 773 for task0 (0.02 seconds)

  1. src/main/java/org/codelibs/fess/helper/JobHelper.java

                op.setRefreshPolicy(Constants.TRUE);
            });
        }
    
        /**
         * Starts a monitor task for tracking job execution.
         *
         * @param jobLog the job log to monitor
         * @return the timeout task for monitoring
         */
        public TimeoutTask startMonitorTask(final JobLog jobLog) {
            final TimeoutTarget target = new MonitorTarget(jobLog);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 10.9K bytes
    - Click Count (0)
  2. build-logic-commons/basics/src/test/kotlin/gradlebuild/basics/tasks/PackageListGeneratorIntegrationTest.kt

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package gradlebuild.basics.tasks
    
    import org.junit.jupiter.api.Assertions.assertEquals
    import org.junit.jupiter.api.Test
    import org.junit.jupiter.api.io.TempDir
    import java.nio.file.FileVisitResult
    import java.nio.file.Files
    import java.nio.file.Path
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Mar 25 08:50:34 GMT 2025
    - 5.1K bytes
    - Click Count (0)
  3. docs/de/docs/advanced/advanced-dependencies.md

    ///
    
    ## Abhängigkeiten mit `yield`, `HTTPException`, `except` und Hintergrundtasks { #dependencies-with-yield-httpexception-except-and-background-tasks }
    
    /// warning | Achtung
    
    Sie benötigen diese technischen Details höchstwahrscheinlich nicht.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 10.3K bytes
    - Click Count (0)
  4. docs/ru/docs/tutorial/middleware.md

    /// note | Технические детали
    
    Если у вас есть зависимости с `yield`, то код выхода (код после `yield`) будет выполняться *после* middleware.
    
    Если были какие‑либо фоновые задачи (рассматриваются в разделе [Фоновые задачи](background-tasks.md), вы увидите это позже), они будут запущены *после* всех middleware.
    
    ///
    
    ## Создание middleware { #create-a-middleware }
    
    Для создания middleware используйте декоратор `@app.middleware("http")` поверх функции.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:56:20 GMT 2026
    - 6.1K bytes
    - Click Count (0)
  5. src/test/java/jcifs/internal/smb2/Smb2SigningDigestTest.java

                }
    
                // Submit task to wipe key
                executor.submit(() -> {
                    try {
                        startLatch.await();
                        Thread.sleep(10);
                        digest.secureWipeKey();
                    } catch (Exception e) {
                        // Ignore
                    }
                });
    
                // Submit more tasks that try to verify data
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 30 05:58:03 GMT 2025
    - 43.7K bytes
    - Click Count (0)
  6. architecture/README.md

    The daemon never runs any user code in the background.
    
    There are several different types of requests, such as a request to run a set of tasks, or to query a tooling model, or to stop.
    Some requests will require that the build is configured and maybe some work executed, and other requests might not.
    
    See [Build execution model](build-execution-model.md) for more details.
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Jun 12 09:50:57 GMT 2025
    - 3.6K bytes
    - Click Count (0)
  7. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/Jdk.java

    package org.elasticsearch.gradle.internal;
    
    import org.gradle.api.Buildable;
    import org.gradle.api.artifacts.Configuration;
    import org.gradle.api.model.ObjectFactory;
    import org.gradle.api.provider.Property;
    import org.gradle.api.tasks.TaskDependency;
    
    import java.io.File;
    import java.util.Iterator;
    import java.util.List;
    import java.util.regex.Matcher;
    import java.util.regex.Pattern;
    
    public class Jdk implements Buildable, Iterable<File> {
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Sep 27 19:29:10 GMT 2021
    - 6.8K bytes
    - Click Count (0)
  8. docs/ko/docs/_llm-test.md

    * backend
    
    * GitHub discussion
    * GitHub issue
    
    * performance
    * performance optimization
    
    * return type
    * return value
    
    * security
    * security scheme
    
    * task
    * background task
    * task function
    
    * template
    * template engine
    
    * type annotation
    * type hint
    
    * server worker
    * Uvicorn worker
    * Gunicorn Worker
    * worker process
    * worker class
    * workload
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 11.7K bytes
    - Click Count (0)
  9. docs/uk/docs/tutorial/middleware.md

    /// note | Технічні деталі
    
    Якщо у вас є залежності з `yield`, код виходу виконається *після* middleware.
    
    Якщо були заплановані фонові задачі (розглянуто в розділі [Фонові задачі](background-tasks.md), ви побачите це пізніше), вони виконаються *після* всіх middleware.
    
    ///
    
    ## Створення middleware { #create-a-middleware }
    
    Щоб створити middleware, ви використовуєте декоратор `@app.middleware("http")` над функцією.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 6.1K bytes
    - Click Count (0)
  10. build-tools-internal/src/main/groovy/elasticsearch.build-scan.gradle

          }
        } else {
          tag 'LOCAL'
        }
      }
    }
    
    subprojects {
      project.getPlugins().withType(TestRerunPlugin) {
        tasks.withType(Test).configureEach(new Action<Test>() {
          @Override
          void execute(Test test) {
            test.doLast(new Action<Test>() {
              @Override
              void execute(Test t) {
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Jul 21 20:40:34 GMT 2021
    - 4.6K bytes
    - Click Count (0)
Back to Top