Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 996 for ahead (0.14 sec)

  1. tensorflow/compiler/aot/tfcompile_main.cc

    #include "tensorflow/core/platform/protobuf.h"
    #include "tensorflow/core/util/command_line_flags.h"
    
    namespace tensorflow {
    namespace tfcompile {
    
    const char kUsageHeader[] =
        "tfcompile performs ahead-of-time compilation of a TensorFlow graph,\n"
        "resulting in an object file compiled for your target architecture, and a\n"
        "header file that gives access to the functionality in the object file.\n"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/ResidualProgram.kt

     * against a given [target][ProgramTarget].
     *
     * @see PartialEvaluator.reduce
     */
    internal
    sealed class ResidualProgram {
    
        /**
         * A static residue, can be compiled ahead of time.
         */
        data class Static(val instructions: List<Instruction>) : ResidualProgram() {
    
            constructor(vararg instructions: Instruction) :
                this(instructions.toList())
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. src/image/format.go

    	formatsMu.Lock()
    	formats, _ := atomicFormats.Load().([]format)
    	atomicFormats.Store(append(formats, format{name, magic, decode, decodeConfig}))
    	formatsMu.Unlock()
    }
    
    // A reader is an io.Reader that can also peek ahead.
    type reader interface {
    	io.Reader
    	Peek(int) ([]byte, error)
    }
    
    // asReader converts an io.Reader to a reader.
    func asReader(r io.Reader) reader {
    	if rr, ok := r.(reader); ok {
    		return rr
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. src/net/tcpsockopt_windows.go

    		// provide one.
    		interval = defaultKeepAliveInterval
    	case idle < 0 && interval < 0:
    		// Nothing to do, just bail out.
    		return nil
    	case idle >= 0 && interval >= 0:
    		// Go ahead.
    	}
    
    	if idle == 0 {
    		idle = defaultTCPKeepAliveIdle
    	}
    	if interval == 0 {
    		interval = defaultTCPKeepAliveInterval
    	}
    
    	// The kernel expects milliseconds so round to next highest
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:35 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top