Search Options

Results per page
Sort
Preferred Languages
Advance

Results 371 - 380 of 410 for toYaml (0.17 sec)

  1. src/main/resources/fess_label_ko.properties

    labels.facet_filetype_haskell=Haskell
    labels.facet_filetype_image=Image
    labels.facet_filetype_java=Java
    labels.facet_filetype_javascript=JavaScript
    labels.facet_filetype_json=Json
    labels.facet_filetype_ocaml=OCaml
    labels.facet_filetype_perl=Perl
    labels.facet_filetype_php=PHP
    labels.facet_filetype_properties=Properties
    labels.facet_filetype_python=Python
    labels.facet_filetype_ruby=Ruby
    labels.facet_filetype_scala=Scala
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 44K bytes
    - Viewed (0)
  2. docs/pt/docs/virtual-environments.md

    /// tip | "Dica"
    
    É uma (muito) boa ideia colocar os pacotes e versões que seu programa precisa em um arquivo (por exemplo `requirements.txt` ou `pyproject.toml`).
    
    ///
    
    //// tab | `pip`
    
    <div class="termy">
    
    ```console
    $ pip install "fastapi[standard]"
    
    ---> 100%
    ```
    
    </div>
    
    ////
    
    //// tab | `uv`
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Sep 10 10:37:13 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  3. src/main/resources/fess_label_fr.properties

    labels.facet_filetype_haskell	=	Haskell
    labels.facet_filetype_image	=	Image
    labels.facet_filetype_java	=	Java
    labels.facet_filetype_javascript	=	JavaScript
    labels.facet_filetype_json	=	Json
    labels.facet_filetype_ocaml	=	OCaml
    labels.facet_filetype_perl	=	Perl
    labels.facet_filetype_php	=	PHP
    labels.facet_filetype_properties	=	Properties
    labels.facet_filetype_python	=	Python
    labels.facet_filetype_ruby	=	Ruby
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 46.6K bytes
    - Viewed (0)
  4. guava/src/com/google/common/io/BaseEncoding.java

          // multiple of 8. A multiple of 8 has 3 low zero bits, so we just need to figure out how many
          // extra zero bits we need to add to the end of bitsPerChar to get 3 in total.
          // The logic here would be wrong for bitsPerChar > 8, but since we require distinct ASCII
          // characters that can't happen.
          int zeroesInBitsPerChar = Integer.numberOfTrailingZeros(bitsPerChar);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:26:48 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  5. cmd/endpoint.go

    	Endpoints    Endpoints
    	CmdLine      string
    	Platform     string
    }
    
    // EndpointServerPools - list of list of endpoints
    type EndpointServerPools []PoolEndpoints
    
    // ESCount returns the total number of erasure sets in this cluster
    func (l EndpointServerPools) ESCount() (count int) {
    	for _, p := range l {
    		count += p.SetCount
    	}
    	return
    }
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Jun 21 22:22:24 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  6. cmd/erasure-sets.go

    	endpoints PoolEndpoints
    
    	// String version of all the endpoints, an optimization
    	// to avoid url.String() conversion taking CPU on
    	// large disk setups.
    	endpointStrings []string
    
    	// Total number of sets and the number of disks per set.
    	setCount, setDriveCount int
    	defaultParityCount      int
    
    	poolIndex int
    
    	// Distribution algorithm of choice.
    	distributionAlgo string
    	deploymentID     [16]byte
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Sep 27 10:41:37 UTC 2024
    - 37K bytes
    - Viewed (0)
  7. docs/ja/docs/deployment/docker.md

    ```{ .dockerfile .annotate }
    # (1)
    FROM python:3.9 as requirements-stage
    
    # (2)
    WORKDIR /tmp
    
    # (3)
    RUN pip install poetry
    
    # (4)
    COPY ./pyproject.toml ./poetry.lock* /tmp/
    
    # (5)
    RUN poetry export -f requirements.txt --output requirements.txt --without-hashes
    
    # (6)
    FROM python:3.9
    
    # (7)
    WORKDIR /code
    
    # (8)
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Mon Aug 12 21:47:53 UTC 2024
    - 44.3K bytes
    - Viewed (0)
  8. cmd/metacache-set.go

    				}, w)
    			}
    
    			// fallback only when set.
    			for {
    				fd := fallback(werr)
    				if fd == nil {
    					break
    				}
    				// This fallback is only set when
    				// askDisks is less than total
    				// number of disks per set.
    				werr = fd.WalkDir(ctx, WalkDirOptions{
    					Limit:          opts.perDiskLimit,
    					Bucket:         opts.bucket,
    					BaseDir:        opts.path,
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Jul 12 16:23:16 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  9. docs/bucket/notifications/README.md

    ```
    $ curl  "http://localhost:9200/minio_events/_search?pretty=true"
    {
      "took" : 40,
      "timed_out" : false,
      "_shards" : {
        "total" : 5,
        "successful" : 5,
        "failed" : 0
      },
      "hits" : {
        "total" : 1,
        "max_score" : 1.0,
        "hits" : [
          {
            "_index" : "minio_events",
            "_type" : "event",
            "_id" : "images/myphoto.jpg",
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  10. src/main/resources/fess_label.properties

    labels.facet_filetype_haskell=Haskell
    labels.facet_filetype_image=Image
    labels.facet_filetype_java=Java
    labels.facet_filetype_javascript=JavaScript
    labels.facet_filetype_json=Json
    labels.facet_filetype_ocaml=OCaml
    labels.facet_filetype_perl=Perl
    labels.facet_filetype_php=PHP
    labels.facet_filetype_properties=Properties
    labels.facet_filetype_python=Python
    labels.facet_filetype_ruby=Ruby
    labels.facet_filetype_scala=Scala
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 40.7K bytes
    - Viewed (0)
Back to top