Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 82 for hiter (2.94 sec)

  1. tensorflow/compiler/jit/xla_gpu_device.cc

        VLOG(1) << "Failed to create XLA_GPU device: " << platform.status();
        return absl::OkStatus();
      }
    
      auto iter = session_options.config.device_count().find("GPU");
      if (iter != session_options.config.device_count().end() &&
          iter->second == 0) {
        // Device count for GPU is 0.
        return absl::OkStatus();
      }
    
      string allowed_gpus =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. docs/de/docs/reference/apirouter.md

    # `APIRouter`-Klasse
    
    Hier sind die Referenzinformationen für die Klasse `APIRouter` mit all ihren Parametern, Attributen und Methoden.
    
    Sie können die `APIRouter`-Klasse direkt von `fastapi` importieren:
    
    ```python
    from fastapi import APIRouter
    ```
    
    ::: fastapi.APIRouter
        options:
            members:
                - websocket
                - include_router
                - get
                - put
                - post
                - delete
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:16:35 UTC 2024
    - 538 bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/ExecutionTimeTaskConfigurationIntegrationTest.groovy

            "actions.remove(actions[0])"                                | "Task.getActions().remove()"
            "actions.clear()"                                           | "Task.getActions().clear()"
            "def iter = actions.iterator(); iter.next(); iter.remove()" | "Task.getActions().remove()"
            "actions = []"                                              | "Task.setActions(List<Action>)"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  4. docs/de/docs/learn/index.md

    # Lernen
    
    Hier finden Sie die einführenden Kapitel und Tutorials zum Erlernen von **FastAPI**.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jan 23 11:22:17 UTC 2024
    - 227 bytes
    - Viewed (0)
  5. src/internal/fmtsort/sort.go

    	// of a concurrent map update. The runtime is responsible for
    	// yelling loudly if that happens. See issue 33275.
    	n := mapValue.Len()
    	sorted := make(SortedMap, 0, n)
    	iter := mapValue.MapRange()
    	for iter.Next() {
    		sorted = append(sorted, KeyValue{iter.Key(), iter.Value()})
    	}
    	slices.SortStableFunc(sorted, func(a, b KeyValue) int {
    		return compare(a.Key, b.Key)
    	})
    	return sorted
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:31:45 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. docs/de/docs/reference/index.md

    # Referenz – Code-API
    
    Hier ist die Referenz oder Code-API, die Klassen, Funktionen, Parameter, Attribute und alle FastAPI-Teile, die Sie in Ihren Anwendungen verwenden können.
    
    Wenn Sie **FastAPI** lernen möchten, ist es viel besser, das [FastAPI-Tutorial](https://fastapi.tiangolo.com/tutorial/) zu lesen.
    
    !!! note "Hinweis Deutsche Übersetzung"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jan 23 11:22:17 UTC 2024
    - 471 bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/host_runtime/tfrt_ops.cc

      llvm::SmallVector<ResourceHandleValueAndId, 4> resource_vec;
      llvm::StringRef device = GetDeviceOrEmpty(getOperation());
    
      for (const auto &iter : llvm::enumerate(getResults())) {
        auto index = iter.index();
        if (mlir::isa<TF::ResourceType>(
                getElementTypeOrSelf(iter.value().getType()))) {
          resource_vec.push_back(GetResourceHandleValueAndIdBase(
              mlir::cast<mlir::StringAttr>(getContainer()[index]).getValue(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  8. doc/next/6-stdlib/99-minor/iter/61897.md

    <!-- see ../../3-iter.md -->...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 20:33:25 UTC 2024
    - 29 bytes
    - Viewed (0)
  9. src/go/doc/comment/std.go

    var stdPkgs = []string{
    	"bufio",
    	"bytes",
    	"cmp",
    	"context",
    	"crypto",
    	"embed",
    	"encoding",
    	"errors",
    	"expvar",
    	"flag",
    	"fmt",
    	"hash",
    	"html",
    	"image",
    	"io",
    	"iter",
    	"log",
    	"maps",
    	"math",
    	"mime",
    	"net",
    	"os",
    	"path",
    	"plugin",
    	"reflect",
    	"regexp",
    	"runtime",
    	"slices",
    	"sort",
    	"strconv",
    	"strings",
    	"structs",
    	"sync",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 21:19:39 UTC 2024
    - 671 bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/translate/upgrade_graph.cc

                                  attr_def.type() == "string";
                         }))
          return false;
    
        auto iter = node_def.attr().find("shared_name");
        if (iter == node_def.attr().end()) return true;
        return iter->second.s().empty();
      };
    
      FunctionDefLibrary* library = gdef.mutable_library();
      auto flib_def = library ? std::make_unique<FunctionLibraryDefinition>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 14:33:47 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top