Search Options

Results per page
Sort
Preferred Languages
Advance

Results 291 - 300 of 527 for broken (0.07 sec)

  1. .github/workflows/issue-on-pr-rollback.yml

          - name: Create a new Github Issue
            uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
            with:
              github-token: ${{secrets.GITHUB_TOKEN}}
              script: |
                const script = require('./.github/workflows/create_issue.js')
    Registered: Tue Oct 29 12:39:09 UTC 2024
    - Last Modified: Tue Oct 01 08:13:39 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. internal/s3select/jstream/decoder.go

    	}
    
    scan:
    	if v, err = d.emitAny(); err != nil {
    		goto out
    	}
    
    	if d.depth > d.emitDepth { // skip alloc for array if it won't be emitted
    		array = append(array, v)
    	}
    
    	// next token must be ',' or ']'
    	switch c = d.skipSpaces(); c {
    	case ',':
    		d.skipSpaces()
    		goto scan
    	case ']':
    		goto out
    	default:
    		err = d.mkError(ErrSyntax, "after array element")
    	}
    
    out:
    Registered: Sun Oct 27 19:28:09 UTC 2024
    - Last Modified: Mon Sep 23 19:35:41 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  3. internal/config/policy/opa/help.go

    			Type:        "url",
    			Sensitive:   true,
    		},
    		config.HelpKV{
    			Key:         AuthToken,
    			Description: "[DEPRECATED] authorization token for OPA endpoint" + defaultHelpPostfix(AuthToken),
    			Optional:    true,
    			Type:        "string",
    			Sensitive:   true,
    			Secret:      true,
    		},
    		config.HelpKV{
    			Key:         config.Comment,
    Registered: Sun Oct 27 19:28:09 UTC 2024
    - Last Modified: Fri Jun 23 14:45:27 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. docs/en/docs/project-generation.md

        - ๐Ÿงช [Playwright](https://playwright.dev) for End-to-End testing.
        - ๐Ÿฆ‡ Dark mode support.
    - ๐Ÿ‹ [Docker Compose](https://www.docker.com) for development and production.
    - ๐Ÿ”’ Secure password hashing by default.
    - ๐Ÿ”‘ JWT token authentication.
    - ๐Ÿ“ซ Email based password recovery.
    - โœ… Tests with [Pytest](https://pytest.org).
    - ๐Ÿ“ž [Traefik](https://traefik.io) as a reverse proxy / load balancer.
    Registered: Sun Oct 27 07:19:11 UTC 2024
    - Last Modified: Fri Oct 04 11:16:34 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  5. docs/ko/docs/tutorial/security/get-current-user.md

    # ํ˜„์žฌ ์‚ฌ์šฉ์ž ๊ฐ€์ ธ์˜ค๊ธฐ
    
    ์ด์ „ ์žฅ์—์„œ (์˜์กด์„ฑ ์ฃผ์ž… ์‹œ์Šคํ…œ์„ ๊ธฐ๋ฐ˜์œผ๋กœ ํ•œ)๋ณด์•ˆ ์‹œ์Šคํ…œ์€ *๊ฒฝ๋กœ ์ž‘๋™ ํ•จ์ˆ˜*์—์„œ `str`๋กœ `token`์„ ์ œ๊ณตํ–ˆ์Šต๋‹ˆ๋‹ค:
    
    ```Python hl_lines="10"
    {!../../docs_src/security/tutorial001.py!}
    ```
    
    ๊ทธ๋Ÿฌ๋‚˜ ์•„์ง๋„ ์œ ์šฉํ•˜์ง€ ์•Š์Šต๋‹ˆ๋‹ค.
    
    ํ˜„์žฌ ์‚ฌ์šฉ์ž๋ฅผ ์ œ๊ณตํ•˜๋„๋ก ํ•ฉ์‹œ๋‹ค.
    
    ## ์œ ์ € ๋ชจ๋ธ ์ƒ์„ฑํ•˜๊ธฐ
    
    ๋จผ์ € Pydantic ์œ ์ € ๋ชจ๋ธ์„ ๋งŒ๋“ค์–ด ๋ณด๊ฒ ์Šต๋‹ˆ๋‹ค.
    
    Pydantic์„ ์‚ฌ์šฉํ•˜์—ฌ ๋ณธ๋ฌธ์„ ์„ ์–ธํ•˜๋Š” ๊ฒƒ๊ณผ ๊ฐ™์€ ๋ฐฉ์‹์œผ๋กœ ๋‹ค๋ฅธ ๊ณณ์—์„œ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค.
    
    //// tab | ํŒŒ์ด์ฌ 3.7 ์ด์ƒ
    
    ```Python hl_lines="5  12-16"
    {!> ../../docs_src/security/tutorial002.py!}
    ```
    
    ////
    Registered: Sun Oct 27 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. .github/workflows/stale-issues.yml

              close-pr-message: "This PR was closed because it has been inactive for 14 days since being marked as stale. Please reopen if you'd like to work on this further."
              repo-token: ${{ secrets.GITHUB_TOKEN }}
          - name: Contribution issues
            uses: actions/stale@28ca1036281a5e5922ead5184a1bbf96e5fc984e # v9.0.0
            with:
    Registered: Tue Oct 29 12:39:09 UTC 2024
    - Last Modified: Wed Jun 26 15:41:19 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. docs/es/docs/project-generation.md

        - ๐Ÿฆ‡ Soporte para modo oscuro.
    - ๐Ÿ‹ [Docker Compose](https://www.docker.com) para desarrollo y producciรณn.
    - ๐Ÿ”’ Hashing seguro de contraseรฑas por defecto.
    - ๐Ÿ”‘ Autenticaciรณn con token JWT.
    - ๐Ÿ“ซ Recuperaciรณn de contraseรฑas basada en email.
    - โœ… Tests con [Pytest](https://pytest.org).
    - ๐Ÿ“ž [Traefik](https://traefik.io) como proxy inverso / balanceador de carga.
    Registered: Sun Oct 27 07:19:11 UTC 2024
    - Last Modified: Fri Oct 04 11:16:34 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. internal/event/target/nats_contrib_test.go

    	defer s.Shutdown()
    
    	clientConfig := &NATSArgs{
    		Enable: true,
    		Address: xnet.Host{
    			Name:      "localhost",
    			Port:      (xnet.Port(opts.Port)),
    			IsPortSet: true,
    		},
    		Subject: "test",
    		Token:   opts.Authorization,
    	}
    
    	con, err := clientConfig.connectNats()
    	if err != nil {
    		t.Errorf("Could not connect to nats: %v", err)
    	}
    	defer con.Close()
    Registered: Sun Oct 27 19:28:09 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. docs/em/docs/tutorial/security/simple-oauth2.md

    Oauth2๏ธโƒฃ ๐Ÿ‘ซ ๐ŸŽป.
    
    ///
    
    ## ๐Ÿ“Ÿ ๐Ÿคš `username` & `password`
    
    ๐Ÿ”œ โžก๏ธ โš™๏ธ ๐Ÿš™ ๐Ÿšš **FastAPI** ๐Ÿต ๐Ÿ‘‰.
    
    ### `OAuth2PasswordRequestForm`
    
    ๐Ÿฅ‡, ๐Ÿ—„ `OAuth2PasswordRequestForm`, & โš™๏ธ โšซ๏ธ ๐Ÿ”— โฎ๏ธ `Depends` *โžก ๐Ÿ› ๏ธ* `/token`:
    
    //// tab | ๐Ÿ 3๏ธโƒฃ.6๏ธโƒฃ & ๐Ÿ”›
    
    ```Python hl_lines="4  76"
    {!> ../../docs_src/security/tutorial003.py!}
    ```
    
    ////
    
    //// tab | ๐Ÿ 3๏ธโƒฃ.1๏ธโƒฃ0๏ธโƒฃ & ๐Ÿ”›
    
    ```Python hl_lines="2  74"
    Registered: Sun Oct 27 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  10. cmd/admin-heal-ops.go

    		}
    	}
    }
    
    // getHealSequenceByToken - Retrieve a heal sequence by token. The second
    // argument returns if a heal sequence actually exists.
    func (ahs *allHealState) getHealSequenceByToken(token string) (h *healSequence, exists bool) {
    	ahs.RLock()
    	defer ahs.RUnlock()
    	for _, healSeq := range ahs.healSeqMap {
    		if healSeq.clientToken == token {
    			return healSeq, true
    		}
    	}
    	return nil, false
    }
    
    Registered: Sun Oct 27 19:28:09 UTC 2024
    - Last Modified: Sat Oct 26 09:58:27 UTC 2024
    - 25.6K bytes
    - Viewed (0)
Back to top