Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 268 for roots (0.04 sec)

  1. 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)
  2. staging/src/k8s.io/apiserver/pkg/authentication/request/x509/verify_options.go

    func NewStaticVerifierFromFile(clientCA string) (VerifyOptionFunc, error) {
    	if len(clientCA) == 0 {
    		return nil, nil
    	}
    
    	// Wrap with an x509 verifier
    	var err error
    	opts := DefaultVerifyOptions()
    	opts.Roots, err = cert.NewPool(clientCA)
    	if err != nil {
    		return nil, fmt.Errorf("error loading certs from  %s: %v", clientCA, err)
    	}
    
    	return StaticVerifierFn(opts), nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 07 19:48:24 UTC 2019
    - 2.2K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/certs/certlist_test.go

    }
    
    func TestMakeCertTree(t *testing.T) {
    	rootCert := &KubeadmCert{
    		Name: "root",
    	}
    	leaf0 := &KubeadmCert{
    		Name:   "leaf0",
    		CAName: "root",
    	}
    	leaf1 := &KubeadmCert{
    		Name:   "leaf1",
    		CAName: "root",
    	}
    	selfSigned := &KubeadmCert{
    		Name: "self-signed",
    	}
    
    	certMap := CertificateMap{
    		"root":        rootCert,
    		"leaf0":       leaf0,
    		"leaf1":       leaf1,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. src/cmd/go/testdata/script/mod_get_issue47979.txt

    # Regression test for https://golang.org/issue/47979:
    #
    # An argument to 'go get' that results in an upgrade to a different existing
    # root should be allowed, and should not panic the 'go' command.
    
    cp go.mod go.mod.orig
    
    
    # Transitive upgrades from upgraded roots should not prevent
    # 'go get -u' from performing upgrades.
    
    cp go.mod.orig go.mod
    go get -u .
    cmp go.mod go.mod.want
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top