Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 526 for span1 (0.13 sec)

  1. src/runtime/mwbbuf.go

    			continue
    		}
    		obj, span, objIndex := findObject(ptr, 0, 0)
    		if obj == 0 {
    			continue
    		}
    		// TODO: Consider making two passes where the first
    		// just prefetches the mark bits.
    		mbits := span.markBitsForIndex(objIndex)
    		if mbits.isMarked() {
    			continue
    		}
    		mbits.setMarked()
    
    		// Mark span.
    		arena, pageIdx, pageMask := pageIndexOf(span.base())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  2. docs/zh/docs/contributing.md

    ### 实时文档
    
    在本地开发时,可以使用该脚本构建站点并检查所做的任何更改,并实时重载:
    
    <div class="termy">
    
    ```console
    $ python ./scripts/docs.py live
    
    <span style="color: green;">[INFO]</span> Serving on http://127.0.0.1:8008
    <span style="color: green;">[INFO]</span> Start watching changes
    <span style="color: green;">[INFO]</span> Start detecting changes
    ```
    
    </div>
    
    文档服务将运行在 `http://127.0.0.1:8008`。
    
    这样,你可以编辑文档 / 源文件并实时查看更改。
    
    !!! tip
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Mar 13 11:57:21 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/tf_to_hlo_compiler.h

      // XlaCompilationResult pointed to by `result`.
      virtual Status Compile(const XlaCompiler::CompileOptions& options,
                             const NameAttrList& function,
                             absl::Span<const XlaArgument> args,
                             XlaCompilationResult* result) = 0;
    
      // Compiles a Tensorflow single op to an HloModuleProto stored in the
      // XlaCompilationResult pointed to by `result`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 12 08:49:52 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/gradle_optimizations.adoc

        <a class="badge" href="https://dpeuniversity.gradle.com/app/courses/ec69d0b8-9171-4969-ac3e-82dea16f87b0/" target="_blank">
            <span class="badge-type button--blue">LEARN</span>
            <span class="badge-text">Incremental Builds and Build Caching with Gradle&nbsp;&nbsp;&nbsp;&gt;</span>
        </a>
    </div>
    ++++
    
    Gradle uses two main features to reduce build time: *incremental builds* and *build caching*.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part5_gradle_inc_builds.adoc

        <a class="badge" href="https://dpeuniversity.gradle.com/app/courses/ec69d0b8-9171-4969-ac3e-82dea16f87b0/" target="_blank">
            <span class="badge-type button--blue">LEARN</span>
            <span class="badge-text">Incremental Builds and Build Caching with Gradle&nbsp;&nbsp;&nbsp;&gt;</span>
        </a>
    </div>
    ++++
    
    Learn the basics of Gradle's incremental builds.
    
    ****
    **In this section you will:**
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. platforms/enterprise/enterprise-workers/src/main/java/org/gradle/internal/operations/logging/StyledTextBuildOperationProgressDetails.java

     *
     * See LoggingBuildOperationProgressBroadcaster.
     *
     * @since 7.4
     */
    public interface StyledTextBuildOperationProgressDetails {
    
        List<? extends Span> getSpans();
    
        String getCategory();
    
        LogEventLevel getLevel();
    
        interface Span {
    
            /**
             * Always a value name of {@code org.gradle.internal.logging.text.StyledTextOutput.Style}.
             */
            String getStyleName();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/tf_graph_to_hlo_compiler.cc

                                         absl::Span<const XlaArgument> args,
                                         XlaCompilationResult* result) {
      return ADD_SOURCE_LOCATION(
          xla_compiler_.CompileFunction(options, function, args, result));
    }
    
    Status TfGraphToHloCompiler::CompileSingleOp(
        const XlaCompiler::CompileOptions& options, const OpKernelContext* ctx,
        absl::Span<const XlaArgument> args, XlaCompilationResult* result) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 09 00:37:01 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/device_util_test.cc

    #include "tensorflow/core/lib/core/status_test_util.h"
    #include "tensorflow/core/platform/test.h"
    
    namespace tensorflow {
    namespace {
    
    Status PickDeviceHelper(bool allow_mixing_unknown_and_cpu,
                            absl::Span<const absl::string_view> device_names,
                            string* result) {
      jit::DeviceInfoCache cache;
      jit::DeviceSet device_set;
      for (absl::string_view name : device_names) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 5K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/tf_graph_to_hlo_compiler.h

      // XlaCompilationResult pointed to by `result` by calling
      // XlaCompiler::CompileFunction.
      Status Compile(const XlaCompiler::CompileOptions& options,
                     const NameAttrList& function,
                     absl::Span<const XlaArgument> args,
                     XlaCompilationResult* result) override;
    
      // Compiles a Tensorflow single op into an HloModuleProto stored in the
      // XlaCompilationResult pointed to by `result` by calling
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 12 08:49:52 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  10. tools/docker-builder/builder/crane.go

    	arch string
    	name string
    }
    
    var (
    	bases   = map[baseKey]v1.Image{}
    	basesMu sync.RWMutex
    )
    
    func WarmBase(ctx context.Context, architectures []string, baseImages ...string) {
    	_, span := tracing.Start(ctx, "RunCrane")
    	defer span.End()
    	basesMu.Lock()
    	wg := sync.WaitGroup{}
    	wg.Add(len(baseImages) * len(architectures))
    	resolvedBaseImages := make([]v1.Image, len(baseImages)*len(architectures))
    	keys := []baseKey{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 01:07:39 UTC 2023
    - 9K bytes
    - Viewed (0)
Back to top