Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for tennis (0.11 sec)

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

    fuésemos
    fueseis
    fuesen
    siendo
    sido
    tengo
    tienes
    tiene
    tenemos
    tenéis
    tienen
    tenga
    tengas
    tengamos
    tengáis
    tengan
    tendré
    tendrás
    tendrá
    tendremos
    tendréis
    tendrán
    tendría
    tendrías
    tendríamos
    tendríais
    tendrían
    tenía
    tenías
    teníamos
    teníais
    tenían
    tuve
    tuviste
    tuvo
    tuvimos
    tuvisteis
    tuvieron
    tuviera
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Nov 27 12:59:36 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. docs/multi-tenancy/README.md

    3. [Cloud Scale Deployment](#cloud-scale-deployment)
    
    ## 1. Standalone Deployment
    
    To host multiple tenants on a single machine, run one MinIO Server per tenant with a dedicated HTTPS port, configuration, and data directory.
    
    ### 1.1 Host Multiple Tenants on a Single Drive
    
    Use the following commands to host 3 tenants on a single drive:
    
    ```sh
    minio server --address :9001 /data/tenant1
    minio server --address :9002 /data/tenant2
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 3K bytes
    - Viewed (0)
  3. src/main/resources/fess_indices/fess/sv/stopwords.txt

    jag
    hon
    som
    han
    på
    den
    med
    var
    sig
    för
    så
    till
    är
    men
    ett
    om
    hade
    de
    av
    icke
    mig
    du
    henne
    då
    sin
    nu
    har
    inte
    hans
    honom
    skulle
    hennes
    där
    min
    man
    ej
    vid
    kunde
    något
    från
    ut
    när
    efter
    upp
    vi
    dem
    vara
    vad
    över
    än
    dig
    kan
    sina
    här
    ha
    mot
    alla
    under
    någon
    eller
    allt
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Nov 27 12:59:36 UTC 2023
    - 700 bytes
    - Viewed (0)
  4. docs/es/docs/tutorial/path-params.md

    Exploraremos varios de estos tipos en los próximos capítulos del tutorial.
    
    ## El orden importa
    
    Cuando creas *operaciones de path* puedes encontrarte con situaciones en las que tengas un path fijo.
    
    Digamos algo como `/users/me` que sea para obtener datos del usuario actual.
    
    ... y luego puedes tener el path `/users/{user_id}` para obtener los datos sobre un usuario específico asociados a un ID de usuario.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  5. SECURITY.md

    tenant isolation, resource allocation, model sharing and hardware attacks.
    
    ### Tenant isolation
    
    Since any tenants or users providing models, graphs or checkpoints can execute
    code in context of the TensorFlow service, it is important to design isolation
    mechanisms that prevent unwanted access to the data from other tenants.
    
    Network isolation between different models is also important not only to prevent
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Oct 01 06:06:35 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  6. internal/config/etcd/help.go

    			Type:        "csv",
    			Sensitive:   true,
    		},
    		config.HelpKV{
    			Key:         PathPrefix,
    			Description: `namespace prefix to isolate tenants` + defaultHelpPostfix(PathPrefix),
    			Optional:    true,
    			Type:        "path",
    		},
    		config.HelpKV{
    			Key:         CoreDNSPath,
    			Description: `shared bucket DNS records` + defaultHelpPostfix(CoreDNSPath),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Apr 27 03:11:37 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  7. docs/tr/docs/tutorial/cookie-params.md

        !!! tip "İpucu"
            Mümkün mertebe 'Annotated' sınıfını kullanmaya çalışın.
    
        ```Python hl_lines="9"
        {!> ../../../docs_src/cookie_params/tutorial001.py!}
        ```
    
    !!! note "Teknik Detaylar"
        `Cookie` sınıfı `Path` ve `Query` sınıflarının kardeşidir. Diğerleri gibi `Param` sınıfını miras alan bir sınıftır.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue May 14 19:35:04 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. docs/tr/docs/tutorial/static-files.md

    * `StaticFiles` sınıfını projenize dahil edin.
    * Bir `StaticFiles()` örneğini belirli bir yola bağlayın.
    
    ```Python hl_lines="2  6"
    {!../../../docs_src/static_files/tutorial001.py!}
    ```
    
    !!! note "Teknik Detaylar"
        Projenize dahil etmek için `from starlette.staticfiles import StaticFiles` kullanabilirsiniz.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 23:57:08 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. src/go/doc/testdata/benchmark.go

    		return y
    	}
    	return x
    }
    
    // roundDown10 rounds a number down to the nearest power of 10.
    func roundDown10(n int) int {
    	var tens = 0
    	// tens = floor(log_10(n))
    	for n > 10 {
    		n = n / 10
    		tens++
    	}
    	// result = 10^tens
    	result := 1
    	for i := 0; i < tens; i++ {
    		result *= 10
    	}
    	return result
    }
    
    // roundUp rounds x up to a number of the form [1eX, 2eX, 5eX].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 02 02:28:27 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  10. src/main/resources/fess_indices/fess/no/stopwords.txt

    slik
    vært
    være
    båe
    begge
    siden
    dykk
    dykkar
    dei
    deira
    deires
    deim
    di
    då
    eg
    ein
    eit
    eitt
    elles
    honom
    hjå
    ho
    hoe
    henne
    hennar
    hennes
    hoss
    hossen
    ikkje
    ingi
    inkje
    korleis
    korso
    kva
    kvar
    kvarhelst
    kven
    kvi
    kvifor
    me
    medan
    mi
    mine
    mykje
    no
    nokon
    noka
    nokor
    noko
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Nov 27 12:59:36 UTC 2023
    - 994 bytes
    - Viewed (0)
Back to top