Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 49 of 49 for badge (0.05 sec)

  1. docs/en/docs/release-notes.md

    * 🍱 Update sponsors: TalkPython badge. PR [#11052](https://github.com/tiangolo/fastapi/pull/11052) by [@tiangolo](https://github.com/tiangolo).
    * 🔧 Update sponsors: TalkPython badge image. PR [#11048](https://github.com/tiangolo/fastapi/pull/11048) by [@tiangolo](https://github.com/tiangolo).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  2. docs/ja/docs/index.md

        <img src="https://img.shields.io/codecov/c/github/tiangolo/fastapi" alt="Coverage">
    </a>
    <a href="https://pypi.org/project/fastapi" target="_blank">
        <img src="https://badge.fury.io/py/fastapi.svg" alt="Package version">
    </a>
    </p>
    
    ---
    
    **ドキュメント**: <a href="https://fastapi.tiangolo.com" target="_blank">https://fastapi.tiangolo.com</a>
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 21K bytes
    - Viewed (0)
  3. helm-releases/minio-5.2.0.tgz

    *.swp *.bak *.tmp *~ # Various IDEs .project .idea/ *.tmproj # OWNERS file for Kubernetes OWNERS minio/README.md # MinIO Community Helm Chart [![Slack](https://slack.min.io/slack?type=svg)](https://slack.min.io) [![license](https://img.shields.io/badge/license-AGPL%20V3-blue)](https://github.com/minio/minio/blob/master/LICENSE) MinIO is a High Performance Object Storage released under GNU Affero General Public License v3.0. It is API compatible with Amazon S3 cloud storage service. Use MinIO to build...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 28 10:14:37 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  4. samples/addons/jaeger.yaml

              env:
                - name: BADGER_EPHEMERAL
                  value: "false"
                - name: SPAN_STORAGE_TYPE
                  value: "badger"
                - name: BADGER_DIRECTORY_VALUE
                  value: "/badger/data"
                - name: BADGER_DIRECTORY_KEY
                  value: "/badger/key"
                - name: COLLECTOR_ZIPKIN_HOST_PORT
                  value: ":9411"
                - name: MEMORY_MAX_TRACES
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. src/runtime/alg.go

    //   - github.com/puzpuzpuz/xsync/v2
    //   - github.com/puzpuzpuz/xsync/v3
    //   - github.com/segmentio/parquet-go
    //   - github.com/parquet-go/parquet-go
    //   - github.com/authzed/spicedb
    //   - github.com/pingcap/badger
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname memhash
    func memhash(p unsafe.Pointer, h, s uintptr) uintptr
    
    // memhash32 should be an internal detail,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  6. src/strings/strings.go

    // dropped from the string with no replacement.
    func Map(mapping func(rune) rune, s string) string {
    	// In the worst case, the string can grow when mapped, making
    	// things unpleasant. But it's so rare we barge in assuming it's
    	// fine. It could also shrink but that falls out naturally.
    
    	// The output buffer b is initialized on demand, the first
    	// time a character differs.
    	var b Builder
    
    	for i, c := range s {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:48:16 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  7. src/net/http/serve_test.go

    		"unknown",
    		`" chunked"`,
    	}
    
    	for _, badTE := range unsupportedTEs {
    		http1ReqBody := fmt.Sprintf(""+
    			"POST / HTTP/1.1\r\nConnection: close\r\n"+
    			"Host: localhost\r\nTransfer-Encoding: %s\r\n\r\n", badTE)
    
    		gotBody, err := fetchWireResponse(serverURL.Host, []byte(http1ReqBody))
    		if err != nil {
    			t.Errorf("%q. unexpected error: %v", badTE, err)
    			continue
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  8. src/runtime/mgcscavenge.go

    	// searchAddr, sets searchAddr to the *negative* index into chunks of that page. The trick here
    	// is that concurrent calls to find will fail to monotonically decrease searchAddr*, and so they
    	// won't barge over new memory becoming available to scavenge. Furthermore, this ensures
    	// that some future caller of find *must* observe the new high index. That caller
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    		factor = fmt.Sprintf("more than 100x")
    	} else if exceedFactor < 1.5 {
    		factor = fmt.Sprintf("%fx", exceedFactor) // avoid reporting "exceeds budge by a factor of 1.0x"
    	} else {
    		factor = fmt.Sprintf("%.1fx", exceedFactor)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
Back to top