Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 212 for Combine (0.13 sec)

  1. android/guava/src/com/google/common/collect/ImmutableList.java

        @CanIgnoreReturnValue
        @Override
        public Builder<E> addAll(Iterator<? extends E> elements) {
          super.addAll(elements);
          return this;
        }
    
        @CanIgnoreReturnValue
        Builder<E> combine(Builder<E> other) {
          addAll(other.contents, other.size);
          return this;
        }
    
        /**
         * Returns a newly-created {@code ImmutableList} based on the contents of the {@code Builder}.
         */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/gc.go

    }
    
    // pluginPath computes the package path for a plugin main package.
    //
    // This is typically the import path of the main package p, unless the
    // plugin is being built directly from source files. In that case we
    // combine the package build ID with the contents of the main package
    // source files. This allows us to identify two different plugins
    // built from two source files with the same name.
    func pluginPath(a *Action) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:37:44 UTC 2024
    - 23K bytes
    - Viewed (0)
  3. src/cmd/dist/test.go

    func testName(pkg, variant string) string {
    	name := pkg
    	if variant != "" {
    		name += ":" + variant
    	}
    	return name
    }
    
    // goTest represents all options to a "go test" command. The final command will
    // combine configuration from goTest and tester flags.
    type goTest struct {
    	timeout  time.Duration // If non-zero, override timeout
    	short    bool          // If true, force -short
    	tags     []string      // Build tags
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/translate/export_graphdef.cc

                              absl::flat_hash_set<Node*>* control_ret_nodes) {
      mlir::StatusScopedDiagnosticHandler sh(module.getContext());
      if (failed(VerifyExportSuitable(module))) return sh.ConsumeStatus();
      return sh.Combine(
          Exporter::Convert(module, configs, graph, flib_def, control_ret_nodes));
    }
    
    Status ConvertMlirToGraph(mlir::ModuleOp module,
                              const GraphExportConfig& configs,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/api/v2/tf_executor_to_graph.cc

                              absl::flat_hash_set<Node*>* control_ret_nodes) {
      mlir::StatusScopedDiagnosticHandler sh(module.getContext());
      if (failed(VerifyExportSuitable(module))) return sh.ConsumeStatus();
      return sh.Combine(
          Exporter::Convert(module, configs, graph, flib_def, control_ret_nodes));
    }
    
    Status ConvertMlirToGraph(mlir::ModuleOp module,
                              const GraphExportConfig& configs,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 23:04:51 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/ImmutableList.java

        @CanIgnoreReturnValue
        @Override
        public Builder<E> addAll(Iterator<? extends E> elements) {
          super.addAll(elements);
          return this;
        }
    
        @CanIgnoreReturnValue
        Builder<E> combine(Builder<E> builder) {
          checkNotNull(builder);
          add(builder.contents, builder.size);
          return this;
        }
    
        /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 29.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/build.gradle

            compositeBuildsHierarchicalMultirepo {
                sampleDirectory = samplesRoot.dir("build-organization/composite-builds/hierarchical-multirepo")
                description = "Defining and using a composite build to combine multiple independent builds."
                category = "Build organization"
            }
    
            compositeBuildsPluginDevelopment {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:37:11 UTC 2024
    - 42K bytes
    - Viewed (0)
  8. docs/en/docs/alternatives.md

    It is the recommended server for Starlette and **FastAPI**.
    
    !!! check "**FastAPI** recommends it as"
        The main web server to run **FastAPI** applications.
    
        You can combine it with Gunicorn, to have an asynchronous multi-process server.
    
        Check more details in the [Deployment](deployment/index.md){.internal-link target=_blank} section.
    
    ## Benchmarks and speed
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  9. cmd/xl-storage-format-v2.go

    	// Marshal metadata
    	crc := hashDeterministicBytes(c.MetaSys)
    	c.MetaSys = nil
    	if bts, err := c.MarshalMsg(metaDataPoolGet()); err == nil {
    		crc ^= xxhash.Sum64(bts)
    		metaDataPoolPut(bts)
    	}
    
    	// Combine upper and lower part
    	var tmp [4]byte
    	binary.LittleEndian.PutUint32(tmp[:], uint32(crc^(crc>>32)))
    	return tmp
    }
    
    // UsesDataDir returns true if this object version uses its data directory for
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  10. tensorflow/BUILD

            ":with_tpu_support_define",
            ":with_tpu_support_flag",
        ],
        visibility = ["//visibility:public"],
    )
    
    # Specifies via a config setting if this is a mobile build or not, makes
    # it easier to combine settings later.
    selects.config_setting_group(
        name = "mobile",
        match_any = [
            ":android",
            ":chromiumos",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
Back to top