Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 147 for roots (0.04 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/resolve/SourceSetNativeDependencyResolver.java

            }
    
            private class HeaderFileCollection implements MinimalFileSet, Buildable {
                @Override
                public String getDisplayName() {
                    return "Include roots of " + sourceSet.getName();
                }
    
                @Override
                public Set<File> getFiles() {
                    return sourceSet.getExportedHeaders().getSrcDirs();
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. okhttp-tls/src/main/kotlin/okhttp3/tls/HandshakeCertificates.kt

     *    certificates to establish trust from a root certificate to the server's certificate. The root
     *    certificate is not included in this chain.
     *  * The client's handshake certificates must include a set of trusted root certificates. They will
     *    be used to authenticate the server's certificate chain. Typically this is a set of well-known
     *    root certificates that is distributed with the HTTP client or its platform. It may be
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  5. pkg/istio-agent/plugins.go

    	}
    
    	// Will use TLS unless the reserved 15010 port is used ( istiod on an ipsec/secure VPC)
    	// rootCert may be nil - in which case the system roots are used, and the CA is expected to have public key
    	// Otherwise assume the injection has mounted /etc/certs/root-cert.pem
    	return citadel.NewCitadelClient(opts, tlsOpts)
    }
    
    func init() {
    	providers["Citadel"] = createCitadel
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 11 03:32:57 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  6. platforms/software/platform-base/src/test/groovy/org/gradle/language/base/internal/tasks/StaleOutputCleanerTest.groovy

        }
    
        def "does not delete the root directory"() {
            def file1 = tmpDir.file('foo/bar/file1').createFile()
    
            expect:
            StaleOutputCleaner.cleanOutputs(deleter, files(file1), tmpDir.testDirectory)
            !tmpDir.file('foo').exists()
            tmpDir.testDirectory.exists()
        }
    
        def "does not delete files that are not under one of the given roots"() {
            def destDir = tmpDir.file('dir')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  7. cmd/importverifier/importverifier.go

    // trees for a tree of source code
    type ImportRestriction struct {
    	// BaseDir is the root of a package tree that is restricted by this
    	// configuration, given as a relative path from the root of the repository.
    	// This is a directory which `go list` might not consider a package (if it
    	// has not .go files)
    	BaseDir string `yaml:"baseImportPath"`
    	// IgnoredSubTrees are roots of sub-trees of the BaseDir for which we do
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:16 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  8. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/AbstractFileSystemLocationSnapshot.java

            return missingSnapshotForAbsolutePath(relativePath.getAbsolutePath());
        }
    
        @Override
        public Stream<FileSystemLocationSnapshot> roots() {
            return Stream.of(this);
        }
    
        @Override
        public boolean equals(Object o) {
            if (this == o) {
                return true;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 13:19:32 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  9. 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)
  10. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/resolver/SourcePathProviderTest.kt

         * it is testing the fallback behavior of [SourcePathProvider]
         */
        @Test
        fun `given buildSrc folder, it will fallback to approximate buildSrc source roots`() {
            withFolders {
                "project" {
                    "buildSrc/src/main" {
                        +"foo"
                        +"bar"
                    }
                }
                "gradle" {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 17:35:41 UTC 2023
    - 7.1K bytes
    - Viewed (0)
Back to top