Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 366 for upfn (0.16 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/work/WorkerLeaseService.java

         * the locks upon completion.  Blocks until the specified locks can be obtained.
         */
        <T> T withLocks(Collection<? extends ResourceLock> locks, Factory<T> factory);
    
        /**
         * Runs a given {@link Runnable} while the specified locks are being held, releasing
         * the locks upon completion.  Blocks until the specified locks can be obtained.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 06:02:18 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/concurrent/DefaultAsyncIOScopeFactoryTest.kt

    import java.util.concurrent.Executors
    import java.util.concurrent.TimeUnit
    import java.util.concurrent.TimeoutException
    
    
    class DefaultAsyncIOScopeFactoryTest {
    
        @Test
        fun `#io failure is reported upon IOScope#close`() {
    
            withAsyncIOScopeFactory {
    
                val failure = IOException()
    
                val scope = newScope().apply {
                    io { throw failure }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheInitScriptsIntegrationTest.groovy

            then:
            outputDoesNotContain 'initscript1!'
            outputDoesNotContain 'initscript2!'
            configurationCache.assertStateLoaded()
        }
    
        def "invalidates cache upon changes to init script content order"() {
    
            given:
            def initScript1 = file('initscript1.gradle.kts').tap {
                text = 'println("initscript1!")'
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  4. src/internal/trace/traceviewer/static/trace_viewer_full.html

    return ta;}
    function trackDocument(stateObj,movefn,upfn){stateObj.movefn=movefn;stateObj.upfn=upfn;document.addEventListener('mousemove',movefn);document.addEventListener('mouseup',upfn);}
    function untrackDocument(stateObj){document.removeEventListener('mousemove',stateObj.movefn);document.removeEventListener('mouseup',stateObj.upfn);stateObj.movefn=null;stateObj.upfn=null;}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (0)
  5. src/runtime/cgo/gcc_libinit.c

    		// instead. See also issue #15943.
    		pfn = __atomic_load_n(&cgo_context_function, __ATOMIC_CONSUME);
    
    		__atomic_store_n(&runtime_init_done, done, __ATOMIC_RELEASE);
    		pthread_mutex_unlock(&runtime_init_mu);
    	}
    
    	if (pfn != nil) {
    		struct context_arg arg;
    
    		arg.Context = 0;
    		(*pfn)(&arg);
    		return arg.Context;
    	}
    	return 0;
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 01:07:18 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/internal/ws/WebSocketExtensions.kt

    data class WebSocketExtensions(
      /** True if the agreed upon extensions includes the permessage-deflate extension. */
      @JvmField val perMessageDeflate: Boolean = false,
      /** Should be a value in [8..15]. Only 15 is acceptable by OkHttp as Java APIs are limited. */
      @JvmField val clientMaxWindowBits: Int? = null,
      /** True if the agreed upon extension parameters includes "client_no_context_takeover". */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/stdlib-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/stdlib/HashSetCodec.kt

            if (element != null && element in circularReferences && element.javaClass.overridesHashCode()) {
                logPropertyProblem("serialize") {
                    text("Circular references can lead to undefined behavior upon deserialization.")
                }
                if (writeCircularMarker) {
                    write(CircularReferenceMarker.INSTANCE)
                    writeCircularMarker = false
                }
            }
            write(element)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 20:43:52 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/buildCache/caching-android-projects/tests/sanityCheck.sample.conf

    executable: gradle
    args: tasks
    # Kapt produces deprecation warnings
    flags: "--warning-mode=all"
    expected-output-file: sanityCheck.out
    allow-additional-output: true
    
    # Note, upon upgrading Kapt to a version that does not emit a warning,
    # this test will fail. Simply delete this sanityCheck test, as it is
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 20:27:07 UTC 2024
    - 374 bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildSrcChangesIntegrationTest.groovy

    import static org.junit.Assume.assumeFalse
    
    class ConfigurationCacheBuildSrcChangesIntegrationTest extends AbstractConfigurationCacheIntegrationTest {
    
        def "invalidates cache upon change to buildSrc #changeFixtureSpec"() {
            given:
            def configurationCache = newConfigurationCacheFixture()
            def changeFixture = changeFixtureSpec.fixtureForProjectDir(file('buildSrc'))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  10. platforms/jvm/testing-junit-platform/build.gradle.kts

    This project is separate from :testing-jvm-infrastructure since it requires junit-platform which itself requires Java 8+.
    This project should only be used by :testing-jvm-infrastructure, however it is not depended upon directly.
    Instead :testing-jvm-infrastructure loads classes from this project via reflection due to the above noted Java version issue.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 986 bytes
    - Viewed (0)
Back to top