Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for badge (0.06 sec)

  1. .github/workflows/scorecard.yml

      analysis:
        name: Scorecard analysis
        runs-on: ubuntu-latest
        permissions:
          # Needed to upload the results to code-scanning dashboard.
          security-events: write
          # Needed to publish results and get a badge (see publish_results below).
          id-token: write
          # Uncomment the permissions below if installing in a private repository.
          # contents: read
          # actions: read
    
        steps:
          - name: "Checkout code"
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 04 17:53:21 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
Back to top