Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 232 for defBlock (0.16 sec)

  1. src/runtime/mgc.go

    	lock(&sched.deferlock)
    	// disconnect cached list before dropping it on the floor,
    	// so that a dangling ref to one entry does not pin all of them.
    	var d, dlink *_defer
    	for d = sched.deferpool; d != nil; d = dlink {
    		dlink = d.link
    		d.link = nil
    	}
    	sched.deferpool = nil
    	unlock(&sched.deferlock)
    }
    
    // Timing
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  2. tensorflow/c/eager/parallel_device/parallel_device_lib.cc

                            const int in_flight_nodes_limit)
          : status_(TF_NewStatus()),
            // If the context's default exector is set to async, re-using that in
            // each thread would cause collectives to deadlock. For consistency we
            // create a new sync executor for every thread.
            //
            // TODO(allenl): We should have an async API that works with the
            // parallel device.
            device_(device),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 07:47:20 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  3. src/runtime/os_aix.go

    	if mp.waitsema != 0 {
    		return
    	}
    
    	var sem *semt
    
    	// Call libc's malloc rather than malloc. This will
    	// allocate space on the C heap. We can't call mallocgc
    	// here because it could cause a deadlock.
    	sem = (*semt)(malloc(unsafe.Sizeof(*sem)))
    	if sem_init(sem, 0, 0) != 0 {
    		throw("sem_init")
    	}
    	mp.waitsema = uintptr(unsafe.Pointer(sem))
    }
    
    //go:nosplit
    func semasleep(ns int64) int32 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/managedfields/node.yaml

        reason: UnregisterNetDevice
        status: "False"
        type: FrequentUnregisterNetDevice
      - lastHeartbeatTime: "2019-09-20T19:32:08Z"
        lastTransitionTime: "2019-07-09T16:17:04Z"
        message: kernel has no deadlock
        reason: KernelHasNoDeadlock
        status: "False"
        type: KernelDeadlock
      - lastHeartbeatTime: "2019-09-20T19:32:08Z"
        lastTransitionTime: "2019-07-09T16:17:04Z"
        message: Filesystem is not read-only
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 20:22:50 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/timeout/JavaProcessStackTracesMonitor.java

     *
     * Used to print all JVMs' thread dumps on the machine. When it starts working, the process/machine might be in a bad state (e.g. deadlock),
     * So we don't want it to depend on any third-party libraries. It's executed directly via `java JavaProcessStackTracesMonitor` in `PrintStackTracesOnTimeoutBuildService`.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  6. src/runtime/coro.go

    			gnext = next.ptr()
    			break
    		}
    	}
    
    	// Check if we're switching to ourselves. This case is able to break our
    	// thread-lock invariants and an unbuffered channel implementation of
    	// coroswitch would deadlock. It's clear that this case should just not
    	// work.
    	if gnext == gp {
    		throw("coroswitch of a goroutine to itself")
    	}
    
    	// Emit the trace event after getting gnext but before changing curg.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:09:18 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_ppc.go

    	{31, "EMLINK", "too many links"},
    	{32, "EPIPE", "broken pipe"},
    	{33, "EDOM", "numerical argument out of domain"},
    	{34, "ERANGE", "numerical result out of range"},
    	{35, "EDEADLK", "resource deadlock avoided"},
    	{36, "ENAMETOOLONG", "file name too long"},
    	{37, "ENOLCK", "no locks available"},
    	{38, "ENOSYS", "function not implemented"},
    	{39, "ENOTEMPTY", "directory not empty"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ParallelDownloadsIntegrationTest.groovy

            expect:
            executer.withArguments('--max-workers', '4')
            succeeds("resolve")
        }
    
        @Issue("gradle/gradle#2415")
        def "should not deadlock when downloading parent pom concurrently with a top-level dependency"() {
            given:
            def child1 = mavenRepo.module("org", "child1", "1.0")
            child1.parent("org", "parent1", "1.0")
            child1.publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 13K bytes
    - Viewed (0)
  9. src/runtime/lockrank.go

    	lockRankGlobalAlloc:     "globalAlloc",
    	lockRankTrace:           "trace",
    	lockRankTraceStackTab:   "traceStackTab",
    	lockRankPanic:           "panic",
    	lockRankDeadlock:        "deadlock",
    	lockRankRaceFini:        "raceFini",
    	lockRankAllocmRInternal: "allocmRInternal",
    	lockRankExecRInternal:   "execRInternal",
    	lockRankTestRInternal:   "testRInternal",
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_mips.go

    	{44, "EL2HLT", "level 2 halted"},
    	{45, "EDEADLK", "resource deadlock avoided"},
    	{46, "ENOLCK", "no locks available"},
    	{50, "EBADE", "invalid exchange"},
    	{51, "EBADR", "invalid request descriptor"},
    	{52, "EXFULL", "exchange full"},
    	{53, "ENOANO", "no anode"},
    	{54, "EBADRQC", "invalid request code"},
    	{55, "EBADSLT", "invalid slot"},
    	{56, "EDEADLOCK", "file locking deadlock error"},
    	{59, "EBFONT", "bad font file format"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 34.7K bytes
    - Viewed (0)
Back to top