Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 77 for Roots (0.13 sec)

  1. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/FileSystemNode.java

         *
         * {@link Optional#empty()} if no information is available.
         */
        Optional<MetadataSnapshot> getSnapshot();
    
        boolean hasDescendants();
    
        /**
         * Returns all the snapshot roots accessible from the node.
         */
        Stream<FileSystemLocationSnapshot> rootSnapshots();
    
        /*
         * Gets a snapshot from the current node with relative path filePath.substring(offset).
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectManager.java

        /**
         * Obtain an immutable list of compile source roots for the given project and scope.
         * Paths are absolute.
         *
         * @param project the project
         * @param scope the scope, i.e. usually main or test
         * @return the list of compile source roots
         */
        @Nonnull
        List<Path> getCompileSourceRoots(@Nonnull Project project, @Nonnull ProjectScope scope);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Feb 09 17:13:31 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. 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)
  4. cmd/kubeadm/app/phases/certs/certlist_test.go

    	certTree, err := certMap.CertTree()
    	t.Logf("cert tree: %v", certTree)
    	if err != nil {
    		t.Errorf("expected no error, but got %v", err)
    	}
    
    	if len(certTree) != 2 {
    		t.Errorf("Expected tree to have 2 roots, got %d", len(certTree))
    	}
    
    	if len(certTree[rootCert]) != 2 {
    		t.Errorf("Expected root to have 2 leaves, got %d", len(certTree[rootCert]))
    	}
    
    	if _, ok := certTree[selfSigned]; !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/FileUtils.java

         * That is, the term “file” is used in the java.io.File sense, not the regular file sense.
         *
         * @param files the site of files to find the encompassing roots of
         * @return the encompassing roots
         */
        public static Collection<? extends File> calculateRoots(Iterable<? extends File> files) {
            List<File> sortedFiles = Lists.newArrayList(files);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  6. okhttp-tls/README.md

    a client and a client that authenticates a server.
    
    ```java
    // Create the root for client and server to trust. We could also use different roots for each!
    HeldCertificate rootCertificate = new HeldCertificate.Builder()
        .certificateAuthority(0)
        .build();
    
    // Create a server certificate and a server that uses it.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Dec 17 15:34:10 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  7. okhttp-tls/src/main/kotlin/okhttp3/tls/HandshakeCertificates.kt

     *    will be used to authenticate the client's certificate chain. Typically this is not the same
     *    set of root certificates used in server authentication. Instead it will be a small set of
     *    roots private to an organization or service.
     */
    class HandshakeCertificates private constructor(
      @get:JvmName("keyManager") val keyManager: X509KeyManager,
      @get:JvmName("trustManager") val trustManager: X509TrustManager,
    ) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  8. pkg/istio-agent/plugins.go

    		}
    
    		tlsOpts.Key, tlsOpts.Cert = a.GetKeyCertsForCA()
    	}
    
    	// 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() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 11 03:32:57 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. platforms/software/platform-base/src/test/groovy/org/gradle/language/base/internal/tasks/StaleOutputCleanerTest.groovy

            !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')
            def file1 = destDir.file('file1').createFile()
            def file2 = tmpDir.file('file2').createFile()
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  10. 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)
Back to top