Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 372 for need (0.09 sec)

  1. src/cmd/compile/internal/ssa/_gen/S390X.rules

    // 8-bit value to 64-bits.
    //
    // This is a hazard when folding sign- and zero-extensions since we need to
    // ensure not only that the value in the argument register is correctly
    // extended but also that it will still be correctly extended if it is
    // spilled and restored.
    //
    // In general this means we need type checks when the RHS of a rule is an
    // OpCopy (i.e. "(... x:(...) ...) -> x").
    
    // Merge double extensions.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/filesystem/filesystem_interface.h

      /// DEFAULT IMPLEMENTATION: Gets statistics about `path`. Needs `stat`.
      int64_t (*get_file_size)(const TF_Filesystem* filesystem, const char* path,
                               TF_Status* status);
    
      /// Translates `uri` to a filename for the filesystem
      ///
      /// A filesystem is registered for a specific scheme and all of the methods
      /// should work with URIs. Hence, each filesystem needs to be able to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
  3. fastapi/param_functions.py

            ),
        ] = None,
        include_in_schema: Annotated[
            bool,
            Doc(
                """
                To include (or not) this parameter field in the generated OpenAPI.
                You probably don't need it, but it's available.
    
                This affects the generated OpenAPI (e.g. visible at `/docs`).
                """
            ),
        ] = True,
        json_schema_extra: Annotated[
            Union[Dict[str, Any], None],
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 62.5K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ppc64/asm.go

    	// platforms.
    
    	// Find all relocations that reference dynamic imports.
    	// Reserve PLT entries for these symbols and generate call
    	// stubs. The call stubs need to live in .text, which is why we
    	// need to do this pass this early.
    
    	// Reserve PLT entry and generate symbol resolver
    	addpltsym(ctxt, ldr, r.Sym())
    
    	// The stub types are described in gencallstub.
    	stubType := 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewrite.go

    		// mode because all.bash runs the compiler lots of times,
    		// and we want the concatenation of all of those logs.
    		// This means, of course, that users need to rm the old log
    		// to get fresh data.
    		// TODO: all.bash runs compilers in parallel. Need to synchronize logging somehow?
    		w, err := os.OpenFile(filepath.Join(os.Getenv("GOROOT"), "src", "rulelog"),
    			os.O_CREATE|os.O_WRONLY|os.O_APPEND, 0666)
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  6. src/runtime/mgcscavenge.go

    // when allocating pages from the heap.
    //
    // The scavenger's primary goal is to bring the estimated heap RSS of the
    // application down to a goal.
    //
    // Before we consider what this looks like, we need to split the world into two
    // halves. One in which a memory limit is not set, and one in which it is.
    //
    // For the former, the goal is defined as:
    //   (retainExtraPercent+100) / 100 * (heapGoal / lastHeapGoal) * lastHeapInUse
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    |===
    
    
    [[sec:tool_chain_installation]]
    == Tool chain installation
    
    NOTE: Note that if you are using GCC then you currently need to install support for C+\+, even if you are not building from C++ source.
    This restriction will be removed in a future Gradle version.
    
    To build native software, you will need to have a compatible tool chain installed:
    
    
    [[sec:windows]]
    === Windows
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  8. src/cmd/dist/test.go

    }
    
    func (t *tester) maybeLogMetadata() error {
    	if t.compileOnly {
    		// We need to run a subprocess to log metadata. Don't do that
    		// on compile-only runs.
    		return nil
    	}
    	t.out("Test execution environment.")
    	// Helper binary to print system metadata (CPU model, etc). This is a
    	// separate binary from dist so it need not build with the bootstrap
    	// toolchain.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    Remember that when turning problems into warnings you might need to <<configuration_cache#config_cache:usage:invalidate, manually invalidate the cache>> in case of troubles.
    
    Step back and fix problems iteratively::
    When you feel you know enough about what needs to be fixed, take a step back and start iteratively fixing the most important problems.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  10. pkg/scheduler/internal/queue/scheduling_queue.go

    // newQueuedPodInfoForLookup builds a QueuedPodInfo object for a lookup in the queue.
    func newQueuedPodInfoForLookup(pod *v1.Pod, plugins ...string) *framework.QueuedPodInfo {
    	// Since this is only used for a lookup in the queue, we only need to set the Pod,
    	// and so we avoid creating a full PodInfo, which is expensive to instantiate frequently.
    	return &framework.QueuedPodInfo{
    		PodInfo:              &framework.PodInfo{Pod: pod},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
Back to top