Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 76 for Roots (0.05 sec)

  1. src/crypto/x509/root_linux.go

    	"/etc/pki/tls/certs", // Fedora/RHEL
    }
    
    func init() {
    	if goos.IsAndroid == 1 {
    		certDirectories = append(certDirectories,
    			"/system/etc/security/cacerts",    // Android system roots
    			"/data/misc/keychain/certs-added", // User trusted CA folder
    		)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 17:55:35 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/GroovyIncrementalCompilationIntegrationTest.groovy

            textFile.text = "text file as root"
    
            expect:
            fails language.compileTaskName
            failure.assertHasCause(
                'Unable to infer source roots. ' +
                    'Incremental Groovy compilation requires the source roots. ' +
                    'Change the configuration of your sources or disable incremental Groovy compilation.')
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/BaseJavaSourceIncrementalCompilationIntegrationTest.groovy

            output.contains("Full recompilation is required because the source roots could not be inferred.")
        }
    
        def "does not recompile when a resource changes"() {
            given:
            buildFile << """
                ${language.compileTaskName}.source 'src/main/resources'
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  10. 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)
Back to top