- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 123 for roots (0.02 seconds)
-
okhttp-tls/README.md
starting with its own and including everything up-to but not including the root. We don't need to include root certificates because the client already has them. ```java HandshakeCertificates serverHandshakeCertificates = new HandshakeCertificates.Builder() .heldCertificate(serverCertificate, intermediateCertificate.certificate()) .build(); ``` The client only needs to know the trusted root certificate. It checks the server's certificate by
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Sun Mar 15 09:01:42 GMT 2026 - 9.1K bytes - Click Count (0) -
scripts/docs.py
all_docs_content = "" for md_file in docs_path.rglob("*.md"): all_docs_content += md_file.read_text(encoding="utf-8") # Build a set of directory-based package roots (e.g. docs_src/bigger_applications/app_py39) # where at least one file is referenced in docs. All files in these directories # should be kept since they may be internally imported by the referenced files.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 17:46:10 GMT 2026 - 25.4K bytes - Click Count (0) -
CHANGELOG/CHANGELOG-1.36.md
- K8s.io/client-go/transport now automatically reloads certificate authority roots from disk when they are supplied via a file path. This functionality is enabled by default and can be disabled via the ClientsAllowCARotation feature gate. ([#132922](https://github.com/kubernetes/kubernetes/pull/132922), [@yt2985](https://github.com/yt2985))...
Created: Fri Apr 03 09:05:14 GMT 2026 - Last Modified: Thu Mar 19 23:38:00 GMT 2026 - 142.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java
/** XPath expression for extracting robots content from meta tags */ private static final String META_NAME_ROBOTS_CONTENT = "//META[@name=\"robots\" or @name=\"ROBOTS\"]/@content"; /** Robots tag value indicating no indexing or following */ private static final String ROBOTS_TAG_NONE = "none"; /** Robots tag value indicating no indexing */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 12 01:46:45 GMT 2026 - 55.3K bytes - Click Count (0) -
build-logic/build-update-utils/src/main/kotlin/gradlebuild.root-target-runtimes.gradle.kts
Justin Van Dort <******@****.***> 1769457118 -0500
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Mar 11 22:40:18 GMT 2026 - 2.2K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/TreeMultiset.java
@Override long treeAggregate(@Nullable AvlNode<?> root) { return (root == null) ? 0 : root.totalCount; } }, DISTINCT { @Override int nodeAggregate(AvlNode<?> node) { return 1; } @Override long treeAggregate(@Nullable AvlNode<?> root) { return (root == null) ? 0 : root.distinctElements; } };Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 16 13:11:08 GMT 2026 - 34K bytes - Click Count (0) -
samples/static-server/src/main/java/okhttp3/sample/SampleServer.java
import okio.Okio; public class SampleServer extends Dispatcher { private final SSLContext sslContext; private final String root; private final int port; public SampleServer(SSLContext sslContext, String root, int port) { this.sslContext = sslContext; this.root = root; this.port = port; } public void run() throws IOException { MockWebServer server = new MockWebServer();Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Wed Mar 11 02:37:00 GMT 2026 - 5.3K bytes - Click Count (0) -
src/main/webapp/WEB-INF/env/suggest/resources/log4j2.xml
<Logger name="org.codelibs.fess" additivity="false" level="${log.level}"> <AppenderRef ref="AppFile" /> <AppenderRef ref="LogNotification" /> </Logger> <Root level="${root.log.level}"> <AppenderRef ref="AppFile" /> <AppenderRef ref="LogNotification" /> </Root> </Loggers>
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 1.6K bytes - Click Count (0) -
src/main/webapp/WEB-INF/env/thumbnail/resources/log4j2.xml
<Logger name="org.codelibs.fess" additivity="false" level="${log.level}"> <AppenderRef ref="AppFile" /> <AppenderRef ref="LogNotification" /> </Logger> <Root level="${root.log.level}"> <AppenderRef ref="AppFile" /> <AppenderRef ref="LogNotification" /> </Root> </Loggers>
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 1.6K bytes - Click Count (0) -
docs/tr/docs/advanced/behind-a-proxy.md
### `root_path` Sağlama { #providing-the-root-path } Bunu yapmak için `--root-path` komut satırı seçeneğini şöyle kullanabilirsiniz: <div class="termy"> ```console $ fastapi run main.py --forwarded-allow-ips="*" --root-path /api/v1 <span style="color: green;">INFO</span>: Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit) ```Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 16.5K bytes - Click Count (0)