Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 271 for defBlock (0.2 sec)

  1. src/internal/fuzz/fuzz.go

    			}
    			cleanErr := w.cleanup()
    			if err == nil {
    				err = cleanErr
    			}
    			errC <- err
    		}()
    	}
    
    	// Main event loop.
    	// Do not return until all workers have terminated. We avoid a deadlock by
    	// receiving messages from workers even after ctx is canceled.
    	activeWorkers := len(workers)
    	statTicker := time.NewTicker(3 * time.Second)
    	defer statTicker.Stop()
    	defer c.logStats()
    
    	c.logStats()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zerrors_freebsd_riscv64.go

    	{7, "E2BIG", "argument list too long"},
    	{8, "ENOEXEC", "exec format error"},
    	{9, "EBADF", "bad file descriptor"},
    	{10, "ECHILD", "no child processes"},
    	{11, "EDEADLK", "resource deadlock avoided"},
    	{12, "ENOMEM", "cannot allocate memory"},
    	{13, "EACCES", "permission denied"},
    	{14, "EFAULT", "bad address"},
    	{15, "ENOTBLK", "block device required"},
    	{16, "EBUSY", "device busy"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 83.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zerrors_freebsd_386.go

    	{7, "E2BIG", "argument list too long"},
    	{8, "ENOEXEC", "exec format error"},
    	{9, "EBADF", "bad file descriptor"},
    	{10, "ECHILD", "no child processes"},
    	{11, "EDEADLK", "resource deadlock avoided"},
    	{12, "ENOMEM", "cannot allocate memory"},
    	{13, "EACCES", "permission denied"},
    	{14, "EFAULT", "bad address"},
    	{15, "ENOTBLK", "block device required"},
    	{16, "EBUSY", "device busy"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 79.6K bytes
    - Viewed (0)
  4. pkg/controller/cronjob/cronjob_controllerv2_test.go

    		finishedJobs        []*batchv1.Job
    		jobCreateError      error
    		expectedDeletedJobs []string
    	}{
    		{
    			name: "jobs are still deleted when a cronjob can't create jobs due to jobs quota being reached (avoiding a deadlock)",
    			now:  *justAfterTheHour(),
    			cronJob: &batchv1.CronJob{
    				ObjectMeta: metav1.ObjectMeta{Namespace: "foo-ns", Name: "fooer"},
    				Spec: batchv1.CronJobSpec{
    					Schedule:                   onTheHour,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 70.8K bytes
    - Viewed (0)
  5. src/runtime/signal_unix.go

    		// these expectations of *libc code are mostly met by
    		// the combined go+cgo system of threads. However,
    		// when go causes a thread to exit, via a return from
    		// mstart(), the combined runtime can deadlock if
    		// these signals are blocked. Thus, don't block these
    		// signals when exiting threads.
    		// - glibc: SIGCANCEL (32), SIGSETXID (33)
    		// - musl: SIGTIMER (32), SIGCANCEL (33), SIGSYNCCALL (34)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 16:04:54 UTC 2024
    - 45K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_controller.go

    	// objects have been digested
    	haveExemptPL, haveCatchAllPL bool
    
    	// Buffered FlowSchema status updates to do.  Do them when the
    	// lock is not held, to avoid a deadlock due to such a request
    	// provoking a call into this controller while the lock held
    	// waiting on that request to complete.
    	fsStatusUpdates []fsStatusUpdate
    
    	maxWaitingRequests, maxExecutingRequests int
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 48.8K bytes
    - Viewed (1)
  7. src/runtime/time.go

    // acquire ts.lock at the same time, because we know that
    // t is not in any ts.heap, so nothing holding a ts.lock would
    // be acquiring the t.lock at the same time, meaning there
    // isn't a possible deadlock. But it is easier and safer not to be
    // too clever and respect the static ordering.
    // (If we don't, we have to change the static lock checking of t and ts.)
    //
    // Concurrent calls to time.Timer.Reset or blockTimerChan
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 14:36:24 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

              "type": "array",
              "items": { "type": "string", "default": "" },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  9. src/crypto/tls/tls_test.go

    	for i := 0; i < 2; i++ {
    		select {
    		case err := <-errChan:
    			if err != nil {
    				t.Fatal(err)
    			}
    		case <-time.After(10 * time.Second):
    			t.Fatal("deadlock")
    		}
    	}
    
    	// Also test CloseWrite being called before the handshake is
    	// finished:
    	{
    		ln2 := newLocalListener(t)
    		defer ln2.Close()
    
    		netConn, err := net.Dial("tcp", ln2.Addr().String())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__authorization.k8s.io__v1_openapi.json

                "items": {
                  "default": "",
                  "type": "string"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 66.1K bytes
    - Viewed (0)
Back to top