Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for exe (0.21 sec)

  1. cmd/update.go

    	"github.com/valyala/bytebufferpool"
    )
    
    const (
    	envMinisignPubKey = "MINIO_UPDATE_MINISIGN_PUBKEY"
    	updateTimeout     = 10 * time.Second
    )
    
    // For windows our files have .exe additionally.
    var minioReleaseWindowsInfoURL = MinioReleaseURL + "minio.exe.sha256sum"
    
    // minioVersionToReleaseTime - parses a standard official release
    // MinIO version string.
    //
    // An official binary's version string is the release time formatted
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed Apr 24 04:08:47 GMT 2024
    - 18.7K bytes
    - Viewed (0)
  2. build-logic/cleanup/src/main/java/gradlebuild/cleanup/services/KillLeakingJavaProcesses.java

        private static final String MY_PID = String.valueOf(ProcessHandle.current().pid());
        private static final String JAVA_EXECUTABLE_PATTERN_STR = "java(?:\\.exe)?";
        private static final String GRADLE_MAIN_CLASS_PATTERN_STR = "(org\\.gradle\\.[a-zA-Z]+)";
        private static final String PLAY_SERVER_PATTERN_STR = "(play\\.core\\.server\\.NettyServer)";
    Java
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Fri Apr 26 09:46:00 GMT 2024
    - 11.3K bytes
    - Viewed (0)
  3. cmd/update_test.go

    			t.Errorf("Expected %s, got %s", "podman pull quay.io/minio/minio:"+minioVersion1, durl)
    		}
    	} else {
    		if runtime.GOOS == "windows" {
    			if durl != MinioReleaseURL+"minio.exe" {
    				t.Errorf("Expected %s, got %s", MinioReleaseURL+"minio.exe", durl)
    			}
    		} else {
    			if durl != MinioReleaseURL+"minio" {
    				t.Errorf("Expected %s, got %s", MinioReleaseURL+"minio", durl)
    			}
    		}
    	}
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sat Mar 09 03:07:08 GMT 2024
    - 10.7K bytes
    - Viewed (0)
  4. Makefile.core.mk

    ${TARGET_OUT}/release/istioctl-osx-arm64:
    	GOOS=darwin GOARCH=arm64 LDFLAGS=$(RELEASE_LDFLAGS) common/scripts/gobuild.sh $@ ./istioctl/cmd/istioctl
    ${TARGET_OUT}/release/istioctl-win.exe:
    	GOOS=windows LDFLAGS=$(RELEASE_LDFLAGS) common/scripts/gobuild.sh $@ ./istioctl/cmd/istioctl
    
    # generate the istioctl completion files
    ${TARGET_OUT}/release/istioctl.bash: ${LOCAL_OUT}/istioctl
    Plain Text
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Wed May 08 20:25:15 GMT 2024
    - 22.5K bytes
    - Viewed (0)
  5. .teamcity/src/main/kotlin/common/extensions.kt

                if (os == Os.WINDOWS) "\nwmic Path win32_process Where \"name='java.exe'\"" else ""
            skipConditionally(buildType)
            if (mode == KILL_ALL_GRADLE_PROCESSES && buildType is FunctionalTest) {
                onlyRunOnGitHubMergeQueueBranch()
            }
        }
    }
    
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Fri Apr 12 10:49:15 GMT 2024
    - 13K bytes
    - Viewed (0)
  6. docs/ru/docs/deployment/concepts.md

    Термином **программа** обычно описывают множество вещей:
    
    * **Код**, который вы написали, в нашем случае **Python-файлы**.
    * **Файл**, который может быть **исполнен** операционной системой, например `python`, `python.exe` или `uvicorn`.
    * Конкретная программа, **запущенная** операционной системой и использующая центральный процессор и память. В таком случае это также называется **процесс**.
    
    ### Что такое процесс
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 32.5K bytes
    - Viewed (0)
  7. docs/de/docs/deployment/concepts.md

    Das Wort **Programm** wird häufig zur Beschreibung vieler Dinge verwendet:
    
    * Der **Code**, den Sie schreiben, die **Python-Dateien**.
    * Die **Datei**, die vom Betriebssystem **ausgeführt** werden kann, zum Beispiel: `python`, `python.exe` oder `uvicorn`.
    * Ein bestimmtes Programm, während es auf dem Betriebssystem **läuft**, die CPU nutzt und Dinge im Arbeitsspeicher ablegt. Dies wird auch als **Prozess** bezeichnet.
    
    ### Was ist ein Prozess?
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sat Mar 30 20:16:25 GMT 2024
    - 20.6K bytes
    - Viewed (0)
  8. docs/en/docs/deployment/concepts.md

    The word **program** is commonly used to describe many things:
    
    * The **code** that you write, the **Python files**.
    * The **file** that can be **executed** by the operating system, for example: `python`, `python.exe` or `uvicorn`.
    * A particular program while it is **running** on the operating system, using the CPU, and storing things on memory. This is also called a **process**.
    
    ### What is a Process
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu May 02 22:37:31 GMT 2024
    - 18K bytes
    - Viewed (0)
  9. docs/zh/docs/deployment/concepts.md

    接下来要考虑的概念都是关于运行实际 API 的程序(例如 Uvicorn)。
    
    ## 程序和进程
    
    我们将讨论很多关于正在运行的“**进程**”的内容,因此弄清楚它的含义以及与“**程序**”这个词有什么区别是很有用的。
    
    ### 什么是程序
    
    **程序**这个词通常用来描述很多东西:
    
    * 您编写的 **代码**,**Python 文件**。
    * 操作系统可以**执行**的**文件**,例如:`python`、`python.exe`或`uvicorn`。
    * 在操作系统上**运行**、使用CPU 并将内容存储在内存上的特定程序。 这也被称为**进程**。
    
    ### 什么是进程
    
    **进程** 这个词通常以更具体的方式使用,仅指在操作系统中运行的东西(如上面的最后一点):
    
    * 在操作系统上**运行**的特定程序。
         * 这不是指文件,也不是指代码,它**具体**指的是操作系统正在**执行**和管理的东西。
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 16.2K bytes
    - Viewed (0)
  10. cmd/testdata/xl-meta-merge.zip

    URL: ```sh https://dl.min.io/server/minio/release/windows-amd64/minio.exe ``` Use the following command to run a standalone MinIO server on the Windows host. Replace ``D:\`` with the path to the drive or directory in which you want MinIO to store data. You must change the terminal or powershell directory to the location of the ``minio.exe`` executable, *or* add the path to that directory to the system ``$PATH``: ```sh minio.exe server D:\ ``` The MinIO deployment starts using default root credentials...
    ZIP Archive
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri Mar 08 17:50:48 GMT 2024
    - 30.2K bytes
    - Viewed (0)
Back to top