Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 66 for halted (0.43 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

            },
            "preStop": {
              "$ref": "#/definitions/io.k8s.api.core.v1.Handler",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  2. src/database/sql/sql.go

    // within a transaction ([Tx]) or connection ([Conn]). Once [DB.Begin] is called, the
    // returned [Tx] is bound to a single connection. Once [Tx.Commit] or
    // [Tx.Rollback] is called on the transaction, that transaction's
    // connection is returned to [DB]'s idle connection pool. The pool size
    // can be controlled with [DB.SetMaxIdleConns].
    type DB struct {
    	// Total time waited for new connections.
    	waitDuration atomic.Int64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    	_, err := registry.DeleteCollection(ctx, func(ctx context.Context, obj runtime.Object) error {
    		lock.Lock()
    		defer lock.Unlock()
    		if called {
    			t.Errorf("Delete called more than once, so context cancellation didn't work")
    		} else {
    			cancel()
    			called = true
    		}
    		return nil
    	}, nil, &metainternalversion.ListOptions{})
    	if err != context.Canceled {
    		t.Errorf("Unexpected error: %v", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  4. src/runtime/proc.go

    //
    // unlockf must not access this G's stack, as it may be moved between
    // the call to gopark and the call to unlockf.
    //
    // Note that because unlockf is called after putting the G into a waiting
    // state, the G may have already been readied by the time unlockf is called
    // unless there is external synchronization preventing the G from being
    // readied. If unlockf returns false, it must guarantee that the G cannot be
    // externally readied.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  5. src/net/http/server.go

    	srv.nextProtoOnce.Do(srv.onceSetNextProtoDefaults)
    	return srv.nextProtoErr
    }
    
    // setupHTTP2_Serve is called from (*Server).Serve and conditionally
    // configures HTTP/2 on srv using a more conservative policy than
    // setupHTTP2_ServeTLS because Serve is called after tls.Listen,
    // and may be called concurrently. See shouldConfigureHTTP2ForServe.
    //
    // The tests named TestTransportAutomaticHTTP2* and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  6. doc/go1.17_spec.html

    string, <code>&amp;s[i]</code> is invalid.
    </p>
    
    
    <h3 id="Array_types">Array types</h3>
    
    <p>
    An array is a numbered sequence of elements of a single
    type, called the element type.
    The number of elements is called the length of the array and is never negative.
    </p>
    
    <pre class="ebnf">
    ArrayType   = "[" ArrayLength "]" ElementType .
    ArrayLength = Expression .
    ElementType = Type .
    </pre>
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

        CLOSED,
    
        /**
         * {@link ClosingFuture#finishToValueAndCloser(ValueAndCloserConsumer, Executor)} has been
         * called. The step may not be further subsumed, nor may {@link #finishToFuture()} be called.
         */
        WILL_CREATE_VALUE_AND_CLOSER,
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  8. guava/src/com/google/common/util/concurrent/ClosingFuture.java

        CLOSED,
    
        /**
         * {@link ClosingFuture#finishToValueAndCloser(ValueAndCloserConsumer, Executor)} has been
         * called. The step may not be further subsumed, nor may {@link #finishToFuture()} be called.
         */
        WILL_CREATE_VALUE_AND_CLOSER,
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

          assertFalse("Listener called more than once", wasCalled());
          called.set(true);
        }
    
        public void expectCall() {
          assertFalse("expectCall is already true", expectCall);
          expectCall = true;
        }
    
        public boolean wasCalled() {
          return called.get();
        }
      }
    
      public void testAllAsList() throws Exception {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

          assertFalse("Listener called more than once", wasCalled());
          called.set(true);
        }
    
        public void expectCall() {
          assertFalse("expectCall is already true", expectCall);
          expectCall = true;
        }
    
        public boolean wasCalled() {
          return called.get();
        }
      }
    
      public void testAllAsList() throws Exception {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
Back to top