Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 192 for blocked (0.73 sec)

  1. src/runtime/netpoll_windows.go

    	}
    	n := len(entries) / int(gomaxprocs)
    	if n < 8 {
    		n = 8
    	}
    	if delay != 0 {
    		mp.blocked = true
    	}
    	if stdcall6(_GetQueuedCompletionStatusEx, iocphandle, uintptr(unsafe.Pointer(&entries[0])), uintptr(n), uintptr(unsafe.Pointer(&n)), uintptr(wait), 0) == 0 {
    		mp.blocked = false
    		errno := getlasterror()
    		if errno == _WAIT_TIMEOUT {
    			return gList{}, 0
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  2. src/runtime/crash_unix_test.go

    		t.Fatal("subprocess failed; output:\n", string(buf))
    	}
    
    	// The child blockers print "x\n" and then block on a lock. Receiving
    	// those bytes only indicates that the child is _about to block_. Since
    	// we don't have a way to know when it is fully blocked, sleep a bit to
    	// make us less likely to lose the race and signal before the child
    	// blocks.
    	time.Sleep(100 * time.Millisecond)
    
    	// Send SIGQUIT.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 20:11:47 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  3. src/net/mptcpsock_linux.go

    	// system. But also fallback in case of any error with MPTCP.
    	//
    	// Possible MPTCP specific error: ENOPROTOOPT (sysctl net.mptcp.enabled=0)
    	// But just in case MPTCP is blocked differently (SELinux, etc.), just
    	// retry with "plain" TCP.
    	return sd.dialTCP(ctx, laddr, raddr)
    }
    
    func (sl *sysListener) listenMPTCP(ctx context.Context, laddr *TCPAddr) (*TCPListener, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 18:48:34 UTC 2023
    - 4K bytes
    - Viewed (0)
  4. platforms/core-runtime/internal-instrumentation-api/src/main/java/org/gradle/internal/instrumentation/api/annotations/ToBeReplacedByLazyProperty.java

     */
    @Retention(RetentionPolicy.CLASS)
    @Target({ElementType.METHOD})
    public @interface ToBeReplacedByLazyProperty {
    
        /**
         * Additional comment, e.g. why upgrade of a property is blocked.
         */
        String comment() default "";
    
        /**
         * Link to a GitHub issue if it exists.
         */
        String issue() default "";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 09:58:15 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. src/context/context_test.go

    		t.Errorf("<-parent.Done() == %v want nothing (it should block)", x)
    	case x := <-cancelChild.Done():
    		t.Errorf("<-cancelChild.Done() == %v want nothing (it should block)", x)
    	case x := <-timerChild.Done():
    		t.Errorf("<-timerChild.Done() == %v want nothing (it should block)", x)
    	case x := <-valueChild.Done():
    		t.Errorf("<-valueChild.Done() == %v want nothing (it should block)", x)
    	default:
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 19 19:13:01 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/util/internal/DisconnectableInputStream.java

            } finally {
                lock.unlock();
            }
        }
    
        /**
         * Closes this {@code InputStream} for reading. Any threads blocked in read() will receive an end-of-stream. Also requests that the
         * reader thread stop reading, if possible, but does not block waiting for this to happen.
         *
         * <p>NOTE: this method does not close the source input stream.</p>
         */
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 07 08:18:46 UTC 2021
    - 6.5K bytes
    - Viewed (0)
  7. pkg/util/iptables/monitor_test.go

    	}
    	return nil
    }
    
    func waitForBlocked(mfe *monitorFakeExec) error {
    	return utilwait.PollImmediate(100*time.Millisecond, time.Second, func() (bool, error) {
    		blocked := mfe.getWasBlocked()
    		return blocked, nil
    	})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 08 15:21:59 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  8. src/os/signal/signal_linux_test.go

    	"syscall"
    	"testing"
    	"time"
    )
    
    const prSetKeepCaps = 8
    
    // This test validates that syscall.AllThreadsSyscall() can reliably
    // reach all 'm' (threads) of the nocgo runtime even when one thread
    // is blocked waiting to receive signals from the kernel. This monitors
    // for a regression vs. the fix for #43149.
    func TestAllThreadsSyscallSignals(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  9. src/runtime/sigqueue.go

    // variable. It can be in three states:
    // * sigReceiving means that signal_recv is blocked on sig.Note and there are
    //   no new pending signals.
    // * sigSending means that sig.mask *may* contain new pending signals,
    //   signal_recv can't be blocked in this state.
    // * sigIdle means that there are no new pending signals and signal_recv is not
    //   blocked.
    //
    // Transitions between states are done atomically with CAS.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. src/cmd/trace/goroutinegen.go

    	}
    
    	if from == trace.GoWaiting {
    		// Goroutine unblocked.
    		gs.unblock(ev.Time(), ev.Stack(), ev.Goroutine(), ctx)
    	}
    	if from == trace.GoNotExist && to == trace.GoRunnable {
    		// Goroutine was created.
    		gs.created(ev.Time(), ev.Goroutine(), ev.Stack())
    	}
    	if from == trace.GoSyscall && to != trace.GoRunning {
    		// Exiting blocked syscall.
    		gs.syscallEnd(ev.Time(), true, ctx)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top