Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 558 for nThreads (0.41 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // responsibility to ensure that all other threads using a ThreadLocal
    // have exited when it dies, or the per-thread objects for those
    // threads will not be deleted.
    //
    // Google Test only uses global ThreadLocal objects.  That means they
    // will die after main() has returned.  Therefore, no per-thread
    // object managed by Google Test will be leaked as long as all threads
    // using Google Test have exited when main() returns.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  2. src/syscall/syscall_linux_test.go

    // CGO_ENABLED=0 or 1. Note, there is an extended copy of this same
    // test in ../../misc/cgo/test/issue1435.go which requires
    // CGO_ENABLED=1 and launches pthreads from C that run concurrently
    // with the Go code of the test - and the test validates that these
    // pthreads are also kept in sync with the security state changed with
    // the syscalls. Care should be taken to mirror any enhancements to
    // this test here in that file too.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23K bytes
    - Viewed (0)
  3. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/StatefulSerializer.java

    /**
     * Implementations must allow concurrent reading and writing, so that a thread can read and a thread can write at the same time.
     * Implementations do not need to support multiple read threads or multiple write threads.
     */
    public interface StatefulSerializer<T> {
        /**
         * Should not perform any buffering
         */
        ObjectReader<T> newReader(Decoder decoder);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. platforms/jvm/code-quality/src/test/groovy/org/gradle/api/plugins/quality/PmdPluginTest.groovy

            extension.reportsDir == project.file("build/reports/pmd")
            !extension.ignoreFailures
            extension.maxFailures.get() == 0
            extension.rulesMinimumPriority.get() == 5
            extension.threads.get() == 1
        }
    
        def "configures pmd task for each source set"() {
            project.pluginManager.apply(JavaBasePlugin)
            project.sourceSets {
                main
                test
                other
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 14:47:31 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  5. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/dispatch/AsyncDispatchTest.groovy

        }
    
        def 'can stop from multiple threads'() {
            when:
            dispatch.dispatchTo(target1)
    
            parallel.start {
                dispatch.stop()
            }
            parallel.start {
                dispatch.stop()
            }
    
            then:
            noExceptionThrown()
        }
    
        def 'can request stop from multiple threads'() {
            when:
            dispatch.dispatchTo(target1)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/jmh/java/org/gradle/internal/deprecation/DeprecationIdCreationBenchmark.java

    import org.openjdk.jmh.annotations.State;
    import org.openjdk.jmh.annotations.Threads;
    import org.openjdk.jmh.annotations.Warmup;
    import org.openjdk.jmh.infra.Blackhole;
    
    import static org.gradle.internal.deprecation.DeprecationMessageBuilder.createDefaultDeprecationId;
    
    @SuppressWarnings("Since15")
    @Threads(2)
    @Warmup(iterations = 5)
    @Measurement(iterations = 5)
    @State(Scope.Benchmark)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 06:13:13 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/tooling/provider/model/internal/BuildScopeModelBuilder.java

         *
         * No synchronization is applied to the target, so this method may be called for a given target concurrently by multiple threads.
         * Other threads may also be doing work with the target when this method is called.
         * This method is responsible for any synchronization required to create the model.
         */
        Object create(BuildState target);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 14 21:39:26 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  8. guava/src/com/google/common/util/concurrent/MoreExecutors.java

       * This is useful if the given service uses daemon threads, and we want to keep the JVM from
       * exiting immediately on shutdown, instead giving these daemon threads a chance to terminate
       * normally.
       *
       * @param service ExecutorService which uses daemon threads
       * @param terminationTimeout how long to wait for the executor to finish before terminating the
       *     JVM
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 43.7K bytes
    - Viewed (0)
  9. src/runtime/os_linux.go

    	// into (0,period].
    	//
    	// Otherwise, this would show up as a bias away from short-lived threads and
    	// from threads that are only occasionally active: for example, when the
    	// garbage collector runs on a mostly-idle system, the additional threads it
    	// activates may do a couple milliseconds of GC-related work and nothing
    	// else in the few seconds that the profiler observes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/InstrumentingClassLoader.java

     * giving the classloader a chance to rewrite the bytecode of the class.
     * <p>
     * Methods defined in this interface may be called concurrently in multiple threads.
     */
    public interface InstrumentingClassLoader {
        /**
         * This hook is called when the class is being defined in this classloader.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top