Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 3,426 for directory1 (0.17 sec)

  1. platforms/core-runtime/native/src/jmh/java/org/gradle/internal/nativeintegration/filesystem/FileMetadataAccessorBenchmark.java

        File missing;
        Path missingPath;
        File directory;
        Path directoryPath;
        File realFile;
        Path realFilePath;
    
        @Setup
        public void prepare() throws IOException {
            accessor = getAccessor(accessorClassName);
            missing = new File(UUID.randomUUID().toString());
            missingPath = missing.toPath();
            directory = File.createTempFile("jmh", "dir");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:50:56 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. src/embed/embed.go

    	}
    	n := copy(b, f.f.data[offset:])
    	if n < len(b) {
    		return n, io.EOF
    	}
    	return n, nil
    }
    
    // An openDir is a directory open for reading.
    type openDir struct {
    	f      *file  // the directory file itself
    	files  []file // the directory contents
    	offset int    // the read offset, an index into the files slice
    }
    
    func (d *openDir) Close() error               { return nil }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:42:51 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/file/ConfigurableFilePermissions.java

     * limitations under the License.
     */
    
    package org.gradle.api.file;
    
    import org.gradle.api.Action;
    
    /**
     * Provides the means of specifying file and directory access permissions for all classes of system users.
     * <p>
     * For details on classes of users and file/directory permissions see {@link FilePermissions}.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 12:31:43 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/work_vendor_modules_txt_consistent.txt

    go: inconsistent vendoring in $GOPATH${/}src:
    	example.com/p@v1.0.0: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
    
    	To ignore the vendor directory, use -mod=readonly or -mod=mod.
    	To sync the vendor directory, run:
    		go work vendor
    -- modules.txt.missing_replacement --
    ## workspace
    # example.com/p v1.0.0
    ## explicit; go 1.21
    # example.com/q v1.0.0 => ./q
    ## explicit; go 1.21
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 11 01:59:23 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/telemetry/internal/upload/Doc.txt

    If the name starts with local, skip it. If there is a file with the
    identical name in the upload directory, remove the one in the local directory.
    Otherwise try to upload the one in the local directory,
    If the upload succeeds, move the file to the uploaded directory.
    
    
    There are various error conditions.
    1. Several processes could look at localdir and see work to do.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/version_buildvcs_nested.txt

    stderr '^\tUse -buildvcs=false to disable VCS stamping.$'
    go build -buildvcs=false
    go mod init example.com/root/hgsub
    go build
    cd ..
    
    # It's an error to build a package from a nested Git repository if the package
    # is in a separate repository from the current directory or from the module
    # root directory.
    mkdir gitsub
    cd gitsub
    exec git init
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:18:32 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  7. maven-core/src/test/projects/plugin-manager/project-with-plugin-classpath-ordering/sub/repo/org/apache/maven/its/mng3906/a/0.2/a-0.2.pom

      </properties>
    
      <build>
        <resources>
          <resource>
            <directory>.</directory>
            <includes>
              <include>pom.xml</include>
              <include>src/**</include>
            </includes>
          </resource>
          <resource>
            <directory>src/main/resources</directory>
          </resource>
        </resources>
      </build>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jun 02 16:35:38 UTC 2010
    - 1.6K bytes
    - Viewed (0)
  8. maven-core/src/test/projects/plugin-manager/project-with-plugin-classpath-ordering/sub/repo/org/apache/maven/its/mng3906/c/0.1/c-0.1.pom

      </properties>
    
      <build>
        <resources>
          <resource>
            <directory>.</directory>
            <includes>
              <include>pom.xml</include>
              <include>src/**</include>
            </includes>
          </resource>
          <resource>
            <directory>src/main/resources</directory>
          </resource>
        </resources>
      </build>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jun 02 16:35:38 UTC 2010
    - 1.6K bytes
    - Viewed (0)
  9. maven-core/src/test/projects/plugin-manager/project-with-plugin-classpath-ordering/sub/repo/org/apache/maven/its/mng3906/e/0.1/e-0.1.pom

      </properties>
    
      <build>
        <resources>
          <resource>
            <directory>.</directory>
            <includes>
              <include>pom.xml</include>
              <include>src/**</include>
            </includes>
          </resource>
          <resource>
            <directory>src/main/resources</directory>
          </resource>
        </resources>
      </build>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jun 02 16:35:38 UTC 2010
    - 1.6K bytes
    - Viewed (0)
  10. platforms/software/reporting/src/main/java/org/gradle/api/reporting/DirectoryReport.java

    import org.gradle.api.tasks.Internal;
    import org.gradle.api.tasks.OutputDirectory;
    
    import java.io.File;
    
    /**
     * A directory based report to be created.
     */
    public interface DirectoryReport extends ConfigurableReport {
    
        /**
         * Returns the entry point of a directory based Report
         *
         * This can be the index.html file in a HTML report
         *
         * @return the entry point of the report or
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top