Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 186 for gint (0.04 sec)

  1. src/cmd/go/internal/modfetch/codehost/git.go

    	// The "--is-ancestor" flag was added to "git merge-base" in version 1.8.0, so
    	// this won't work with Git 1.7.1. According to golang.org/issue/28550, cmd/go
    	// already doesn't work with Git 1.7.1, so at least it's not a regression.
    	//
    	// git merge-base --is-ancestor exits with status 0 if rev is an ancestor, or
    	// 1 if not.
    	_, err := Run(ctx, r.dir, "git", "merge-base", "--is-ancestor", "--", tag, rev)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 22:10:38 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  2. src/math/big/int.go

    	"math/rand"
    	"strings"
    )
    
    // An Int represents a signed multi-precision integer.
    // The zero value for an Int represents the value 0.
    //
    // Operations always take pointer arguments (*Int) rather
    // than Int values, and each unique Int value requires
    // its own unique *Int pointer. To "copy" an Int value,
    // an existing (or newly allocated) Int must be set to
    // a new value using the [Int.Set] method; shallow copies
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  3. hack/golangci.yaml

              #
              # Remember to clean the golangci-lint cache when changing the configuration and
              # running the verify-golangci-lint.sh script multiple times, otherwise
              # golangci-lint will report stale results:
              #    _output/local/bin/golangci-lint cache clean
              
              # At this point we don't enforce the usage structured logging calls except in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  4. docs/de/docs/tutorial/bigger-applications.md

    * Es gibt auch eine Datei `app/dependencies.py`, genau wie `app/main.py` ist sie ein „Modul“: `app.dependencies`.
    * Es gibt ein Unterverzeichnis `app/routers/` mit einer weiteren Datei `__init__.py`, es handelt sich also um ein „Python-Subpackage“: `app.routers`.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:27:59 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  5. docs/de/docs/python-types.md

    Wenn Sie eine neuere Python-Version für Ihr Projekt wählen können, werden Sie aus dieser zusätzlichen Vereinfachung Nutzen ziehen können.
    
    In der gesamten Dokumentation gibt es Beispiele, welche kompatibel mit unterschiedlichen Python-Versionen sind (wenn es Unterschiede gibt).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:29:25 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/topologymanager/policy.go

    	// Get the NUMANodeAffinity from each hint in the permutation and see if any
    	// of them encode unpreferred allocations.
    	preferred := true
    	var numaAffinities []bitmask.BitMask
    	for _, hint := range permutation {
    		// Only consider hints that have an actual NUMANodeAffinity set.
    		if hint.NUMANodeAffinity != nil {
    			numaAffinities = append(numaAffinities, hint.NUMANodeAffinity)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 09:45:25 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  7. docs/de/docs/tutorial/handling-errors.md

    # Fehlerbehandlung
    
    Es gibt viele Situationen, in denen Sie einem Client, der Ihre API benutzt, einen Fehler zurückgeben müssen.
    
    Dieser Client könnte ein Browser mit einem Frontend, Code von jemand anderem, ein <abbr title="Internet of Things – Internet der Dinge: Geräte, die über das Internet Informationen austauschen">IoT</abbr>-Gerät, usw., sein.
    
    Sie müssten beispielsweise einem Client sagen:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:28:29 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/memorymanager/policy_static.go

    	}
    
    	// try to find the preferred hint with the minimal number of NUMA nodes, relevant for the restricted policy
    	return findBestHint(filteredHints), nil
    }
    
    func isHintInGroup(hint []int, group []int) bool {
    	sort.Ints(hint)
    	sort.Ints(group)
    
    	hintIndex := 0
    	for i := range group {
    		if hintIndex == len(hint) {
    			return true
    		}
    
    		if group[i] != hint[hintIndex] {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Nov 12 07:34:55 UTC 2023
    - 34K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/python/pywrap_quantize_model.cc

      pybind11_protobuf::ImportNativeProtoCasters();
    
      m.def(
          // If the function signature changes, likely its corresponding .pyi type
          // hinting should also change.
          // LINT.IfChange
          "quantize_qat_model",
          [](const absl::string_view src_saved_model_path,
             const absl::string_view dst_saved_model_path,
             const QuantizationOptions& quantization_options,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 09 06:33:29 UTC 2024
    - 12K bytes
    - Viewed (0)
  10. src/runtime/mfinal.go

    	//	ptr ptr INT ptr ptr
    	//	ptr ptr INT ptr ptr
    	//	ptr ptr INT ptr ptr
    	//	ptr ptr INT ptr ptr
    	// aka
    	//
    	//	ptr ptr INT ptr ptr ptr ptr INT
    	//	ptr ptr ptr ptr INT ptr ptr ptr
    	//	ptr INT ptr ptr ptr ptr INT ptr
    	//	ptr ptr ptr INT ptr ptr ptr ptr
    	//	INT ptr ptr ptr ptr INT ptr ptr
    	//
    	// Assumptions about Finalizer layout checked below.
    	1<<0 | 1<<1 | 0<<2 | 1<<3 | 1<<4 | 1<<5 | 1<<6 | 0<<7,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
Back to top