Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 202 for gStates (0.17 sec)

  1. cmd/erasure-healing-common.go

    	for i, meta := range partsMetadata {
    		if fi.XLV1 == meta.XLV1 {
    			continue
    		}
    		onlineDisks[i] = nil
    	}
    }
    
    // Notes:
    // There are 5 possible states a disk could be in,
    // 1. __online__             - has the latest copy of xl.meta - returned by listOnlineDisks
    //
    // 2. __offline__            - err == errDiskNotFound
    //
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  2. src/net/http/httptest/server.go

    	// Close blocks until all requests are finished.
    	wg sync.WaitGroup
    
    	mu     sync.Mutex // guards closed and conns
    	closed bool
    	conns  map[net.Conn]http.ConnState // except terminal states
    
    	// client is configured for use with the server.
    	// Its transport is automatically closed when Close is called.
    	client *http.Client
    }
    
    func newLocalListener() net.Listener {
    	if serveFlag != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 17:26:10 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  3. src/sort/zsortfunc.go

    		rotate_func(data, start, m, end)
    	}
    	if a < start && start < mid {
    		symMerge_func(data, a, start, mid)
    	}
    	if mid < end && end < b {
    		symMerge_func(data, mid, end, b)
    	}
    }
    
    // rotate_func rotates two consecutive blocks u = data[a:m] and v = data[m:b] in data:
    // Data of the form 'x u v y' is changed to 'x v u y'.
    // rotate performs at most b-a many calls to data.Swap,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 13 20:16:24 UTC 2022
    - 11.5K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/AtomicLongMap.java

        return remove(key, 0);
      }
    
      /**
       * Removes all mappings from this map whose values are zero.
       *
       * <p>This method is not atomic: the map may be visible in intermediate states, where some of the
       * zero values have been removed and others have not.
       */
      public void removeAllZeros() {
        Iterator<Entry<K, AtomicLong>> entryIterator = map.entrySet().iterator();
    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;
    
    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

    	// TODO not all servers are synchronized on caches.  It is possible for a stale one to still be creating things.
    	// Once we have a mechanism for servers to indicate their states, we should check that for concurrence.
    	err = wait.PollImmediate(5*time.Second, 1*time.Minute, func() (bool, error) {
    		listObj, err := crClient.List(ctx, nil)
    		if err != nil {
    			return false, err
    		}
    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. src/sort/zsortinterface.go

    		rotate(data, start, m, end)
    	}
    	if a < start && start < mid {
    		symMerge(data, a, start, mid)
    	}
    	if mid < end && end < b {
    		symMerge(data, mid, end, b)
    	}
    }
    
    // rotate rotates two consecutive blocks u = data[a:m] and v = data[m:b] in data:
    // Data of the form 'x u v y' is changed to 'x v u y'.
    // rotate performs at most b-a many calls to data.Swap,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 13 20:16:24 UTC 2022
    - 11.2K bytes
    - Viewed (0)
  8. src/net/http/roundtrip_js.go

    // RoundTrip implements the [RoundTripper] interface using the WHATWG Fetch API.
    func (t *Transport) RoundTrip(req *Request) (*Response, error) {
    	// The Transport has a documented contract that states that if the DialContext or
    	// DialTLSContext functions are set, they will be used to set up the connections.
    	// If they aren't set then the documented contract is to use Dial or DialTLS, even
    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. docs/en/docs/tutorial/security/simple-oauth2.md

    But for the login *path operation*, we need to use these names to be compatible with the spec (and be able to, for example, use the integrated API documentation system).
    
    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`".
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  10. tensorflow/c/eager/c_api_experimental.h

                                                        TF_Status* status);
    
    // Get task states from the Coordination Service.
    TF_CAPI_EXPORT extern void TFE_GetTaskStates(TFE_Context* ctx,
                                                 const TF_Buffer& tasks,
                                                 void* states, TF_Status* status);
    
    TF_CAPI_EXPORT extern void TFE_WaitAtBarrier(TFE_Context* ctx,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 22:37:46 UTC 2024
    - 39.5K bytes
    - Viewed (0)
Back to top