Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 491 for upfn (0.07 sec)

  1. test/fixedbugs/bug13343.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    var (
    	a, b = f() // ERROR "initialization cycle|depends upon itself|depend upon each other"
    	c    = b   // GCCGO_ERROR "depends upon itself|depend upon each other"
    )
    
    func f() (int, int) {
    	return c, c
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 23 20:27:09 UTC 2022
    - 410 bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. build/run.sh

    kube::build::verify_prereqs
    kube::build::build_image
    
    if [[ ${KUBE_RUN_COPY_OUTPUT} =~ ^[yY]$ ]]; then
      kube::log::status "Output from this container will be rsynced out upon completion. Set KUBE_RUN_COPY_OUTPUT=n to disable."
    else
      kube::log::status "Output from this container will NOT be rsynced out upon completion. Set KUBE_RUN_COPY_OUTPUT=y to enable."
    fi
    
    kube::build::run_build_command "$@"
    
    if [[ ${KUBE_RUN_COPY_OUTPUT} =~ ^[yY]$ ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 16 08:25:52 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  6. 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)
  7. src/runtime/cgo/gcc_context.c

    //go:build unix || windows
    
    #include "libcgo.h"
    
    // Releases the cgo traceback context.
    void _cgo_release_context(uintptr_t ctxt) {
    	void (*pfn)(struct context_arg*);
    
    	pfn = _cgo_get_context_function();
    	if (ctxt != 0 && pfn != nil) {
    		struct context_arg arg;
    
    		arg.Context = ctxt;
    		(*pfn)(&arg);
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 24 22:38:02 UTC 2023
    - 466 bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top