Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 371 - 380 of 617 for task0 (0.22 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. docs/pt/docs/advanced/async-tests.md

    /// tip | Dica
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 4.3K bytes
    - Click Count (0)
  2. android/guava/src/com/google/common/cache/CacheLoader.java

          }
    
          @Override
          public ListenableFuture<V> reload(K key, V oldValue) {
            ListenableFutureTask<V> task =
                ListenableFutureTask.create(() -> loader.reload(key, oldValue).get());
            executor.execute(task);
            return task;
          }
    
          @Override
          public Map<K, V> loadAll(Iterable<? extends K> keys) throws Exception {
            return loader.loadAll(keys);
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Jan 28 22:39:02 GMT 2026
    - 9.7K bytes
    - Click Count (0)
  3. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/kotlindsl/kotlin-compiler-configuration.kt

    import org.jetbrains.kotlin.config.LanguageVersionSettingsImpl
    import org.jetbrains.kotlin.gradle.dsl.JvmTarget
    import org.jetbrains.kotlin.gradle.dsl.KotlinVersion
    import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
    import org.jetbrains.kotlin.load.java.JavaTypeEnhancementState
    import org.jetbrains.kotlin.load.java.Jsr305Settings
    import org.jetbrains.kotlin.load.java.ReportLevel
    
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Jul 08 12:31:49 GMT 2025
    - 2.6K bytes
    - Click Count (0)
  4. .ci/jobs.t/elastic+elasticsearch+intake+multijob+part1.yml

      - job-description: Elasticsearch %BRANCH% branch intake check part 1.
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu May 06 21:46:09 GMT 2021
    - 413 bytes
    - Click Count (0)
  5. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/precommit/ValidateYamlAgainstSchemaTask.java

     */
    
    package org.elasticsearch.gradle.internal.precommit;
    
    import com.fasterxml.jackson.databind.ObjectMapper;
    import com.fasterxml.jackson.dataformat.yaml.YAMLFactory;
    
    /**
     * Incremental task to validate a set of YAML files against against a schema.
     */
    public class ValidateYamlAgainstSchemaTask extends ValidateJsonAgainstSchemaTask {
        @Override
        protected String getFileType() {
            return "YAML";
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Jul 28 11:09:58 GMT 2021
    - 871 bytes
    - Click Count (0)
  6. docs/zh-hant/docs/advanced/async-tests.md

    ## 其他非同步函式呼叫 { #other-asynchronous-function-calls }
    
    由於測試函式現在是非同步的,你也可以在測試中呼叫(並 `await`)其他 `async` 函式,和在程式碼其他地方一樣。
    
    /// tip
    
    如果在將非同步呼叫整合進測試時遇到 `RuntimeError: Task attached to a different loop`(例如使用 [MongoDB 的 MotorClient](https://stackoverflow.com/questions/41584243/runtimeerror-task-attached-to-a-different-loop) 時),請記得:需要事件迴圈的物件只應在非同步函式內實例化,例如在 `@app.on_event("startup")` 回呼中。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 3.5K bytes
    - Click Count (0)
  7. docs/tr/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 07:53:17 GMT 2026
    - 11.1K bytes
    - Click Count (0)
  8. build-logic/build-update-utils/src/test/groovy/gradlebuild/buildutils/tasks/UpdateKotlinVersionsTest.groovy

     * 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.buildutils.tasks
    
    import spock.lang.Specification
    
    class UpdateKotlinVersionsTest extends Specification {
    
        def previousVersions = [
            "1.9.10", "1.9.25", "1.9.24", "1.9.20", "1.9.20-RC2", "1.9.0", "1.9.0-Beta",
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Oct 29 08:29:55 GMT 2025
    - 3.1K bytes
    - Click Count (0)
  9. build-logic/buildquality/src/main/kotlin/gradlebuild.arch-test.gradle.kts

                                predictiveTestSelection.enabled = false
                            }
                        }
                    }
                }
            }
        }
    }
    
    tasks.codeQuality.configure {
        dependsOn(testing.suites.named("archTest"))
    }
    
    fun notForAccessorGeneration(runnable: Runnable) {
        if (project.name != "gradle-kotlin-dsl-accessors" && project.name != "test") {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Feb 10 08:11:56 GMT 2026
    - 3.4K bytes
    - Click Count (0)
  10. src/main/java/jcifs/util/ResourceManager.java

            return String.format("%s-%d-%d", resource.getClass().getSimpleName(), System.identityHashCode(resource),
                    resourceIdCounter.incrementAndGet());
        }
    
        /**
         * Start the cleanup task
         */
        private void startCleanupTask() {
            if (cleanupTask != null) {
                cleanupTask.cancel(false);
            }
    
            cleanupTask = cleanupExecutor.scheduleWithFixedDelay(() -> {
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 30 05:58:03 GMT 2025
    - 16.2K bytes
    - Click Count (0)
Back to Top