Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 168 for amikor (0.38 sec)

  1. src/main/resources/fess_indices/fess/hu/stopwords.txt

    a
    ahogy
    ahol
    aki
    akik
    akkor
    alatt
    által
    általában
    amely
    amelyek
    amelyekben
    amelyeket
    amelyet
    amelynek
    ami
    amit
    amolyan
    amíg
    amikor
    át
    abban
    ahhoz
    annak
    arra
    arról
    az
    azok
    azon
    azt
    azzal
    azért
    aztán
    azután
    azonban
    bár
    be
    belül
    Plain Text
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Mon Nov 27 12:59:36 GMT 2023
    - 1.3K bytes
    - Viewed (0)
  2. docs/hu/docs/index.md

    item: Item
    ```
    
    ... És csupán egy deklarációval megkapod a:
    
    * Szerkesztő támogatást, beleértve:
        * Szövegkiegészítés.
        * Típus ellenőrzés.
    * Adatok validációja:
        * Automatikus és érthető hibák amikor az adatok hibásak.
        * Validáció mélyen ágyazott objektumok esetén is.
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 23:58:47 GMT 2024
    - 20.2K bytes
    - Viewed (0)
  3. src/main/resources/fess_indices/_aws/fess.json

              "rules": []
            },
            "hungarian_stop": {
              "type":       "stop",
    Json
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Tue Mar 23 12:38:28 GMT 2021
    - 117.3K bytes
    - Viewed (0)
  4. src/main/resources/fess_indices/_cloud/fess.json

              "rules": []
            },
            "hungarian_stop": {
              "type":       "stop",
    Json
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Feb 27 09:26:16 GMT 2021
    - 117.3K bytes
    - Viewed (0)
  5. docs/pt/docs/help-fastapi.md

    E também existem vários modos de se conseguir ajuda.
    
    ## Inscreva-se na newsletter
    
    Você pode se inscrever (pouco frequente) [**FastAPI e amigos** newsletter](newsletter.md){.internal-link target=_blank} para receber atualizações:
    
    * Notícias sobre FastAPI e amigos 🚀
    * Tutoriais 📝
    * Recursos ✨
    * Mudanças de última hora 🚨
    * Truques e dicas ✅
    
    ## Siga o FastAPI no twitter
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 8.4K bytes
    - Viewed (0)
  6. src/archive/tar/stat_unix.go

    		case "freebsd":
    			// Copied from golang.org/x/sys/unix/dev_freebsd.go.
    			major := uint32((dev >> 8) & 0xff)
    			minor := uint32(dev & 0xffff00ff)
    			h.Devmajor, h.Devminor = int64(major), int64(minor)
    		case "netbsd":
    			// Copied from golang.org/x/sys/unix/dev_netbsd.go.
    			major := uint32((dev & 0x000fff00) >> 8)
    			minor := uint32((dev & 0x000000ff) >> 0)
    			minor |= uint32((dev & 0xfff00000) >> 12)
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Mar 15 16:01:50 GMT 2024
    - 3.2K bytes
    - Viewed (0)
  7. docs/debugging/inspect/export.go

    	decode := func(r io.Reader, file string) ([]byte, error) {
    		b, e := io.ReadAll(r)
    		if e != nil {
    			return nil, e
    		}
    		b, _, minor, e := checkXL2V1(b)
    		if e != nil {
    			return nil, e
    		}
    
    		buf := bytes.NewBuffer(nil)
    		var data xlMetaInlineData
    		switch minor {
    		case 0:
    			_, e = msgp.CopyToJSON(buf, bytes.NewReader(b))
    			if e != nil {
    				return nil, e
    			}
    		case 1, 2:
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Tue Nov 08 15:58:02 GMT 2022
    - 9.1K bytes
    - Viewed (0)
  8. istioctl/pkg/install/k8sversion/version_test.go

    var (
    	version1_17 = &version.Info{
    		Major:      "1",
    		Minor:      "17",
    		GitVersion: "1.17",
    	}
    	version1_8 = &version.Info{
    		Major:      "1",
    		Minor:      "8",
    		GitVersion: "v1.8",
    	}
    	version1_18 = &version.Info{
    		Major:      "1",
    		Minor:      "18",
    		GitVersion: "v1.18.5",
    	}
    	version1_19 = &version.Info{
    		Major:      "1",
    		Minor:      "19",
    		GitVersion: "v1.19.4",
    	}
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Fri Jan 19 02:46:48 GMT 2024
    - 6.3K bytes
    - Viewed (0)
  9. ci/official/utilities/get_versions.sh

    # where fields are strings separated by whitespace.
    export TF_VER_MAJOR=$(awk '/#define TF_MAJOR_VERSION/ {print $3}' tensorflow/core/public/version.h)
    export TF_VER_MINOR=$(awk '/#define TF_MINOR_VERSION/ {print $3}' tensorflow/core/public/version.h)
    export TF_VER_PATCH=$(awk '/#define TF_PATCH_VERSION/ {print $3}' tensorflow/core/public/version.h)
    
    Shell Script
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Wed Jan 10 19:39:41 GMT 2024
    - 2.3K bytes
    - Viewed (0)
  10. docs/pt/docs/tutorial/path-params-numeric-validations.md

    ```
    
    ## Validações numéricas: maior que e menor que ou igual
    
    O mesmo se aplica para:
    
    * `gt`: maior que (`g`reater `t`han)
    * `le`: menor que ou igual (`l`ess than or `e`qual)
    
    ```Python hl_lines="9"
    {!../../../docs_src/path_params_numeric_validations/tutorial005.py!}
    ```
    
    ## Validações numéricas: valores do tipo float, maior que e menor que
    
    Validações numéricas também funcionam para valores do tipo `float`.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Tue Oct 17 05:59:11 GMT 2023
    - 5.6K bytes
    - Viewed (0)
Back to top