- Sort Score
- Result 10 results
- Languages All
Results 1421 - 1430 of 1,711 for param7 (0.05 sec)
-
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/InvokerRequest.java
import org.apache.maven.api.services.MessageBuilderFactory; /** * Represents a Maven execution request, encapsulating all necessary information * for invoking a Maven build or command. * * @param <O> the type of {@link Options} used for this request, extending the base {@link Options} interface * * @since 4.0.0 */ @Immutable @Experimental public interface InvokerRequest<O extends Options> { /**
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Oct 17 08:06:47 UTC 2024 - 5.2K bytes - Viewed (0) -
docs/ja/docs/tutorial/body-fields.md
```Python hl_lines="11 12 13 14" {!../../docs_src/body_fields/tutorial001.py!} ``` `Field`は`Query`や`Path`、`Body`と同じように動作し、全く同様のパラメータなどを持ちます。 /// note | "技術詳細" 実際には次に見る`Query`や`Path`などは、共通の`Param`クラスのサブクラスのオブジェクトを作成しますが、それ自体はPydanticの`FieldInfo`クラスのサブクラスです。 また、Pydanticの`Field`は`FieldInfo`のインスタンスも返します。 `Body`は`FieldInfo`のサブクラスのオブジェクトを直接返すこともできます。そして、他にも`Body`クラスのサブクラスであるものがあります。
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 2.5K bytes - Viewed (0) -
guava/src/com/google/common/graph/SuccessorsFunction.java
* additional documentation, including <a * href="https://github.com/google/guava/wiki/GraphsExplained#notes-for-implementors">notes for * implementors</a> * * @author Joshua O'Madadhain * @author Jens Nyman * @param <N> Node parameter type * @since 23.0 */ @Beta @DoNotMock("Implement with a lambda, or use GraphBuilder to build a Graph with the desired edges") @ElementTypesAreNonnullByDefault public interface SuccessorsFunction<N> {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Apr 26 17:43:39 UTC 2021 - 4.3K bytes - Viewed (0) -
docs/pt/docs/virtual-environments.md
`uv` pode fazer muitas coisas, ele pode: * **Instalar o Python** para você, incluindo versões diferentes * Gerenciar o **ambiente virtual** para seus projetos * Instalar **pacotes** * Gerenciar **dependências e versões** de pacotes para seu projeto
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Sep 10 10:37:13 UTC 2024 - 22.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessMultipartRequestHandler.java
if (logger.isDebugEnabled()) { logger.debug("[param] {}={}", item.getFieldName(), item.getString()); } } protected void showFileFieldParameter(final DiskFileItem item) { if (logger.isDebugEnabled()) { logger.debug("[param] {}:{name={}, size={}}", item.getFieldName(), item.getName(), item.getSize()); } }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Wed Oct 23 13:27:21 UTC 2024 - 18.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateResponse.java
private DialectVersion selectedDialect; private boolean supportsEncryption; private int selectedCipher = -1; private int selectedPreauthHash = -1; /** * * @param cfg */ public Smb2NegotiateResponse ( Configuration cfg ) { super(cfg); } /** * {@inheritDoc} * * @see jcifs.internal.SmbNegotiationResponse#getInitialCredits()
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Mar 22 10:09:46 UTC 2020 - 17.6K bytes - Viewed (0) -
docs/pt/docs/tutorial/cors.md
Para conseguir isso, o backend deve ter uma lista de "origens permitidas". Neste caso, ele terá que incluir `http://localhost:8080` para o frontend funcionar corretamente. ## Curingas É possível declarar uma lista com `"*"` (um "curinga") para dizer que tudo está permitido.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 5.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/crawler/transformer/FessXpathTransformerTest.java
public void test_processFieldConfigs() { final FessXpathTransformer transformer = new FessXpathTransformer(); final Map<String, String> params = Maps.of("foo", "cache", "bar", "overwrite", "baz", "cache|overwrite"); FieldConfigs fieldConfigs = new FieldConfigs(params); final Map<String, Object> dataMap = Map.of(// "foo", new String[] { "aaa", "bbb" }, //
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Oct 24 13:01:38 UTC 2024 - 41.3K bytes - Viewed (0) -
src/main/java/jcifs/context/BaseContext.java
private final BufferCache bufferCache; private final SmbTransportPool transportPool; private final CredentialsInternal defaultCredentials; /** * Construct a context * * @param config * configuration for the context * */ public BaseContext ( Configuration config ) { this.config = config; this.dfs = new DfsImpl(this);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Nov 27 18:25:00 UTC 2022 - 5.3K bytes - Viewed (0) -
src/main/java/jcifs/context/SingletonContext.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sat Jun 01 08:53:08 UTC 2019 - 4.2K bytes - Viewed (0)