Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 162 for below (0.2 sec)

  1. src/runtime/mgcpacer.go

    		headroom = memoryLimitMinHeapGoalHeadroom
    	}
    	if goal < headroom || goal-headroom < headroom {
    		goal = headroom
    	} else {
    		goal = goal - headroom
    	}
    	// Don't let us go below the live heap. A heap goal below the live heap doesn't make sense.
    	if goal < c.heapMarked {
    		goal = c.heapMarked
    	}
    	return goal
    }
    
    const (
    	// These constants determine the bounds on the GC trigger as a fraction
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    define a library called `helloworld`, Gradle will define, by default, a source set containing the C source files in the `src/helloworld/c` directory. It will use these source files to build the `helloworld` library. This is described in more detail below.
    
    For each component, Gradle defines one or more _binaries_ as output. To build a binary, Gradle will take the source files defined for the component, compile them as appropriate for the source language, and link the result into a binary...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  3. src/go/parser/parser.go

    			par := &list[i]
    			if typ := par.name; typ != nil {
    				par.typ = typ
    				par.name = nil
    			}
    		}
    		if tparams {
    			// This is the same error handling as below, adjusted for type parameters only.
    			// See comment below for details. (go.dev/issue/64534)
    			var errPos token.Pos
    			var msg string
    			if named == typed /* same as typed == 0 */ {
    				errPos = p.pos // position error at closing ]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  4. configure.py

                'TF_CUDA_VERSION',
                'TF_CUBLAS_VERSION',
                'TF_CUDNN_VERSION',
                'TF_TENSORRT_VERSION',
                'TF_NCCL_VERSION',
                'TF_CUDA_PATHS',
                # Items below are for backwards compatibility when not using
                # TF_CUDA_PATHS.
                'CUDA_TOOLKIT_PATH',
                'CUDNN_INSTALL_PATH',
                'NCCL_INSTALL_PATH',
                'NCCL_HDR_PATH',
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

        const string& name_in, const RewriteSubgraphFn& rewrite_subgraph_fn,
        bool reuse_existing_functions, FunctionLibraryDefinition* library) {
      // name_in is copied here because name may be modified below if
      // rewrite_subgraph_fn is true.
      string name = name_in;
      call_node_def_.set_op(name);
      call_node_def_.set_name(name);
      call_node_def_.set_device(device_);
    
      if (rewrite_subgraph_fn) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  6. src/runtime/mgcmark.go

    		debtBytes = int64(assistBytesPerWork * float64(scanWork))
    	}
    
    	// Steal as much credit as we can from the background GC's
    	// scan credit. This is racy and may drop the background
    	// credit below 0 if two mutators steal at the same time. This
    	// will just cause steals to fail until credit is accumulated
    	// again, so in the long run it doesn't really matter, but we
    	// do have to handle the negative credit case.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    system properties, environment variables and value suppliers read during the configuration phase.
    See the <<configuration_cache#config_cache:troubleshooting>> section below for more information.
    
    Keep reading to learn how to tweak the configuration cache, manually invalidate the state if something goes wrong and use the configuration cache from an IDE.
    
    [[config_cache:usage:enable]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  8. .bazelrc

    build:release_linux_base --linkopt="-lm"
    
    # We have some invalid linker scripts in the build,
    # so we need to disable this check
    build:release_linux_base --linkopt=-Wl,--undefined-version
    
    # Container environment settings below this point.
    # Use Python 3.X as installed in container image
    build:release_linux_base --action_env PYTHON_BIN_PATH="/usr/bin/python3"
    build:release_linux_base --action_env PYTHON_LIB_PATH="/usr/lib/tf_python"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  9. src/regexp/syntax/parse.go

    // parseVerticalBar handles a | in the input.
    func (p *parser) parseVerticalBar() {
    	p.concat()
    
    	// The concatenation we just parsed is on top of the stack.
    	// If it sits above an opVerticalBar, swap it below
    	// (things below an opVerticalBar become an alternation).
    	// Otherwise, push a new vertical bar.
    	if !p.swapVerticalBar() {
    		p.op(opVerticalBar)
    	}
    }
    
    // mergeCharClass makes dst = dst|src.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // The user didn't tell us whether ::std::wstring is available, so we need
    // to figure it out.
    // TODO(******@****.***): uses autoconf to detect whether ::std::wstring
    //   is available.
    
    // Cygwin 1.7 and below doesn't support ::std::wstring.
    // Solaris' libc++ doesn't support it either.  Android has
    // no support for it at least as recent as Froyo (2.2).
    # define GTEST_HAS_STD_WSTRING \
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
Back to top