Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 385 for Stopping (0.11 sec)

  1. pkg/kubelet/cm/dra/plugin/noderesources.go

    	logger := klog.FromContext(ctx)
    	logger = klog.LoggerWithValues(logger, "driverName", driverName)
    	logger.Info("Starting to monitor node resources of the plugin")
    	defer func() {
    		r := recover()
    		logger.Info("Stopping to monitor node resources of the plugin", "reason", context.Cause(ctx), "err", ctx.Err(), "recover", r)
    	}()
    
    	backOff := flowcontrol.NewBackOffWithJitter(retryPeriod, maxRetryPeriod, backoffFactor)
    	backOffID := "retry"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 20:12:53 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. src/time/zoneinfo_read.go

    		return 0, false
    	}
    	return p[0], true
    }
    
    // rest returns the rest of the data in the buffer.
    func (d *dataIO) rest() []byte {
    	r := d.p
    	d.p = nil
    	return r
    }
    
    // Make a string by stopping at the first NUL
    func byteString(p []byte) string {
    	if i := bytealg.IndexByte(p, 0); i != -1 {
    		p = p[:i]
    	}
    	return string(p)
    }
    
    var errBadData = errors.New("malformed time zone information")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  3. src/cmd/cover/cover_test.go

    	// Ignore white space differences.
    	// Break into lines, then compare by breaking into words.
    	goldenLines := strings.Split(string(golden), "\n")
    	outLines := strings.Split(out.String(), "\n")
    	// Compare at the line level, stopping at first different line so
    	// we don't generate tons of output if there's an inserted or deleted line.
    	for i, goldenLine := range goldenLines {
    		if i >= len(outLines) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 07 16:54:28 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  4. src/index/suffixarray/sais2.go

    	numLMS := 0
    	lastB := int64(-1)
    	bucket = bucket[:256] // eliminate bounds check for bucket[c1] below
    
    	// The next stanza of code (until the blank line) loop backward
    	// over text, stopping to execute a code body at each position i
    	// such that text[i] is an L-character and text[i+1] is an S-character.
    	// That is, i+1 is the position of the start of an LMS-substring.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  5. src/crypto/tls/cipher_suites.go

    // cipher suites enabled, especially on the server side where we get the last
    // word, since there are no known downgrade attacks on cipher suites selection.
    //
    // The list is sorted by applying the following priority rules, stopping at the
    // first (most important) applicable one:
    //
    //   - Anything else comes before RC4
    //
    //     RC4 has practically exploitable biases. See https://www.rc4nomore.com.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  6. src/database/sql/driver/driver.go

    // the driver more control to handle Go and database types beyond the default
    // [Value] types allowed.
    //
    // The [database/sql] package checks for value checkers in the following order,
    // stopping at the first found match: Stmt.NamedValueChecker, Conn.NamedValueChecker,
    // Stmt.ColumnConverter, [DefaultParameterConverter].
    //
    // If CheckNamedValue returns [ErrRemoveArgument], the [NamedValue] will not be included in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 09:04:12 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  7. src/text/template/doc.go

    		T0 is executed; otherwise, dot is set to the successive elements
    		of the array, slice, or map and T1 is executed.
    
    	{{break}}
    		The innermost {{range pipeline}} loop is ended early, stopping the
    		current iteration and bypassing all remaining iterations.
    
    	{{continue}}
    		The current iteration of the innermost {{range pipeline}} loop is
    		stopped, and the loop starts the next iteration.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/AbstractScheduledService.java

          runningTask.cancel(false);
          executorService.execute(
              () -> {
                try {
                  lock.lock();
                  try {
                    if (state() != State.STOPPING) {
                      // This means that the state has changed since we were scheduled. This implies
                      // that an execution of runOneIteration has thrown an exception and we have
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Dec 13 19:45:20 UTC 2023
    - 25.8K bytes
    - Viewed (0)
  9. src/runtime/gc_test.go

    	// and measuring the latency.
    	b.ResetTimer()
    	var ms runtime.MemStats
    	for i := 0; i < b.N; i++ {
    		// Sleep for a bit, otherwise we're just going to keep
    		// stopping the world and no one will get to do anything.
    		time.Sleep(100 * time.Millisecond)
    		start := time.Now()
    		runtime.ReadMemStats(&ms)
    		latencies = append(latencies, time.Since(start))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 22:33:52 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  10. build/common.sh

        return 0
      fi
    
      kube::log::error "Could not connect to rsync container."
      return 1
    }
    
    function kube::build::stop_rsyncd_container() {
      V=3 kube::log::status "Stopping any currently running rsyncd container"
      unset KUBE_RSYNC_ADDR
      kube::build::destroy_container "${KUBE_RSYNC_CONTAINER_NAME}"
    }
    
    function kube::build::rsync {
      local -a rsync_opts=(
        --archive
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 26.5K bytes
    - Viewed (0)
Back to top