Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 3,426 for directory1 (0.2 sec)

  1. pom.xml

    						<!-- logs (empty) -->
    						<mapping>
    							<directory>${packaging.fess.log.dir}</directory>
    						</mapping>
    						<!-- temp (empty) -->
    						<mapping>
    							<directory>${packaging.fess.temp.dir}</directory>
    						</mapping>
    						<!-- dictionary (empty) -->
    						<mapping>
    							<directory>${packaging.fess.dictionary.dir}</directory>
    							<filemode>755</filemode>
    							<username>opensearch</username>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 30 06:49:02 UTC 2024
    - 48.7K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/caching/internal/packaging/impl/DefaultTarPackerFileSystemSupportTest.groovy

            fileSystemSupport.ensureDirectoryForTree(DIRECTORY, targetOutputDir)
    
            then:
            targetOutputDir.assertIsEmptyDir()
        }
    
        def "cleans up leftover files in output directory"() {
            def targetOutputDir = temporaryFolder.file("build/output")
            targetOutputDir.file("sub-dir/data.txt") << "Some data"
    
            when:
            fileSystemSupport.ensureDirectoryForTree(DIRECTORY, targetOutputDir)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 06 01:29:26 UTC 2020
    - 3K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/caching/local/internal/DirectoryBuildCacheServiceFactory.java

        }
    
        private static void checkDirectory(File directory) {
            if (directory.exists()) {
                if (!directory.isDirectory()) {
                    throw new IllegalArgumentException(String.format("Cache directory %s must be a directory", directory));
                }
                if (!directory.canRead()) {
                    throw new IllegalArgumentException(String.format("Cache directory %s must be readable", directory));
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 18:35:55 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  4. src/io/ioutil/tempfile.go

    }
    
    // TempDir creates a new temporary directory in the directory dir.
    // The directory name is generated by taking pattern and applying a
    // random string to the end. If pattern includes a "*", the random string
    // replaces the last "*". TempDir returns the name of the new directory.
    // If dir is the empty string, TempDir uses the
    // default directory for temporary files (see [os.TempDir]).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:34:35 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. maven-core/src/test/resources-project-builder/foo/sub/pom.xml

                    <jar destfile="${basedir}/target/test-classes/${test.projects.repository}/${test.projects.target.directory}/${test.projects.archetype}.jar" basedir="${basedir}/src/test/archetypes/${test.projects.source.directory}/" />
                  </tasks>
                </configuration>
                <goals>
                  <goal>run</goal>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 08:59:31 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_outside.txt

    # 'go build' without arguments implicitly operates on the current directory, and should fail.
    cd needmod
    ! go build
    stderr '^go: go.mod file not found in current directory or any parent directory; see ''go help modules''$'
    cd ..
    
    # 'go build' of a non-module directory should fail too.
    ! go build ./needmod
    stderr '^go: go.mod file not found in current directory or any parent directory; see ''go help modules''$'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 18 15:34:40 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  7. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/internal/tasks/DefaultSourceSetOutput.java

        /**
         * Set the task contributor to the provided resources directory. The provided resources
         * directory provider should resolve to the same directory set by {@link #setResourcesDir}.
         *
         * @param directory The resources directory provider.
         * @param task The task which generates {@code directory}.
         */
        public void setResourcesContributor(Provider<File> directory, TaskProvider<?> task) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  8. maven-model-builder/src/main/resources/org/apache/maven/model/pom-4.1.0.xml

        <resources>
          <resource>
            <directory>${project.basedir}/src/main/resources</directory>
          </resource>
          <resource>
            <directory>${project.basedir}/src/main/resources-filtered</directory>
            <filtering>true</filtering>
          </resource>
        </resources>
        <testResources>
          <testResource>
            <directory>${project.basedir}/src/test/resources</directory>
          </testResource>
          <testResource>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Sep 26 05:17:52 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/HttpDirectoryResource.groovy

        final String path
        private final TestFile directory
    
        HttpDirectoryResource(HttpServer server, String path, TestFile directory) {
            super(server)
            this.directory = directory
            this.path = path
            this.server = server
        }
    
        @Override
        public void expectGet() {
            server.expectGetDirectoryListing(path, directory)
        }
    
        public void allowGet() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r50/ToolingApiIdeaModelCrossVersionSpec.groovy

            root.sourceDirectories[0].directory == file('mainSources')
            root.resourceDirectories.size() == 1
            root.resourceDirectories[0].directory == file('mainResources')
            root.testDirectories.size() == 1
            root.testDirectories[0].directory == file('testSources')
            root.testResourceDirectories.size() == 1
            root.testResourceDirectories[0].directory == file('testResources')
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top