Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 800 for states (0.2 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/SelectorState.java

    import javax.annotation.Nullable;
    import java.util.ArrayList;
    import java.util.Collection;
    import java.util.List;
    
    import static org.gradle.util.internal.TextUtil.getPluralEnding;
    
    /**
     * Resolution state for a given module version selector.
     *
     * There are 3 possible states:
     * 1. The selector has been newly added to a `ModuleResolveState`. In this case {@link #resolved} will be `false`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  2. src/crypto/sha1/sha1_test.go

    		io.WriteString(h, g.in[:len(g.in)/2])
    
    		state, err := h.(encoding.BinaryMarshaler).MarshalBinary()
    		if err != nil {
    			t.Errorf("could not marshal: %v", err)
    			continue
    		}
    
    		if string(state) != g.halfState {
    			t.Errorf("sha1(%q) state = %+q, want %+q", g.in, state, g.halfState)
    			continue
    		}
    
    		if err := h2.(encoding.BinaryUnmarshaler).UnmarshalBinary(state); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 21:27:16 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  3. src/net/http/httptest/server.go

    	}()
    }
    
    // wrap installs the connection state-tracking hook to know which
    // connections are idle.
    func (s *Server) wrap() {
    	oldHook := s.Config.ConnState
    	s.Config.ConnState = func(c net.Conn, cs http.ConnState) {
    		s.mu.Lock()
    		defer s.mu.Unlock()
    
    		switch cs {
    		case http.StateNew:
    			if _, exists := s.conns[c]; exists {
    				panic("invalid state transition")
    			}
    			if s.conns == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 17:26:10 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/AtomicLongMap.java

       * first decrementing to zero, and then removing. putIfAbsent or replace could observe the
       * intermediate zero-state. Ways we could deal with this are:
       *
       * - Don't define any of the ConcurrentMap operations. This is the current state of affairs.
       *
       * - Define putIfAbsent and replace as treating zero and absent identically (as currently
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureBenchmarks.java

         * everywhere.
         */
        static final class Sync<V> extends AbstractQueuedSynchronizer {
    
          private static final long serialVersionUID = 0L;
    
          /* Valid states. */
          static final int RUNNING = 0;
          static final int COMPLETING = 1;
          static final int COMPLETED = 2;
          static final int CANCELLED = 4;
          static final int INTERRUPTED = 8;
    
          private V value;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 06 12:56:11 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/finalizer/crd_finalizer.go

    		return nil
    	}
    
    	crd := cachedCRD.DeepCopy()
    
    	// update the status condition.  This cleanup could take a while.
    	apiextensionshelpers.SetCRDCondition(crd, apiextensionsv1.CustomResourceDefinitionCondition{
    		Type:    apiextensionsv1.Terminating,
    		Status:  apiextensionsv1.ConditionTrue,
    		Reason:  "InstanceDeletionInProgress",
    		Message: "CustomResource deletion is in progress",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  7. docs/en/docs/tutorial/security/simple-oauth2.md

    The spec also states that the `username` and `password` must be sent as form data (so, no JSON here).
    
    ### `scope`
    
    The spec also says that the client can send another form field "`scope`".
    
    The form field name is `scope` (in singular), but it is actually a long string with "scopes" separated by spaces.
    
    Each "scope" is just a string (without spaces).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  8. src/net/http/roundtrip_js.go

    		}
    
    		code := result.Get("status").Int()
    
    		uncompressed := false
    		if ascii.EqualFold(header.Get("Content-Encoding"), "gzip") {
    			// The fetch api will decode the gzip, but Content-Encoding not be deleted.
    			header.Del("Content-Encoding")
    			header.Del("Content-Length")
    			contentLength = -1
    			uncompressed = true
    		}
    
    		respCh <- &Response{
    			Status:        fmt.Sprintf("%d %s", code, StatusText(code)),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  9. tensorflow/c/eager/c_api_experimental.h

    // Returns the status for the tensor handle. In TFRT, a tensor handle can carry
    // error info if error happens. If so, the status will be set with the error
    // info. If not, status will be set as OK.
    TF_CAPI_EXPORT extern void TFE_TensorHandleGetStatus(TFE_TensorHandle* h,
                                                         TF_Status* status);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 22:37:46 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/hash/Crc32cHashFunction.java

        static final int INVERSE_COMPUTE_FOR_WORD_OF_ALL_1S = 0xeee3ddcd;
    
        static int computeForWord(int word) {
          return STRIDE_TABLE[3][word & 0xFF]
              ^ STRIDE_TABLE[2][(word >>> 8) & 0xFF]
              ^ STRIDE_TABLE[1][(word >>> 16) & 0xFF]
              ^ STRIDE_TABLE[0][word >>> 24];
        }
    
        static int combine(int csum, int crc) {
          csum ^= crc;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 21.3K bytes
    - Viewed (0)
Back to top