Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 613 for stops (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/cmd/compile/internal/types2/api.go

    	// Secondary errors (for instance, to enumerate all types
    	// involved in an invalid recursive type declaration) have
    	// error strings that start with a '\t' character.
    	// If Error == nil, type-checking stops with the first
    	// error found.
    	Error func(err error)
    
    	// An importer is used to import packages referred to from
    	// import declarations.
    	// If the installed importer implements ImporterFrom, the type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:48:53 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types/size.go

    // until after T has been initialized to be a pointer to that struct.
    // similarly, during import processing structs may be used
    // before their definition.  in those situations, calling
    // DeferCheckSize() stops width calculations until
    // ResumeCheckSize() is called, at which point all the
    // CalcSizes that were deferred are executed.
    // CalcSize should only be called when the type's size
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 15K bytes
    - Viewed (0)
  10. src/net/tcpsock.go

    		return nil, syscall.EINVAL
    	}
    	c, err := l.accept()
    	if err != nil {
    		return nil, &OpError{Op: "accept", Net: l.fd.net, Source: nil, Addr: l.fd.laddr, Err: err}
    	}
    	return c, nil
    }
    
    // Close stops listening on the TCP address.
    // Already Accepted connections are not closed.
    func (l *TCPListener) Close() error {
    	if !l.ok() {
    		return syscall.EINVAL
    	}
    	if err := l.close(); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 03:10:07 UTC 2024
    - 13.7K bytes
    - Viewed (0)
Back to top