Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 186 for gint (0.11 sec)

  1. src/runtime/malloc_test.go

    	for i := 0; i < 5; i++ {
    		// Reserve memory at the next hint so it can't be used
    		// for the heap.
    		start, end, ok := MapNextArenaHint()
    		if !ok {
    			t.Skipf("failed to reserve memory at next arena hint [%#x, %#x)", start, end)
    		}
    		t.Logf("reserved [%#x, %#x)", start, end)
    		disallowed = append(disallowed, [2]uintptr{start, end})
    		// Allocate until the runtime tries to use the hint we
    		// just mapped over.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:29 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/cpumanager/policy_static.go

    	// Call Topology Manager to get the aligned socket affinity across all hint providers.
    	hint := p.affinity.GetAffinity(string(pod.UID), container.Name)
    	klog.InfoS("Topology Affinity", "pod", klog.KObj(pod), "containerName", container.Name, "affinity", hint)
    
    	// Allocate CPUs according to the NUMA affinity contained in the hint.
    	cpuset, err := p.allocateCPUs(s, numCPUs, hint.NUMANodeAffinity, p.cpusToReuse[string(pod.UID)])
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 06 13:16:15 UTC 2023
    - 28.8K bytes
    - Viewed (0)
  3. docs/de/docs/advanced/custom-response.md

    ### `HTMLResponse`
    
    Nimmt Text oder Bytes entgegen und gibt eine HTML-Response zurück, wie Sie oben gelesen haben.
    
    ### `PlainTextResponse`
    
    Nimmt Text oder Bytes entgegen und gibt eine Plain-Text-Response zurück.
    
    ```Python hl_lines="2  7  9"
    {!../../../docs_src/custom_response/tutorial005.py!}
    ```
    
    ### `JSONResponse`
    
    Nimmt einige Daten entgegen und gibt eine `application/json`-codierte Response zurück.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jan 23 13:05:12 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  4. cmd/storage-rest-server.go

    	case errors.Is(err, errDiskNotDir):
    		var hint string
    		if endpoint.URL != nil {
    			hint = fmt.Sprintf("Drive '%s' is not a directory, MinIO erasure coding needs a directory", endpoint.Path)
    		} else {
    			hint = "Drives are not directories, MinIO erasure coding needs directories"
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  5. docs/de/docs/tutorial/path-params.md

    Der Pfad-Parameter `item_id` hatte den Wert `"foo"`, was kein `int` ist.
    
    Die gleiche Fehlermeldung würde angezeigt werden, wenn Sie ein `float` (also eine Kommazahl) statt eines `int`s übergeben würden, wie etwa in: <a href="http://127.0.0.1:8000/items/4.2" class="external-link" target="_blank">http://127.0.0.1:8000/items/4.2</a>
    
    !!! check
        Sprich, mit der gleichen Python-Typdeklaration gibt Ihnen **FastAPI** Datenvalidierung.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:28:59 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/schema/schema.fbs

    }
    
    table SplitVOptions {
      num_splits: int;
    }
    
    table StridedSliceOptions {
      begin_mask: int;
      end_mask: int;
      ellipsis_mask: int;
      new_axis_mask: int;
      shrink_axis_mask: int;
      // If true, then the end tensor is an offset of the begin tensor.
      offset: bool;
    }
    
    table LogSoftmaxOptions {
    }
    
    table CastOptions {
      in_data_type: TensorType;
      out_data_type: TensorType;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  7. src/net/dial.go

    	)
    	switch hint := hint.(type) {
    	case *TCPAddr:
    		tcp = hint
    		wildcard = tcp.isWildcard()
    	case *UDPAddr:
    		udp = hint
    		wildcard = udp.isWildcard()
    	case *IPAddr:
    		ip = hint
    		wildcard = ip.isWildcard()
    	}
    	naddrs := addrs[:0]
    	for _, addr := range addrs {
    		if addr.Network() != hint.Network() {
    			return nil, &AddrError{Err: "mismatched local address type", Addr: hint.String()}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  8. docs/de/docs/tutorial/path-params-numeric-validations.md

    `0.5` wäre also ein gültiger Wert, aber nicht `0.0` oder `0`.
    
    Das gleiche gilt für <abbr title="less than – kleiner als"><code>lt</code></abbr>.
    
    === "Python 3.9+"
    
        ```Python hl_lines="13"
        {!> ../../../docs_src/path_params_numeric_validations/tutorial006_an_py39.py!}
        ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 17:59:29 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. docs/de/docs/deployment/concepts.md

    # Deployment-Konzepte
    
    Bei dem Deployment – der Bereitstellung – einer **FastAPI**-Anwendung, oder eigentlich jeder Art von Web-API, gibt es mehrere Konzepte, die Sie wahrscheinlich interessieren, und mithilfe der Sie die **am besten geeignete** Methode zur **Bereitstellung Ihrer Anwendung** finden können.
    
    Einige wichtige Konzepte sind:
    
    * Sicherheit – HTTPS
    * Beim Hochfahren ausführen
    * Neustarts
    * Replikation (die Anzahl der laufenden Prozesse)
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:16:25 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  10. build/root/Makefile

    vet:
    	echo "$$VET_HELP_INFO"
    else
    vet:
    	hack/make-rules/vet.sh $(WHAT)
    endif
    
    define LINT_HELP_INFO
    # Run golangci-lint
    #
    # Example:
    #   make lint
    endef
    .PHONY: lint
    ifeq ($(PRINT_HELP),y)
    lint:
    	echo "$$LINT_HELP_INFO"
    else
    lint:
    	hack/verify-golangci-lint.sh
    endif
    
    define RELEASE_HELP_INFO
    # Build a release
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top