Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 276 for happens (0.17 sec)

  1. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

         *
         * If the server does not respond to each ping with a pong within `interval`, this client will
         * assume that connectivity has been lost. When this happens on a web socket the connection is
         * canceled and its listener is [notified][WebSocketListener.onFailure]. When it happens on an
         * HTTP/2 connection the connection is closed and any calls it is carrying
         * [will fail with an IOException][java.io.IOException].
         *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
  2. src/runtime/mgcscavenge.go

    //
    // Scavenging in Go happens on two fronts: there's the background
    // (asynchronous) scavenger and the allocation-time (synchronous) scavenger.
    //
    // The former happens on a goroutine much like the background sweeper which is
    // soft-capped at using scavengePercent of the mutator's time, based on
    // order-of-magnitude estimates of the costs of scavenging. The latter happens
    // when allocating pages from the heap.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/Futures.java

      // operation in the constructor.
      //
      // 1. In the listener that performs the callback. In this case it is fine since inputFuture is
      //    assigned prior to calling addListener, and addListener happens-before any invocation of the
      //    listener. Notably, this means that 'volatile' is unnecessary to make 'inputFuture' visible
      //    to the listener.
      //
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  4. src/testing/testing.go

    		if t.Failed() {
    			numFailed.Add(1)
    		}
    
    		// Check if the test panicked or Goexited inappropriately.
    		//
    		// If this happens in a normal test, print output but continue panicking.
    		// tRunner is called in its own goroutine, so this terminates the process.
    		//
    		// If this happens while fuzzing, recover from the panic and treat it like a
    		// normal failure. It's important that the process keeps running in order to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  5. guava/src/com/google/common/util/concurrent/Futures.java

      // operation in the constructor.
      //
      // 1. In the listener that performs the callback. In this case it is fine since inputFuture is
      //    assigned prior to calling addListener, and addListener happens-before any invocation of the
      //    listener. Notably, this means that 'volatile' is unnecessary to make 'inputFuture' visible
      //    to the listener.
      //
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 64.1K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/listener.go

    	} else {
    		switch listenerProtocol {
    		case istionetworking.ListenerProtocolHTTP:
    			// Check if conflict happens
    			if currentListenerEntry != nil {
    				// Build HTTP listener. If current listener entry is using HTTP or protocol sniffing,
    				// append the service. Otherwise (TCP), change current listener to use protocol sniffing.
    				if currentListenerEntry.protocol.IsTCP() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    Such a failure indicates that a **dependency may have been compromised**.
    At this stage, you **must** perform manual verification and check what happens.
    Several things can happen:
    
    * a dependency was tampered in the local dependency cache of Gradle.
    This is usually harmless: erase the file from the cache and Gradle would redownload the dependency.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    	// trying different nodes. This should not happen when it has
    	// full knowledge about resource availability (=
    	// PodSchedulingContext.*.UnsuitableNodes is complete) but may happen
    	// when it doesn't (= PodSchedulingContext.*.UnsuitableNodes had to be
    	// truncated).
    	//
    	// Truncation only happens for very large clusters and then may slow
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

        (BinaryOp (TFL_ReshapeOp:$lhs $input, (Arith_ConstantOp:$shape $s)),
          (Arith_ConstantOp:$rhs $a), $act_fn),
        (TFL_ReshapeOp (BinaryOp $input, $rhs, $act_fn), $shape),
        // The broadcasting of "BinaryOp" only happens in the lower
        // dimensions, and the higher dimensions are same, so we know the
        // result and input of the "BinaryOp" in the source pattern have
        // the same shape, which is defined by `shape`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/buildlist.go

    				if !queued[dep] {
    					queue = append(queue, dep)
    					queued[dep] = true
    				}
    			}
    			if pkg.test != nil && !queued[pkg.test] {
    				queue = append(queue, pkg.test)
    				queued[pkg.test] = true
    			}
    
    			if !pathIsRoot[m.Path] {
    				if s := mg.Selected(m.Path); gover.ModCompare(m.Path, s, m.Version) < 0 {
    					roots = append(roots, m)
    					pathIsRoot[m.Path] = true
    				}
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
Back to top