- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 76 for editable (0.09 sec)
-
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/Parameter.java
return alias; } public void setAlias(String alias) { this.alias = alias; } public boolean isEditable() { return editable; } public void setEditable(boolean editable) { this.editable = editable; } public void setDefaultValue(String defaultValue) { this.defaultValue = defaultValue; }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.1K bytes - Viewed (0) -
impl/maven-core/lifecycle-executor.txt
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 9.7K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnenc/goals/Init.java
String template = editable.getValue().getResult(); String prefix = template.substring(0, template.indexOf("$")); editMap = prompt.prompt( context.header, prompt.getPromptBuilder() .createInputPrompt()
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 12.1K bytes - Viewed (0) -
compat/maven-plugin-api/src/test/resources/plugin.xml
<name>finalName</name> <alias>jarName</alias> <type>java.lang.String</type> <implementation>java.lang.String</implementation> <required>false</required> <editable>true</editable> <description>parameter-description</description> <deprecated>deprecated-parameter</deprecated> <since>3.0.0</since> </parameter> </parameters> <configuration>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.3K bytes - Viewed (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilder.java
PlexusConfiguration editableConfig = d.getChild("editable"); // we need the null check for pre-build legacy plugins... if (editableConfig != null) { String editable = d.getChild("editable").getValue(); parameter.setEditable(editable == null || Boolean.parseBoolean(editable)); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 17.6K bytes - Viewed (0) -
compat/maven-compat/src/main/mdo/paramdoc.mdo
<type>String</type> </field> <field> <version>1.0.0</version> <name>editable</name> <description>Whether the value of this expression can be changed.</description> <type>boolean</type> <defaultValue>true</defaultValue> </field> </fields>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.4K bytes - Viewed (0) -
compat/maven-settings-builder/src/main/java/org/apache/maven/settings/building/SettingsBuildingRequest.java
* settings and global settings are given, the user settings take precedence. * * @param globalSettingsFile The global settings file, may be {@code null} to disable global settings. * @return This request, never {@code null}. */ SettingsBuildingRequest setGlobalSettingsFile(File globalSettingsFile); /** * Gets the global settings source. *
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6K bytes - Viewed (0) -
docs/en/docs/how-to/configure-swagger-ui.md
## Disable Syntax Highlighting For example, you could disable syntax highlighting in Swagger UI. Without changing the settings, syntax highlighting is enabled by default: <img src="/img/tutorial/extending-openapi/image02.png"> But you can disable it by setting `syntaxHighlight` to `False`:
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat Oct 26 16:50:52 UTC 2024 - 2.7K bytes - Viewed (0) -
docs/en/docs/how-to/custom-docs-ui-assets.md
This could be useful if for example you live in a country that restricts some URLs. ### Disable the automatic docs The first step is to disable the automatic docs, as by default, those use the default CDN. To disable them, set their URLs to `None` when creating your `FastAPI` app: {* ../../docs_src/custom_docs_ui/tutorial001.py hl[8] *} ### Include the custom docs
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Mon Oct 28 10:42:34 UTC 2024 - 7.3K bytes - Viewed (0) -
docs/en/docs/how-to/conditional-openapi.md
# Conditional OpenAPI If you needed to, you could use settings and environment variables to configure OpenAPI conditionally depending on the environment, and even disable it entirely. ## About security, APIs, and docs Hiding your documentation user interfaces in production *shouldn't* be the way to protect your API. That doesn't add any extra security to your API, the *path operations* will still be available where they are.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Mon Oct 28 11:21:54 UTC 2024 - 2.3K bytes - Viewed (0)