Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 465 for gint (0.04 sec)

  1. .github/workflows/go-lint.yml

            if: matrix.os == 'Windows'
            env:
              CGO_ENABLED: 0
              GO111MODULE: on
            run: |
              Set-MpPreference -DisableRealtimeMonitoring $true
              netsh int ipv4 set dynamicport tcp start=60000 num=61000
              go build --ldflags="-s -w" -o %GOPATH%\bin\minio.exe
              go test -v --timeout 120m ./...
          - name: Build on ${{ matrix.os }}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 22:29:33 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. docs/de/docs/tutorial/index.md

        ```
    
        Installieren Sie auch `uvicorn` als Server:
    
        ```
        pip install "uvicorn[standard]"
        ```
    
        Das gleiche gilt für jede der optionalen Abhängigkeiten, die Sie verwenden möchten.
    
    ## Handbuch für fortgeschrittene Benutzer
    
    Es gibt auch ein **Handbuch für fortgeschrittene Benutzer**, welches Sie später nach diesem **Tutorial – Benutzerhandbuch** lesen können.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jan 16 12:11:15 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. docs/de/docs/advanced/templates.md

    # Templates
    
    Sie können jede gewünschte Template-Engine mit **FastAPI** verwenden.
    
    Eine häufige Wahl ist Jinja2, dasselbe, was auch von Flask und anderen Tools verwendet wird.
    
    Es gibt Werkzeuge zur einfachen Konfiguration, die Sie direkt in Ihrer **FastAPI**-Anwendung verwenden können (bereitgestellt von Starlette).
    
    ## Abhängigkeiten installieren
    
    Installieren Sie `jinja2`:
    
    <div class="termy">
    
    ```console
    $ pip install jinja2
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:26:19 UTC 2024
    - 3.6K 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. src/cmd/go/testdata/vcstest/svn/test1-svn-git.txt

    [!GOOS:windows] svn checkout file://$ROOT .
    
    cd git-README-only
    git init
    git config --add core.ignorecase true
    git config --add core.precomposeunicode true
    
    git add README
    at 2017-09-22T11:39:03-04:00
    git commit -a -m 'README'
    git branch -m master
    
    git rev-parse HEAD
    stdout '^7f800d2ac276dd7042ea0e8d7438527d236fd098$'
    
    	# Fake a clone from an origin repo at this commit.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 08 19:37:03 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/vcstest/svn/test2-svn-git.txt

    [!GOOS:windows] svn checkout file://$ROOT .
    
    git init
    git config --add core.ignorecase true
    git config --add core.precomposeunicode true
    
    git add README
    at 2017-09-22T11:39:03-04:00
    git commit -a -m 'README'
    git branch -m master
    
    git rev-parse HEAD
    stdout '^7f800d2ac276dd7042ea0e8d7438527d236fd098$'
    
    	# Fake a clone from an origin repo at this commit.
    git remote add origin https://vcs-test.swtch.com/git/README-only
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 08 19:37:03 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  7. common/Makefile.common.mk

    lint-licenses:
    	@if test -d licenses; then license-lint --config common/config/license-lint.yml; fi
    
    lint-all: lint-dockerfiles lint-scripts lint-yaml lint-helm lint-copyright-banner lint-go lint-python lint-markdown lint-sass lint-typescript lint-licenses
    
    tidy-go:
    	@find -name go.mod -execdir go mod tidy \;
    
    mod-download-go:
    	@-GOFLAGS="-mod=readonly" find -name go.mod -execdir go mod download \;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 14:37:27 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  8. test/typeparam/struct.go

    	v T
    }
    
    type S1 struct {
    	E[int]
    	v string
    }
    
    type Eint = E[int]
    type Ebool = E[bool]
    type Eint2 = Eint
    
    type S2 struct {
    	Eint
    	Ebool
    	v string
    }
    
    type S3 struct {
    	*E[int]
    }
    
    func main() {
    	s1 := S1{Eint{2}, "foo"}
    	if got, want := s1.E.v, 2; got != want {
    		panic(fmt.Sprintf("got %d, want %d", got, want))
    	}
    	s2 := S2{Eint{3}, Ebool{true}, "foo"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 16:29:58 UTC 2024
    - 801 bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/python/pywrap_quantize_model.pyi

    ) -> Any: ...  # Status
    
    # LINT.ThenChange()
    
    # LINT.IfChange(quantize_weight_only)
    def quantize_weight_only(
        src_saved_model_path: str,
        dst_saved_model_path: str,
        quantization_options_serialized: bytes,
        *,
        signature_def_map_serialized: dict[str, bytes],
        py_function_library: py_function_lib.PyFunctionLibrary,
    ) -> Any: ...  # Status
    
    # LINT.ThenChange()
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 07 03:47:17 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/pywrap_calibration.pyi

    from tensorflow.compiler.mlir.quantization.tensorflow.calibrator import calibration_statistics_pb2
    
    # LINT.IfChange(clear_calibrator)
    def clear_calibrator() -> None: ...
    
    # LINT.ThenChange()
    
    # LINT.IfChange(clear_data_from_calibrator)
    def clear_data_from_calibrator(id: bytes) -> None: ...
    
    # LINT.ThenChange()
    
    # LINT.IfChange(get_statistics_from_calibrator)
    def get_statistics_from_calibrator(
        id: bytes,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 09 02:25:59 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top