- Sort Score
- Result 10 results
- Languages All
Results 531 - 540 of 1,826 for paras (0.06 sec)
-
src/main/java/jcifs/ntlmssp/av/AvSingleHost.java
/** * @param raw */ public AvSingleHost ( byte[] raw ) { super(AvPair.MsvAvSingleHost, raw); } /** * * @param cfg */ public AvSingleHost ( Configuration cfg ) { this(new byte[8], cfg.getMachineId()); } /** * * @param customData * @param machineId */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.7K bytes - Viewed (0) -
android/guava/src/com/google/common/hash/BloomFilter.java
* also relies on object identity of funnels. * * @param funnel the funnel of T's that the constructed {@code BloomFilter} will use * @param expectedInsertions the number of expected insertions to the constructed {@code * BloomFilter}; must be positive * @param fpp the desired false positive probability (must be positive and less than 1.0)
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 23 16:45:30 UTC 2024 - 26.6K bytes - Viewed (0) -
docs/pt/docs/advanced/openapi-callbacks.md
/// tip | Dica Quando escrever o código para documentar um callback, pode ser útil imaginar que você é aquele *desenvolvedor externo*. E que você está atualmente implementando a *API externa*, não *sua API*. Adotar temporariamente esse ponto de vista (do *desenvolvedor externo*) pode ajudar a sentir que é mais óbvio onde colocar os parâmetros, o modelo Pydantic para o corpo, para a resposta, etc. para essa *API externa*. ///
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Wed Oct 30 19:53:03 UTC 2024 - 8.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/fscc/FileBasicInfo.java
private long changeTime; private int attributes; /** * */ public FileBasicInfo () {} /** * @param create * @param lastAccess * @param lastWrite * @param change * @param attributes */ public FileBasicInfo ( long create, long lastAccess, long lastWrite, long change, int attributes ) { this.createTime = create;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 4.2K bytes - Viewed (0) -
docs/pt/docs/tutorial/first-steps.md
--- Ao construir APIs, você normalmente usa esses métodos HTTP para executar uma ação específica. Normalmente você usa: * `POST`: para criar dados. * `GET`: para ler dados. * `PUT`: para atualizar dados. * `DELETE`: para deletar dados. Portanto, no OpenAPI, cada um dos métodos HTTP é chamado de "operação". Vamos chamá-los de "**operações**" também.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 9.6K bytes - Viewed (0) -
src/main/java/jcifs/netbios/SessionRequestPacket.java
SessionRequestPacket ( Configuration config ) { this.calledName = new Name(config); this.callingName = new Name(config); } /** * * @param config * @param calledName * @param callingName */ public SessionRequestPacket ( Configuration config, NetbiosName calledName, NetbiosName callingName ) { this.type = SESSION_REQUEST;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2.4K bytes - Viewed (0) -
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/ParserException.java
* * @param message the detail message explaining the cause of the exception */ public ParserException(String message) { super(message); } /** * Constructs a new ParserException with the specified detail message and cause. * * @param message the detail message explaining the cause of the exception * @param cause the underlying cause of the exception */
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Oct 03 16:03:55 UTC 2024 - 2K bytes - Viewed (0) -
api/maven-api-model/src/main/java/org/apache/maven/api/model/InputLocation.java
return importedFrom; } /** * Merges the {@code source} location into the {@code target} location. * * @param target the target location * @param source the source location * @param sourceDominant the boolean indicating of {@code source} is dominant compared to {@code target} * @return the merged location */
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Aug 15 13:24:49 UTC 2024 - 6.7K bytes - Viewed (0) -
src/test/java/jcifs/tests/RandomAccessFileTest.java
if ( offBuf[ i ] != 0 ) { fail("Not zero @ " + i); } } } /** * @param bufSize * @param length * @param is * @throws IOException */ static void verifyRandom ( int bufSize, long length, SmbRandomAccess is ) throws IOException { long start = System.currentTimeMillis();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 11.4K bytes - Viewed (0) -
docs/pt/docs/tutorial/metadata.md
Por exemplo: ```Python hl_lines="31" {!../../docs_src/metadata/tutorial001_1.py!} ``` ## Metadados para tags Você também pode adicionar metadados adicionais para as diferentes tags usadas para agrupar suas operações de rota com o parâmetro `openapi_tags`. Ele recebe uma lista contendo um dicionário para cada tag. Cada dicionário pode conter:
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Oct 29 10:36:14 UTC 2024 - 6.1K bytes - Viewed (0)