Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 800 for stops (0.05 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. 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)
  5. 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)
  6. 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)
  7. 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)
  8. tensorflow/compiler/mlir/quantization/stablehlo/passes/replace_stablehlo_ops_in_main_function_with_xla_call_module_ops.cc

      }
    }
    
    // Duplicates small constants for each use.
    //
    // In the subsequent graph partitioning, constants for shape inference need to
    // be in the same subgraph. But graph partitioning stops at ops with multiple
    // uses. So here we duplicate small constants for each use so that if a
    // constant is useful for shape inference for multiple subgraphs, they can be
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintWriter.kt

                )
            )
        }
    
        /**
         * Stops all writers.
         *
         * **MUST ALWAYS BE CALLED**
         */
        fun close() {
            synchronized(this) {
                closestChangingValue?.let {
                    buildScopedSink.write(it)
                }
            }
            CompositeStoppable.stoppable(buildScopedWriter, projectScopedWriter).stop()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  10. src/text/template/exec.go

    // ExecuteTemplate applies the template associated with t that has the given name
    // to the specified data object and writes the output to wr.
    // If an error occurs executing the template or writing its output,
    // execution stops, but partial results may already have been written to
    // the output writer.
    // A template may be executed safely in parallel, although if parallel
    // executions share a Writer the output may be interleaved.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:22:24 UTC 2024
    - 32K bytes
    - Viewed (0)
Back to top