Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 245 for Roots (0.14 sec)

  1. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/LocalFileTree.java

     * limitations under the License.
     */
    package org.gradle.api.internal.file.collections;
    
    /**
     * A file tree whose contents are contained in zero or more local roots (file or directory).
     */
    public interface LocalFileTree extends MinimalFileTree {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 827 bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/test/integration/conversion/webhook.go

    // needed to configure a CRD to use this conversion webhook as its converter.
    func StartConversionWebhookServer(handler http.Handler) (func(), *apiextensionsv1.WebhookClientConfig, error) {
    	roots := x509.NewCertPool()
    	if !roots.AppendCertsFromPEM(localhostCert) {
    		return nil, nil, fmt.Errorf("failed to append Cert from PEM")
    	}
    	cert, err := tls.X509KeyPair(localhostCert, localhostKey)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 14 01:38:09 UTC 2022
    - 10.2K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/certs/renewal/filerenewer_test.go

    	}
    
    	// verify the renewed certificate
    	pool := x509.NewCertPool()
    	pool.AddCert(testCACert)
    
    	_, err = cert.Verify(x509.VerifyOptions{
    		DNSName:   "test-domain.space",
    		Roots:     pool,
    		KeyUsages: []x509.ExtKeyUsage{x509.ExtKeyUsageClientAuth},
    	})
    	if err != nil {
    		t.Errorf("couldn't verify new cert: %v", err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 28 04:36:54 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  4. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/FileWatcherUpdater.java

     *
     *     <dt>watchable hierarchies</dt>
     *     <dd>The list of file system hierarchies Gradle might want to watch if interesting content appears in the VFS for them.
     *     These are currently roots of the builds seen by the daemon during the current or previous invocations.
     *     Interesting content means that we keep track of something that actually exists under the hierarchy (so not exclusively missing files).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  5. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/declarations/KotlinStandaloneDeclarationProvider.kt

     * [shouldBuildStubsForBinaryLibraries] is true. In Standalone mode, binary roots don't need to be specified because library symbols are
     * provided via class-based deserialization, not stub-based deserialization.
     *
     * @param binaryRoots Binary roots of the binary libraries that are specific to [project].
     * @param sharedBinaryRoots Binary roots that are shared between multiple different projects. This allows Kotlin tests to cache stubs for
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  6. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinModuleStateModificationListener.kt

        /**
         * The [KtModule]'s properties or references to other modules are being changed.
         *
         * #### Examples
         *
         *  - The name of the module is being changed.
         *  - The module's content roots are being changed, such as adding another source folder to a source module.
         *  - If module A depends on module B and module B is being removed, in addition to the removal event for module B, module A also
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_get_boost.txt

    # If 'go get -u' finds an upgrade candidate that isn't viable,
    # but some other upgraded module's requirement moves past it
    # (for example, to a higher prerelease), then we should accept
    # the transitive upgrade instead of trying lower roots.
    
    go get -v -u . example.net/b@v0.1.0
    cmp go.mod go.mod.want
    
    -- go.mod --
    module example
    
    go 1.17
    
    require (
    	example.net/a v0.1.0
    	example.net/b v0.1.0
    	example.net/c v0.1.0
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 13:05:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/fingerprint/FileCollectionFingerprint.java

        /**
         * The underlying fingerprints indexed by absolute path.
         */
        Map<String, FileSystemLocationFingerprint> getFingerprints();
    
        /**
         * The Merkle hashes of the roots which make up this file collection fingerprint.
         */
        ImmutableMultimap<String, HashCode> getRootHashes();
    
        boolean wasCreatedWithStrategy(FingerprintingStrategy strategy);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/img/cpp-sourcesets-compilation.dot

        variantImplementation[style=dashed, label=<main<i>Variant</i>Implementation<br/>(configuration)>]
      }
    
      subgraph secondLine {
        includeRoot[style="rounded,filled", fillcolor="#bfffbf", label="Compilation include roots"]
      }
    
      subgraph thirdLine {
        {rank=same sourceFiles compileVariantCpp outputDirectory}
        includeRoot -> compileVariantCpp
        sourceFiles -> compileVariantCpp
        compileVariantCpp -> outputDirectory
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. analysis/analysis-api-impl-base/src/org/jetbrains/kotlin/analysis/api/impl/base/util/JdkClassFinder.java

            List<String> result = new ArrayList<>();
    
            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