- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 102 for setLink (0.15 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) -
cni/pkg/iptables/iptables_linux.go
} func DelInpodMarkIPRule(cfg *Config) error { return forEachInpodMarkIPRule(cfg, netlink.RuleDel) } func forEachInpodMarkIPRule(cfg *Config, f func(*netlink.Rule) error) error { var rules []*netlink.Rule families := []int{unix.AF_INET} if cfg.EnableIPv6 { families = append(families, unix.AF_INET6) } for _, family := range families { // Equiv: // ip rule add fwmark 0x111/0xfff pref 32764 lookup 100 //
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Sep 06 09:44:28 UTC 2024 - 4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/ApiResult.java
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 12.5K 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) -
tensorflow/BUILD
1, 2, ]) ) # copybara:comment_end # Config setting used when building for products # which requires restricted licenses to be avoided. config_setting( name = "no_lgpl_deps", define_values = {"__TENSORFLOW_NO_LGPL_DEPS__": "1"}, visibility = ["//visibility:public"], ) # Config setting that disables the default logger, only logging # to registered TFLogSinks config_setting(
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Wed Oct 16 05:28:35 UTC 2024 - 53.5K bytes - Viewed (0) -
cmd/object-api-multipart_test.go
// Test case containing prefix values. // Setting prefix to be equal to object name.(Test number 22). {bucketNames[0], "minio-object-1.txt", "", "", "", 2, listMultipartResults[9], nil, true}, // Setting `prefix` to contain the object name as its prefix (Test number 23). {bucketNames[0], "min", "", "", "", 2, listMultipartResults[10], nil, true}, // Setting `prefix` to contain the object name as its prefix (Test number 24).
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Sep 06 09:42:21 UTC 2024 - 88.8K 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) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/ftp/FtpClient.java
} if (link.startsWith("/")) { redirect = ftpInfo.toUrl(file.getLink()); } else if (link.startsWith("../")) { redirect = ftpInfo.toChildUrl(file.getLink()); } else { redirect = ftpInfo.toChildUrl("../" + file.getLink()); } if (!uri.equals(redirect)) {
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Sat Oct 12 01:41:37 UTC 2024 - 25.7K bytes - Viewed (0)