Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 3,426 for directory1 (0.13 sec)

  1. src/main/java/org/codelibs/fess/job/PythonJob.java

                if (logger.isInfoEnabled()) {
                    logger.info("Python: \nDirectory={}\nOptions={}", baseDir, cmdList);
                }
    
                final JobProcess jobProcess = processHelper.startProcess(sessionId, cmdList, pb -> {
                    pb.directory(baseDir);
                    pb.redirectErrorStream(true);
                    final Map<String, String> environment = pb.environment();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/resources/org/apache/maven/model/pom-4.0.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: Fri Apr 12 10:50:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/project-dynamism/pom-relative.xml

      <properties>
        <myProperty>${pom.build.directory}</myProperty>
      </properties>
    
      <build>
        <resources>
          <resource>
            <directory>${pom.build.directory}/generated-resources/plexus</directory>
          </resource>
        </resources>
    
        <filters>
          <filter>${pom.build.directory}/generated-filters.properties</filter>
        </filters>
    
        <directory>target</directory>
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Nov 09 12:45:14 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/file/UserClassFilePermissions.java

    /**
     * Describes file and directory access permissions for a certain class of users (see {@link FilePermissions}).
     * <p>
     * Permissions consist of:
     * <ul>
     *     <li>READ access: the capability to view the contents of a file, or to list the contents of a directory</li>
     *     <li>WRITE access: the capability to modify or remove the contents of a file, or to add or remove files to/from a directory</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 12:31:43 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/changes/OutputFileChangesTest.groovy

            expect:
            changes(
                directory("root", [
                    regularFile("root/one", 0x1234),
                    regularFile("root/two", 0x2345)
                ]),
                directory("root", [
                    regularFile("root/one", 0x1234),
                    regularFile("root/two", 0x2345)
                ])
            ) == []
        }
    
        def "type change directory -> regular file"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  6. src/os/dir.go

    // explaining why. At the end of a directory, the error is [io.EOF].
    //
    // If n <= 0, Readdir returns all the FileInfo from the directory in
    // a single slice. In this case, if Readdir succeeds (reads all
    // the way to the end of the directory), it returns the slice and a
    // nil error. If it encounters an error before the end of the
    // directory, Readdir returns the FileInfo read until that point
    // and a non-nil error.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/DirectoryPropertyTest.groovy

    package org.gradle.api.internal.file
    
    import org.gradle.api.file.Directory
    import org.gradle.api.internal.provider.MissingValueException
    import org.gradle.api.internal.provider.PropertyInternal
    import org.gradle.internal.state.ManagedFactory
    
    class DirectoryPropertyTest extends FileSystemPropertySpec<Directory> {
        @Override
        Class<Directory> type() {
            return Directory.class
        }
    
        @Override
        Directory someValue() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/initialization/Settings.java

        /**
         * <p>Returns the settings directory of the build. The settings directory is the directory containing the settings
         * file.</p>
         *
         * @return The settings directory. Never returns null.
         */
        File getSettingsDir();
    
        /**
         * <p>Returns the root directory of the build. The root directory is the project directory of the root project.</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 08:36:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-filepath.h

      // not represent a directory (that is, it doesn't end with a path separator).
      bool CreateDirectoriesRecursively() const;
    
      // Create the directory so that path exists. Returns true if successful or
      // if the directory already exists; returns false if unable to create the
      // directory for any reason, including if the parent directory does not
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  10. maven-model-builder/src/main/java/org/apache/maven/model/locator/ModelLocator.java

    /**
     * Locates a POM file within a project base directory.
     *
     */
    public interface ModelLocator {
    
        /**
         * Locates the POM file within the specified project directory. In case the given project directory does not exist
         * or does not contain a POM file, the return value indicates the expected path to the POM file. Subdirectories of
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top