Search Options

Results per page
Sort
Preferred Languages
Advance

Results 381 - 390 of 517 for validar (0.05 sec)

  1. src/main/java/jcifs/http/NtlmHttpFilter.java

                        try {
                            return interrogate(getTransportContext(), this.dcList[ i ]);
                        }
                        catch ( SmbException se ) {
                            log.warn("Failed validate DC: " + this.dcList[ i ], se);
                        }
                        this.dcList[ i ] = null;
                    }
                }
    
                /*
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 14.8K bytes
    - Viewed (0)
  2. docs/pt/docs/tutorial/security/first-steps.md

    Agora vamos voltar um pouco e entender o que é isso tudo.
    
    O "fluxo" da `senha` é um dos caminhos ("fluxos") definidos no OAuth2, para lidar com a segurança e autenticação.
    
    OAuth2 foi projetado para que o backend ou a API pudesse ser independente do servidor que autentica o usuário.
    
    Mas nesse caso, a mesma aplicação **FastAPI** irá lidar com a API e a autenticação.
    
    Então, vamos rever de um ponto de vista simplificado:
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  3. cmd/server_test.go

    	verifyError(c, response, "InvalidArgument", "Argument maxKeys must be an integer between 0 and 2147483647", http.StatusBadRequest)
    }
    
    // TestPutBucketErrors - request for non valid bucket operation
    // and validate it with expected error result.
    func (s *TestSuiteCommon) TestPutBucketErrors(c *check) {
    	// generate a random bucket name.
    	bucketName := getRandomBucketName()
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Jul 15 16:28:02 UTC 2024
    - 116.3K bytes
    - Viewed (0)
  4. docs/em/docs/index.md

    🤔 🌖 🔃 ⚫️, 👀 📄 <a href="https://fastapi.tiangolo.com/benchmarks/" class="internal-link" target="_blank">📇</a>.
    
    ## 📦 🔗
    
    ⚙️ Pydantic:
    
    * <a href="https://github.com/JoshData/python-email-validator" target="_blank"><code>email-validator</code></a> - 📧 🔬.
    
    ⚙️ 💃:
    
    * <a href="https://www.python-httpx.org" target="_blank"><code>httpx</code></a> - ✔ 🚥 👆 💚 ⚙️ `TestClient`.
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 20 19:20:23 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  5. docs/he/docs/index.md

    ## תלויות אופציונליות
    
    בשימוש Pydantic:
    
    -   <a href="https://github.com/JoshData/python-email-validator" target="_blank"><code>email-validator</code></a> - לאימות כתובות אימייל.
    
    בשימוש Starlette:
    
    -   <a href="https://www.python-httpx.org" target="_blank"><code>httpx</code></a> - דרוש אם ברצונכם להשתמש ב - `TestClient`.
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 20 19:20:23 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  6. docs/fr/docs/tutorial/path-params-numeric-validations.md

    Ainsi, `0.5` serait une valeur valide. Mais `0.0` ou `0` ne le serait pas.
    
    Et la même chose pour <abbr title="less than"><code>lt</code></abbr>.
    
    {* ../../docs_src/path_params_numeric_validations/tutorial006_an_py39.py hl[13] *}
    
    ## Pour résumer
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Mon Oct 28 10:32:37 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  7. docs/fr/docs/alternatives.md

    Mais ensuite, le projet a changé d'orientation.
    
    Il ne s'agissait plus d'un framework web API, le créateur devant se concentrer sur Starlette.
    
    Maintenant, APIStar est un ensemble d'outils pour valider les spécifications OpenAPI, et non un framework web.
    
    /// info
    
    APIStar a été créé par Tom Christie. Le même gars qui a créé :
    
    * Django REST Framework
    * Starlette (sur lequel **FastAPI** est basé)
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 20 19:20:23 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  8. docs/ko/docs/index.md

    ## 선택가능한 의존성
    
    Pydantic이 사용하는:
    
    * <a href="https://github.com/JoshData/python-email-validator" target="_blank"><code>email-validator</code></a> - 이메일 유효성 검사.
    
    Starlette이 사용하는:
    
    * <a href="https://www.python-httpx.org" target="_blank"><code>HTTPX</code></a> - `TestClient`를 사용하려면 필요.
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Fri Aug 16 16:50:01 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  9. internal/config/identity/openid/openid.go

    				enabled = false
    			}
    		}
    
    		// No need to continue loading if the config is not enabled.
    		if !enabled {
    			continue
    		}
    
    		// Validate that client ID has not been duplicately specified.
    		if seenClientIDs.Contains(p.ClientID) {
    			return c, config.Errorf("Client ID %s is present with multiple OpenID configurations", p.ClientID)
    		}
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Wed Jul 10 20:16:44 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  10. fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/SitemapsHelper.java

                // gz
                bis.reset();
                return isValid(new GZIPInputStream(bis), false);
            } catch (final Exception e) {
                if (logger.isDebugEnabled()) {
                    logger.debug("Failed to validate a file.", e);
                }
            }
            return false;
        }
    
        /**
         * Generates SitemapSet instance.
         *
         * This method does not close the input stream.
         *
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Sat Oct 12 01:40:57 UTC 2024
    - 11.8K bytes
    - Viewed (0)
Back to top