Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 105 for Director (1.22 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtCompilerFacility.kt

    }
    
    public typealias KtCompilationResult = KaCompilationResult
    
    public interface KaCompiledFile {
        /**
         * Path of the compiled file relative to the root of the output directory.
         */
        public val path: String
    
        /**
         * Source files that were compiled to produce this file.
         */
        public val sourceFiles: List<File>
    
        /**
         * Content of the compiled file.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleJavadocsPlugin.java

            generateJavadocs(project, layout, tasks, extension);
        }
    
        private void generateJavadocs(Project project, ProjectLayout layout, TaskContainer tasks, GradleDocumentationExtension extension) {
            // TODO: Staging directory should be a part of the Javadocs extension
            // TODO: Pull out more of this configuration into the extension if it makes sense
            // TODO: in a typical project, this may need to be the regular javadoc task vs javadocAll
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:10:18 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheReport.kt

                    if (!reportFile.exists()) {
                        require(reportDir.mkdirs()) {
                            "Could not create configuration cache report directory '$reportDir'"
                        }
                        Files.move(spoolFile.toPath(), reportFile.toPath())
                    }
                    return reportFile
                }
    
                private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheHost.kt

                projectState.createMutableModel(coreAndPluginsScope, coreAndPluginsScope)
                val project = projectState.mutableModel
                // Build dir is restored in order to use the correct workspace directory for transforms of project dependencies when the build dir has been customized
                buildDirs[project.projectPath]?.let {
                    project.layout.buildDirectory.set(it)
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheTestKitIntegrationTest.groovy

            given:
            // Setting Jacoco destination dir to non-ascii location causes some problems,
            // so let's write to a temporary directory without non-ascii characters
            def jacocoDestinationFile = TextUtil.normaliseFileSeparators("${jacocoDestinationDir.absolutePath}/jacoco.exec")
            buildFile << """
                plugins {
                    id 'java'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modcmd/edit.go

    replacement without a version on the left side is added, which applies
    to all versions of the old module path. If the @v in new@v is omitted,
    the new path should be a local module root directory, not a module
    path. Note that -replace overrides any redundant replacements for old[@v],
    so omitting @v will drop existing replacements for specific versions.
    
    The -dropreplace=old[@v] flag drops a replacement of the given
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  7. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb/SmbClient.java

                    }
                } else if (file.isDirectory()) {
                    if (logger.isDebugEnabled()) {
                        logger.debug("Parsing SmbFile Directory: {}", filePath);
                    }
                    final Set<RequestData> requestDataSet = new HashSet<>(100);
                    if (includeContent) {
                        final SmbFile[] files = file.listFiles();
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu May 23 01:54:10 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/base/FinalizableReferenceQueueClassLoaderUnloadingTest.java

          try {
            try {
              urls.add(new File(entry).toURI().toURL());
            } catch (SecurityException e) { // File.toURI checks to see if the file is a directory
              urls.add(new URL("file", null, new File(entry).getAbsolutePath()));
            }
          } catch (MalformedURLException e) {
            throw new AssertionError("malformed class path entry: " + entry, e);
          }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. gradlew

            JAVACMD=$JAVA_HOME/jre/sh/java
        else
            JAVACMD=$JAVA_HOME/bin/java
        fi
        if [ ! -x "$JAVACMD" ] ; then
            die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
    
    Please set the JAVA_HOME variable in your environment to match the
    location of your Java installation."
        fi
    else
        JAVACMD=java
        if ! command -v java >/dev/null 2>&1
        then
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 11:20:16 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  10. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

                                Version.BASE,
                                "modules.module[" + i + "]",
                                null,
                                "has been specified without a path to the project directory.",
                                m.getLocation("modules"));
                    }
                }
            }
    
            validateStringNotEmpty("version", problems, Severity.ERROR, Version.BASE, m.getVersion(), m);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
Back to top