Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 46 for blocked (0.19 sec)

  1. src/runtime/proc.go

    		pp, _ = pidleget(0)
    	}
    	var locked bool
    	if pp == nil {
    		globrunqput(gp)
    
    		// Below, we stoplockedm if gp is locked. globrunqput releases
    		// ownership of gp, so we must check if gp is locked prior to
    		// committing the release by unlocking sched.lock, otherwise we
    		// could race with another M transitioning gp from unlocked to
    		// locked.
    		locked = gp.lockedm != 0
    	} else if sched.sysmonwait.Load() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  2. pkg/controller/garbagecollector/garbagecollector_test.go

    	time.Sleep(1 * time.Second)
    
    	err = expectSyncNotBlocked(fakeDiscoveryClient, &gc.workerLock)
    	if err != nil {
    		t.Fatalf("Expected garbagecollector.Sync to be running but it is blocked: %v", err)
    	}
    	assertMonitors(t, gc, "pods", "deployments")
    
    	// Simulate the discovery client returning an error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  3. pkg/proxy/nftables/proxier_test.go

    		},
    		{
    			name:     "blocked external to LB1",
    			sourceIP: testExternalClientBlocked,
    			destIP:   svcLBIP1,
    			destPort: svcPort,
    			output:   "DROP",
    		},
    		{
    			name:     "blocked external to LB2",
    			sourceIP: testExternalClientBlocked,
    			destIP:   svcLBIP2,
    			destPort: svcPort,
    			output:   "DROP",
    		},
    		{
    			name:     "pod to LB1 (blocked by LoadBalancerSourceRanges)",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.4.md

    - If upgrading Cluster Federation components from 1.3.x, please ensure your cluster name is a valid DNS label (#30956, @nikhiljindal)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.5.md

      - [beta] Deployments that cannot make progress in rolling out the newest version will now indicate via the API they are blocked ([docs](http://kubernetes.io/docs/user-guide/deployments/#failed-deployment)) ([kubernetes/features#122](https://github.com/kubernetes/enhancements/issues/122))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  6. src/reflect/all_test.go

    			cases[i], cases[j] = cases[j], cases[i]
    			info[i], info[j] = info[j], info[i]
    		}
    
    		if helper != nil {
    			// We wait before kicking off a goroutine to satisfy a blocked select.
    			// The pause needs to be big enough to let the select block before
    			// we run the helper, but if we lose that race once in a while it's okay: the
    			// select will just proceed immediately. Not a big deal.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  7. src/database/sql/sql.go

    	Idle            int // The number of idle connections.
    
    	// Counters
    	WaitCount         int64         // The total number of connections waited for.
    	WaitDuration      time.Duration // The total time blocked waiting for a new connection.
    	MaxIdleClosed     int64         // The total number of connections closed due to SetMaxIdleConns.
    	MaxIdleTimeClosed int64         // The total number of connections closed due to SetConnMaxIdleTime.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__storage.k8s.io__v1alpha1_openapi.json

    settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds....
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 117.5K bytes
    - Viewed (0)
  9. src/net/http/serve_test.go

    		_, err = conn.Write([]byte("POST / HTTP/1.1\r\nConnection: close\r\nHost: foo\r\nContent-Length: 100000\r\n\r\n"))
    		if err != nil {
    			errCh <- err
    			return
    		}
    		// And now just block, making the server block on our
    		// 100000 bytes of body that will never arrive.
    		<-closeConn
    	}()
    	select {
    	case err := <-readErrCh:
    		if err == nil {
    			t.Error("Read was nil. Expected error.")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__scheduling.k8s.io__v1_openapi.json

    settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds....
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 116.6K bytes
    - Viewed (0)
Back to top