Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,003 for stops (0.07 sec)

  1. src/encoding/xml/read_test.go

    http://codereview.appspot.com/116075/diff/1/2
    
    The fundamental problem was that the tab code was
    not being told what column the text began in, so it
    didn't know where to put the tab stops.  Another problem
    was that some of the code assumed that string byte
    offsets were the same as column offsets, which is only
    true if there are no tabs.
    
    In the process of fixing this, I cleaned up the arguments
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/internal/connection/RealCall.kt

        val e = InterruptedIOException("timeout")
        if (cause != null) e.initCause(cause)
        @Suppress("UNCHECKED_CAST") // E is either IOException or IOException?
        return e as E
      }
    
      /**
       * Stops applying the timeout before the call is entirely complete. This is used for WebSockets
       * and duplex calls where the timeout only applies to the initial setup.
       */
      fun timeoutEarlyExit() {
        check(!timeoutEarlyExit)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  3. src/cmd/go/internal/generate/generate.go

    	for i, word := range words {
    		words[i] = os.Expand(word, g.expandVar)
    	}
    	return words
    }
    
    var stop = fmt.Errorf("error in generation")
    
    // errorf logs an error message prefixed with the file and line number.
    // It then exits the program (with exit status 1) because generation stops
    // at the first error.
    func (g *Generator) errorf(format string, args ...any) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 29 19:39:24 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  4. src/path/filepath/path.go

    // returns a non-nil error, Walk stops entirely and returns that error.
    //
    // The err argument reports an error related to path, signaling that Walk
    // will not walk into that directory. The function can decide how to
    // handle that error; as described earlier, returning the error will
    // cause Walk to stop walking the entire tree.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/dra/plugin/noderesources.go

    // all responses that it gets for processing in the sync method. It keeps
    // retrying until an error or EOF response indicates that no further data is
    // going to be sent, then watch resources of the plugin stops until it
    // re-registers.
    func (c *nodeResourcesController) monitorPlugin(ctx context.Context, active *activePlugin, driverName string, pluginInstance *plugin) {
    	logger := klog.FromContext(ctx)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 20:12:53 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  6. cluster/gce/windows/smoke-test.sh

    function test_windows_pod_to_internet {
      echo "TEST: ${FUNCNAME[0]}"
      local windows_command_pod
      windows_command_pod="$(get_windows_command_pod_name)"
      # A stable (hopefully) HTTP server provided by Cloudflare. If this ever stops
      # working, we can request from 8.8.8.8 (Google DNS) using https instead.
      local internet_ip="1.1.1.1"
    
      if ! $kubectl exec "$windows_command_pod" -- powershell.exe \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_driver.h

    // adds the operands and results to the worklist. If there are any conflicts
    // (for example, there are quantization parameters propagated from the previous
    // iteration), this process stops if the existing parameters are the immutable,
    // or adding `requantize` op to resolve the conflicts.
    //
    // After the algorithm is converged, pairs of `quantfork::QuantizeCastOp` and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:42:17 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  8. src/crypto/tls/quic.go

    		return QUICEvent{Kind: QUICNoEvent}
    	}
    	e := qs.events[qs.nextEvent]
    	qs.events[qs.nextEvent] = QUICEvent{} // zero out references to data
    	qs.nextEvent++
    	return e
    }
    
    // Close closes the connection and stops any in-progress handshake.
    func (q *QUICConn) Close() error {
    	if q.conn.quic.cancel == nil {
    		return nil // never started
    	}
    	q.conn.quic.cancel()
    	for range q.conn.quic.blockedc {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  9. docs/en/docs/deployment/concepts.md

    ## Previous Steps Before Starting
    
    There are many cases where you want to perform some steps **before starting** your application.
    
    For example, you might want to run **database migrations**.
    
    But in most cases, you will want to perform these steps only **once**.
    
    So, you will want to have a **single process** to perform those **previous steps**, before starting the application.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 18K bytes
    - Viewed (0)
  10. src/runtime/mgclimit.go

    		if e.stamp.CompareAndSwap(uint64(old), uint64(new)) {
    			break
    		}
    	}
    	return
    }
    
    // stop stops the active limiter event. Throws if the
    //
    // The caller must be non-preemptible across the event. See start as to why.
    func (e *limiterEvent) stop(typ limiterEventType, now int64) {
    	var stamp limiterEventStamp
    	for {
    		stamp = limiterEventStamp(e.stamp.Load())
    		if stamp.typ() != typ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 22:07:41 UTC 2024
    - 17.3K bytes
    - Viewed (0)
Back to top