- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 27 for is_windows (0.07 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
ci/official/utilities/setup_docker.sh
# Pass all existing TFCI_ variables into the Docker container env_file=$(mktemp) env | grep ^TFCI_ > "$env_file" if [[ $(uname -s) == MSYS_NT* ]]; then is_windows=true else is_windows=false fi WORKING_DIR="$TFCI_GIT_DIR" if [[ "$is_windows" == true ]]; then env_file=$(cygpath -m $env_file) WORKING_DIR=$(replace_drive_letter_with_prefix "$TFCI_GIT_DIR" "$TFCI_OUTPUT_WIN_DOCKER_DIR")
Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Thu Nov 20 17:33:55 GMT 2025 - 2.9K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/utils/Os.java
case FAMILY_WINDOWS -> isWindows; case FAMILY_WIN9X -> isWindows && is9x; case FAMILY_NT -> isWindows && isNT; case FAMILY_OS2 -> actualOsName.contains(FAMILY_OS2); case FAMILY_NETWARE -> actualOsName.contains(FAMILY_NETWARE); case FAMILY_DOS -> File.pathSeparatorChar == ';' && !isFamily(FAMILY_NETWARE, actualOsName) && !isWindows;Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Thu Oct 16 06:12:36 GMT 2025 - 7.2K bytes - Click Count (0) -
gradle/wrapper/gradle-wrapper.jar
ParsedCommandLineOpt { public final java.util.ArrayList values; public void ParsedCommandLineOpt(); } org/gradle/internal/file/PathTraversalChecker.class package org.gradle.internal.file; public abstract class PathTraversalChecker { public static final boolean IS_WINDOWS; public static String safePathName(String); static void <clinit>(); } org/gradle/internal/file/locking/ExclusiveFileAccessM.class package org.gradle.internal.file.locking; public final class ExclusiveFileAccessM { public void ExclusiveFileAccessM();...Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Wed Mar 04 20:34:40 GMT 2026 - 47.8K bytes - Click Count (1) -
compat/maven-compat/src/main/java/org/apache/maven/toolchain/java/JavaToolchainImpl.java
return null; } private static Path findTool(String toolName, Path installDir) { Path bin = installDir.resolve("bin"); // NOI18N if (Files.isDirectory(bin)) { if (Os.IS_WINDOWS) { Path tool = bin.resolve(toolName + ".exe"); if (Files.exists(tool)) { return tool; } } Path tool = bin.resolve(toolName);Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 2.6K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnenc/goals/Init.java
context.addInHeader(context.style.italic().bold().foreground(Colors.rgbColor("yellow")), "goal: init"); context.addInHeader(""); ConsolePrompt.UiConfig promptConfig; if (OSUtils.IS_WINDOWS) { promptConfig = new ConsolePrompt.UiConfig(">", "( )", "(x)", "( )"); } else { promptConfig = new ConsolePrompt.UiConfig("❯", "◯ ", "◉ ", "◯ "); }Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Jun 11 13:14:09 GMT 2025 - 12K bytes - Click Count (0) -
cmd/os_windows.go
Klaus Post <******@****.***> 1739895955 -0800
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Tue Feb 18 16:25:55 GMT 2025 - 5K bytes - Click Count (0) -
internal/disk/disk_windows.go
Harshavardhana <******@****.***> 1629336922 -0700
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Thu Aug 19 01:35:22 GMT 2021 - 951 bytes - Click Count (0) -
build-logic/cleanup/src/main/java/gradlebuild/cleanup/services/KillLeakingJavaProcesses.java
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Tue Sep 23 13:49:45 GMT 2025 - 12K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/GradleDistroTestTask.java
} private List<String> getScript(boolean isWindows) { String cacheDir = getProject().getBuildDir() + "/gradle-cache"; StringBuilder line = new StringBuilder(); line.append(isWindows ? "& .\\gradlew " : "./gradlew "); line.append(taskName); line.append(" --project-cache-dir ");Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 01 09:19:30 GMT 2021 - 2.6K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/io/FileBackedOutputStreamTest.java
file = out.getFile(); assertEquals(dataSize, file.length()); assertTrue(file.exists()); assertThat(file.getName()).contains("FileBackedOutputStream"); if (!isAndroid() && !isWindows()) { PosixFileAttributes attributes = java.nio.file.Files.getFileAttributeView(file.toPath(), PosixFileAttributeView.class) .readAttributes();
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Mar 03 04:04:26 GMT 2026 - 8K bytes - Click Count (0)