Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 235 for hiter (0.18 sec)

  1. doc/next/6-stdlib/99-minor/maps/61900.md

    <!-- see ../../3-iter.md -->...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 29 bytes
    - Viewed (0)
  2. tensorflow/cc/saved_model/util.cc

      std::set<std::string> seen_request_inputs;
    
      for (const auto& [alias, tensor_info] : signature.inputs()) {
        const std::string& feed_name = tensor_info.name();
        auto iter = request_inputs.find(alias);
    
        if (iter == request_inputs.end()) {
          auto default_inputs_iter = signature.defaults().find(alias);
          if (default_inputs_iter == signature.defaults().end()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Feb 10 10:25:28 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/xla_device.cc

    }
    
    XlaDevice::~XlaDevice() {
      VLOG(1) << "Destroying XLA device " << jit_device_name_ << " " << this;
      mutex_lock lock(mu_);
      for (const auto& iter : device_contexts_) {
        iter->Unref();
      }
    }
    
    absl::StatusOr<xla::LocalClient*> XlaDevice::GetOrCreateClient() const {
      // We lazily create the client because the platform commits to the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 21:05:42 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  4. test/typeparam/issue50642.go

    	// test conversion of T to Stringer during an OAS2MAPR
    	temp2, ok = x[43]
    	_ = ok
    	return temp2.String()
    }
    
    func main() {
    	ch1 := make(chan int, 2)
    	ch1 <- 5
    	ch1 <- 6
    	ch = ch1
    	iter := Temp[int]{}
    	iter.HasNext()
    
    	iter2 := Temp2[MyInt]{}
    	if got, want := iter2.HasNext(), "a"; got != want {
    		panic(fmt.Sprintf("got %v, want %v", got, want))
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 1013 bytes
    - Viewed (0)
  5. 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)
  6. src/main/java/jcifs/smb1/http/NetworkExplorer.java

                }
    
                iter = sorted.listIterator();
                for( j = 0; iter.hasNext(); j++ ) {
                    if( sort == 0 ) {
                        if( compareNames( dirents[i], name, (SmbFile)iter.next() ) < 0 ) {
                            break;
                        }
                    } else if( sort == 1 ) {
                        if( compareSizes( dirents[i], name, (SmbFile)iter.next() ) < 0 ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Wed Jan 22 03:57:31 UTC 2020
    - 19.7K bytes
    - Viewed (0)
  7. 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)
  8. pkg/kube/multicluster/secretcontroller_test.go

    	c.ClientBuilder = TestingBuildClientsFromConfig
    	client.RunAndWait(stopCh)
    	secrets := clienttest.NewWriter[*v1.Secret](t, client)
    	iter := 0
    	component := BuildMultiClusterComponent(c, func(cluster *Cluster) testHandler {
    		iter++
    		return testHandler{
    			ID:     cluster.ID,
    			Iter:   iter,
    			Closed: atomic.NewBool(false),
    			Synced: atomic.NewBool(false),
    		}
    	})
    	client.RunAndWait(stopCh)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top