Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for gopath2 (0.04 sec)

  1. Makefile

    	@echo "Installing minio binary with -race to '$(GOPATH)/bin/minio'"
    	@mkdir -p $(GOPATH)/bin && cp -af $(PWD)/minio $(GOPATH)/bin/minio
    
    install: build ## builds minio and installs it to $GOPATH/bin.
    	@echo "Installing minio binary to '$(GOPATH)/bin/minio'"
    	@mkdir -p $(GOPATH)/bin && cp -af $(PWD)/minio $(GOPATH)/bin/minio
    	@echo "Installation successful. To learn more, try \"minio --help\"."
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Oct 31 22:10:24 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/io/MoreFiles.java

       * the same bytes.
       *
       * @throws IOException if an I/O error occurs
       * @since 22.0
       */
      public static boolean equal(Path path1, Path path2) throws IOException {
        checkNotNull(path1);
        checkNotNull(path2);
        if (Files.isSameFile(path1, path2)) {
          return true;
        }
    
        /*
         * Some operating systems may return zero as the length for files denoting system-dependent
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 31 16:07:00 UTC 2024
    - 35K bytes
    - Viewed (0)
  3. guava/src/com/google/common/io/MoreFiles.java

       * the same bytes.
       *
       * @throws IOException if an I/O error occurs
       * @since 22.0
       */
      public static boolean equal(Path path1, Path path2) throws IOException {
        checkNotNull(path1);
        checkNotNull(path2);
        if (Files.isSameFile(path1, path2)) {
          return true;
        }
    
        /*
         * Some operating systems may return zero as the length for files denoting system-dependent
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 31 16:07:00 UTC 2024
    - 34.5K bytes
    - Viewed (0)
Back to top