Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,336 for root1 (0.07 sec)

  1. 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
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Dec 17 15:34:10 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/BuildOperationsFixture.groovy

            getTree().roots
        }
    
        List<BuildOperationRecord> getDanglingChildren() {
            new BuildOperationTreeFixture(BuildOperationTrace.readPartialTree(path)).roots.findAll { it.parentId != null }
        }
    
        @Override
        @SuppressWarnings("GrUnnecessaryPublicModifier")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 09:21:24 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/FileUtils.java

         * tries to step beyond the file system root, the root is returned.
         */
        public static File normalize(File src) {
            String path = src.getAbsolutePath();
            String normalizedPath = FilenameUtils.normalizeNoEndSeparator(path);
            if (normalizedPath != null) {
                return new File(normalizedPath);
            }
            File root = src;
            File parent = root.getParentFile();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/CompilationSourceDirs.java

            }
    
            @Override
            public void visitFileTree(File root, PatternSet patterns, FileTreeInternal fileTree) {
                // We need to add missing files as source roots, since the package name for deleted files provided by InputChanges also need to be determined.
                if (!root.exists() || root.isDirectory()) {
                    sourceRoots.add(root);
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  5. maven-model-builder/src/test/resources/poms/depmgmt/root-dep-last.xml

    Tamas Cservenak <******@****.***> 1706804704 +0100
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Feb 01 16:25:04 UTC 2024
    - 951 bytes
    - Viewed (0)
  6. samples/certs/root-cert-combined.pem

    Greg Hanson <******@****.***> 1702658677 -0500
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 15 16:44:37 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  7. maven-model-builder/src/test/resources/poms/depmgmt/root-distance-explicit.xml

    Tamas Cservenak <******@****.***> 1706804704 +0100
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Feb 01 16:25:04 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. maven-model-builder/src/test/resources/poms/depmgmt/root-two-imports.xml

    Tamas Cservenak <******@****.***> 1706804704 +0100
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Feb 01 16:25:04 UTC 2024
    - 1K bytes
    - Viewed (0)
  9. samples/certs/root-cert-combined-2.pem

    Greg Hanson <******@****.***> 1702658677 -0500
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 15 16:44:37 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  10. analysis/analysis-api-impl-base/src/org/jetbrains/kotlin/analysis/api/impl/base/util/JdkClassFinder.java

            if (isExplodedModularRuntime(jdkHome)) {
                try {
                    try (DirectoryStream<Path> roots = Files.newDirectoryStream(jdkHome.resolve("modules"))) {
                        for (Path root : roots) {
                            result.add(getUrlForLibraryRoot(root));
                        }
                    }
                }
                catch (IOException ignore) {
                }
            }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Sep 06 07:36:11 UTC 2023
    - 9K bytes
    - Viewed (0)
Back to top