- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 578 for os (0.02 sec)
-
cmd/os-rename_nolinux.go
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Feb 15 01:09:38 UTC 2024 - 985 bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/utils/Os.java
/** * The OS version. */ public static final String OS_VERSION = System.getProperty("os.version").toLowerCase(Locale.ENGLISH); /** * OS Family */ public static final String OS_FAMILY; /** * Boolean indicating if the running OS is a Windows system. */
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 7.3K bytes - Viewed (0) -
.teamcity/src/main/kotlin/common/Os.kt
AMD64("64bit", "amd64", "x86_64"), AARCH64("aarch64", "aarch64", "aarch64"); fun asName() = name.lowercase().toCapitalized() } enum class Os( val agentRequirement: String, val androidHome: String, val jprofilerHome: String, val perfTestWorkingDir: String = "%teamcity.build.checkoutDir%", val perfTestJavaVendor: JvmVendor = JvmVendor.openjdk,
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Fri Oct 11 18:32:33 UTC 2024 - 3.5K bytes - Viewed (0) -
cmd/os-instrumented.go
func Stat(name string) (info os.FileInfo, err error) { defer updateOSMetrics(osMetricStat, name)(err) return os.Stat(name) } // Create captures time taken to call os.Create func Create(name string) (f *os.File, err error) { defer updateOSMetrics(osMetricCreate, name)(err) return os.Create(name) } // Fdatasync captures time taken to call Fdatasync func Fdatasync(f *os.File) (err error) { fn := "" if f != nil {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Feb 15 01:09:38 UTC 2024 - 6.3K bytes - Viewed (0) -
cmd/os-readdir_test.go
if runtime.GOOS == "linux" { permDir := path.Join(os.TempDir(), "perm-dir") if err := os.MkdirAll(permDir, os.FileMode(0o200)); err != nil { t.Fatal(err) } defer os.RemoveAll(permDir) // Check if permission denied. if _, err := readDir(permDir); err == nil { t.Fatalf("expected = an error, got: nil") } } } // Represents data type for all the test results. type result struct {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Sep 19 18:05:16 UTC 2022 - 7.5K bytes - Viewed (0) -
cmd/os-reliable_test.go
Harshavardhana <******@****.***> 1694618076 -0700
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Sep 13 15:14:36 UTC 2023 - 3.1K bytes - Viewed (0) -
cmd/os-reliable.go
return errFileAccessDenied } return osErrToFileErr(err) } return nil } // Reliably retries os.MkdirAll if for some reason os.MkdirAll returns // syscall.ENOENT (parent does not exist). func reliableMkdirAll(dirPath string, mode os.FileMode, baseDir string) (err error) { i := 0 for { // Creates all the parent directories, with mode 0777 mkdir honors system umask.
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Apr 22 17:49:30 UTC 2024 - 5.8K bytes - Viewed (0) -
cmd/os-rename_linux.go
Harshavardhana <******@****.***> 1707959378 -0800
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Feb 15 01:09:38 UTC 2024 - 999 bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/profile/activation/OperatingSystemProfileActivator.java
.getOrDefault("os.arch", Os.OS_ARCH) .toLowerCase(Locale.ENGLISH); String actualOsVersion = context.getSystemProperties() .getOrDefault("os.version", Os.OS_VERSION) .toLowerCase(Locale.ENGLISH); if (active && os.getFamily() != null) { active = determineFamilyMatch(os.getFamily(), actualOsName); } if (active && os.getName() != null) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.2K bytes - Viewed (0) -
.teamcity/jdks.yaml
version: "v1" jdks: - params: - "linux.java7.oracle.64bit" os: "linux" arch: "amd64" vendor: "oracle" version: "7u80" sha256: "bad9a731639655118740bee119139c1ed019737ec802a630dd7ad7aab4309623" - params: - "linux.java8.openjdk.64bit" - "linux.java8.oracle.64bit" os: "linux" arch: "amd64" vendor: "oracle" version: "8u401"
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Oct 29 15:51:20 UTC 2024 - 5.2K bytes - Viewed (0)