Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,426 for ahead (0.42 sec)

  1. pkg/kubelet/metrics/collectors/cri_metrics.go

    		return nil, err
    	}
    	// If Timestamp is 0, then the runtime did not cache the result.
    	// In this case, a cached result is a metric that was collected ahead of time,
    	// as opposed to on-demand.
    	// If the metric was requested as needed, then Timestamp==0.
    	if m.Timestamp == 0 {
    		return pm, nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 23 13:24:29 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  2. src/net/smtp/smtp_test.go

    			if data[i] == "221 Goodbye" {
    				return
    			}
    			read := false
    			for !read || data[i] == "354 Go ahead" {
    				msg, err := tc.ReadLine()
    				bcmdbuf.Write([]byte(msg + "\r\n"))
    				read = true
    				if err != nil {
    					t.Errorf("Read error: %v", err)
    					return
    				}
    				if data[i] == "354 Go ahead" && msg == "." {
    					break
    				}
    			}
    		}
    	}(strings.Split(server, "\r\n"))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/aot/flags.cc

           "fetch nodes will be dumped to stdout in a comma-separated list.  "
           "Typically used to format arguments for other tools, e.g. "
           "freeze_graph."},
          // Flags controlling the XLA ahead-of-time compilation, that correspond to
          // the fields of xla::cpu::CpuAotCompilationOptions.
          //
          // TODO(toddw): The following flags also need to be supported:
          //   --xla_cpu_llvm_opt_level
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 05 16:55:24 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/ResolutionFailureDescriberRegistry.java

            registry.registerDescriber(VariantAwareAmbiguousResolutionFailure.class, MissingAttributeAmbiguousGraphVariantsFailureDescriber.class); // Added ahead of AmbiguousGraphVariantsFailureDescriber so the more specific ambiguity case is checked first
            registry.registerDescriber(VariantAwareAmbiguousResolutionFailure.class, AmbiguousGraphVariantsFailureDescriber.class);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:29:17 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  5. docs/en/docs/history-design-future.md

    Many developers and teams already depend on **FastAPI** for their projects (including me and my team).
    
    But still, there are many improvements and features to come.
    
    **FastAPI** has a great future ahead.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. cni/pkg/repair/netns.go

    // /var/run/netns/<name>. However, this pattern is not ubiquitous. Some platforms bind mount to other places. As we run
    // in a pod, we cannot just access any arbitrary file they happen to bind mount in, as we don't know ahead of time where
    // it might be.
    //
    // Instead, we rely directly on the procfs.
    // This rules out two possible methods:
    // * use crictl to inspect the pod; this returns the bind-mounted network namespace file.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 04:07:10 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sync/semaphore/semaphore.go

    			// readers, and one writer.  Each reader can Acquire(1) to obtain a read
    			// lock.  The writer can Acquire(N) to obtain a write lock, excluding all
    			// of the readers.  If we allow the readers to jump ahead in the queue,
    			// the writer will starve — there is always one token available for every
    			// reader.
    			break
    		}
    
    		s.cur += w.n
    		s.waiters.Remove(next)
    		close(w.ready)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/internal/http/HttpHeaders.kt

     * Returns true if the response headers and status indicate that this response has a (possibly
     * 0-length) body. See RFC 7231.
     */
    fun Response.promisesBody(): Boolean {
      // HEAD requests never yield a body regardless of the response headers.
      if (request.method == "HEAD") {
        return false
      }
    
      val responseCode = code
      if ((responseCode < HTTP_CONTINUE || responseCode >= 200) &&
        responseCode != HTTP_NO_CONTENT &&
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  9. src/cmd/go/internal/vcweb/svn.go

    func (h *svnHandler) Handler(dir string, env []string, logger *log.Logger) (http.Handler, error) {
    	if !h.Available() {
    		return nil, ServerNotInstalledError{name: "svn"}
    	}
    
    	// Go ahead and start the listener now, so that if it fails (for example, due
    	// to port exhaustion) we can return an error from the Handler method instead
    	// of serving an error for each individual HTTP request.
    	h.listenOnce.Do(func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:44:48 UTC 2022
    - 5K bytes
    - Viewed (0)
  10. src/internal/coverage/cfile/apis.go

    	// running ClearCounters.
    
    	for _, c := range cl {
    		sd := unsafe.Slice((*atomic.Uint32)(unsafe.Pointer(c.Counters)), int(c.Len))
    		for i := 0; i < len(sd); i++ {
    			// Skip ahead until the next non-zero value.
    			sdi := sd[i].Load()
    			if sdi == 0 {
    				continue
    			}
    			// We found a function that was executed; clear its counters.
    			nCtrs := sdi
    			for j := 0; j < int(nCtrs); j++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top