- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 43 for setLink (0.09 sec)
-
doc/godebug.md
There is no plan to remove this setting. Go 1.19 started sending EDNS0 additional headers on DNS requests. This can reportedly break the DNS server provided on some routers, such as CenturyLink Zyxel C3000Z. This can be changed by the [`netedns0` setting](/pkg/net#hdr-Name_Resolution). This setting is available in Go 1.21.12, Go 1.22.5, Go 1.23, and later. There is no plan to remove this setting. ### Go 1.18
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Mon Oct 28 14:46:33 UTC 2024 - 17.2K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/DebugResolutionListener.java
} } public void updateScope(Artifact artifact, String scope) { logger.debug(indent + artifact + " (setting artifactScope to: " + scope + ")"); } public void selectVersionFromRange(Artifact artifact) { logger.debug(indent + artifact + " (setting version to: " + artifact.getVersion() + " from range: " + artifact.getVersionRange() + ")"); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.6K bytes - Viewed (0) -
docs/en/docs/how-to/configure-swagger-ui.md
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`: {* ../../docs_src/configure_swagger_ui/tutorial001.py hl[3] *} ...and then Swagger UI won't show the syntax highlighting anymore: <img src="/img/tutorial/extending-openapi/image03.png">
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/conditional-openapi.md
For example: {* ../../docs_src/conditional_openapi/tutorial001.py hl[6,11] *} Here we declare the setting `openapi_url` with the same default of `"/openapi.json"`. And then we use it when creating the `FastAPI` app. Then you could disable OpenAPI (including the UI docs) by setting the environment variable `OPENAPI_URL` to the empty string, like: <div class="termy"> ```console
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Mon Oct 28 11:21:54 UTC 2024 - 2.3K bytes - Viewed (0) -
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/Options.java
* @return a boolean indicating whether raw streams should be logged */ @Nonnull Optional<Boolean> rawStreams(); /** * Returns the color setting for console output. * * @return an {@link Optional} containing the color setting, or empty if not set */ @Nonnull Optional<String> color(); /** * Indicates whether to show help information. *
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Tue Oct 22 14:53:58 UTC 2024 - 6.3K bytes - Viewed (0) -
doc/next/6-stdlib/99-minor/net/http/65035.md
It previously aborted a request and returned an error after receiving more than 5 1xx responses. It now returns an error if the total size of all 1xx responses exceeds the [Transport.MaxResponseHeaderBytes] configuration setting. In addition, when a request has a [net/http/httptrace.ClientTrace.Got1xxResponse] trace hook, there is now no limit on the total number of 1xx responses.
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Oct 25 03:22:33 UTC 2024 - 549 bytes - Viewed (0) -
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/MavenRepositorySystemUtils.java
*/ package org.apache.maven.repository.internal; import org.eclipse.aether.DefaultRepositorySystemSession; import org.eclipse.aether.util.graph.manager.ClassicDependencyManager; /** * A utility class to assist in setting up a Maven-like repository system. Note: This component is meant to * assist those clients that employ the repository system outside of an IoC container, Maven plugins should instead
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.4K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java
if (commandLine.hasOption(option)) { setting.accept(false); } } private void disableOnPresentOption( final CommandLine commandLine, final char option, final Consumer<Boolean> setting) { disableOnPresentOption(commandLine, String.valueOf(option), setting); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 76.8K bytes - Viewed (0) -
compat/maven-builder-support/pom.xml
<relativePath>../../</relativePath> </parent> <artifactId>maven-builder-support</artifactId> <name>Maven Builder Support</name> <description>Support for descriptor builders (model, setting, toolchains)</description> <dependencies> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <scope>test</scope> </dependency>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.6K bytes - Viewed (0) -
docs/en/docs/advanced/additional-status-codes.md
But you also want it to accept new items. And when the items didn't exist before, it creates them, and returns an HTTP status code of 201 "Created". To achieve that, import `JSONResponse`, and return your content there directly, setting the `status_code` that you want: {* ../../docs_src/additional_status_codes/tutorial001_an_py310.py hl[4,25] *} /// warning When you return a `Response` directly, like in the example above, it will be returned directly.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 27 16:12:23 UTC 2024 - 1.9K bytes - Viewed (0)