Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 114 for Windows (0.72 sec)

  1. .teamcity/jdks.yaml

      - params: [ "windows.java8.openjdk.64bit", "windows.java8.oracle.64bit" ]
        os: windows
        arch: amd64
        vendor: "temurin"
        version: "jdk8u392-b08"
        sha256: 68711e896d0c40cd5accc06112a188c493658f9194a23fe8f8b6695394d9acf7
      - params: [ "env.JAVA_HOME", "windows.java11.openjdk.64bit" ]
        os: windows
        arch: amd64
        vendor: "temurin"
        version: "jdk-11.0.23+9"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. maven-model-builder/src/test/java/org/apache/maven/model/profile/activation/OperatingSystemProfileActivatorTest.java

            assertActivation(true, profile, newContext(null, newProperties("linux", "6.5.0-1014-aws", "amd64")));
            assertActivation(false, profile, newContext(null, newProperties("windows", "6.5.0-1014-aws", "aarch64")));
        }
    
        @Test
        void testAllOsConditions() {
            Profile profile = newProfile(ActivationOS.newBuilder()
                    .family("windows")
                    .name("windows")
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jun 05 14:16:41 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. src/cmd/go/internal/telemetrystats/version_windows.go

    //go:build !cmd_go_bootstrap && windows
    
    package telemetrystats
    
    import (
    	"fmt"
    
    	"cmd/internal/telemetry"
    
    	"golang.org/x/sys/windows"
    )
    
    func incrementVersionCounters() {
    	v := windows.RtlGetVersion()
    	telemetry.Inc(fmt.Sprintf("go/platform/host/windows/major-version:%d", v.MajorVersion))
    	telemetry.Inc(fmt.Sprintf("go/platform/host/windows/version:%d-%d", v.MajorVersion, v.MinorVersion))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:09:11 UTC 2024
    - 637 bytes
    - Viewed (0)
  4. apache-maven/src/assembly/shared/run

    # For Cygwin and MinGW, switch paths to Windows format before running java(1) command
    if $cygwin || $mingw ; then
      [ -n "$JAVA_HOME" ] &&
        JAVA_HOME=`cygpath --windows "$JAVA_HOME"`
      LAUNCHER_JAR=`cygpath --windows "$LAUNCHER_JAR"`
      CLASSWORLDS_CONF=`cygpath --windows "$CLASSWORLDS_CONF"`
      MAVEN_HOME=`cygpath --windows "$MAVEN_HOME"`
      MAVEN_PROJECTBASEDIR=`cygpath --windows "$MAVEN_PROJECTBASEDIR"`
    fi
    
    exec "$JAVACMD" \
      $MAVEN_OPTS \
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 21 09:29:19 UTC 2021
    - 740 bytes
    - Viewed (0)
  5. src/cmd/go/internal/lockedfile/internal/filelock/filelock_windows.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build windows
    
    package filelock
    
    import (
    	"internal/syscall/windows"
    	"io/fs"
    	"syscall"
    )
    
    type lockType uint32
    
    const (
    	readLock  lockType = 0
    	writeLock lockType = windows.LOCKFILE_EXCLUSIVE_LOCK
    )
    
    const (
    	reserved = 0
    	allBytes = ^uint32(0)
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 17 02:24:35 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. src/cmd/go/internal/envcmd/env_test.go

    			}
    		}
    
    		var b bytes.Buffer
    		if runtime.GOOS == "windows" {
    			b.WriteString("@echo off\n")
    		}
    		PrintEnv(&b, []cfg.EnvVar{{Name: "var", Value: s}}, false)
    		var want string
    		if runtime.GOOS == "windows" {
    			fmt.Fprintf(&b, "echo \"%%var%%\"\n")
    			want += "\"" + s + "\"\r\n"
    		} else {
    			fmt.Fprintf(&b, "printf '%%s\\n' \"$var\"\n")
    			want += s + "\n"
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. src/cmd/distpack/test.go

    	{name: "go/bin/go", goos: "linux"},
    	{name: "go/bin/go", goos: "darwin"},
    	{name: "go/bin/go", goos: "windows", exclude: true},
    	{name: "go/bin/go.exe", goos: "windows"},
    	{name: "go/bin/gofmt", goos: "linux"},
    	{name: "go/bin/gofmt", goos: "darwin"},
    	{name: "go/bin/gofmt", goos: "windows", exclude: true},
    	{name: "go/bin/gofmt.exe", goos: "windows"},
    	{name: "go/pkg/tool/*/compile", goos: "linux"},
    	{name: "go/pkg/tool/*/compile", goos: "darwin"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 01 22:29:19 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  8. .teamcity/src/test/kotlin/PerformanceTestBuildTypeTest.kt

                "-PrunAndroidStudioInHeadlessMode=true",
                "-Porg.gradle.java.installations.auto-download=false",
                "\"-Porg.gradle.java.installations.paths=%windows.java8.openjdk.64bit%,%windows.java11.openjdk.64bit%,%windows.java17.openjdk.64bit%,%windows.java21.openjdk.64bit%,%windows.java22.openjdk.64bit%\"",
                "-Porg.gradle.performance.branchName=\"%teamcity.build.branch%\"",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  9. .teamcity/src/test/kotlin/ApplyDefaultConfigurationTest.kt

            val windowsPaths =
                "-Porg.gradle.java.installations.paths=%windows.java8.openjdk.64bit%,%windows.java11.openjdk.64bit%,%windows.java17.openjdk.64bit%,%windows.java21.openjdk.64bit%,%windows.java22.openjdk.64bit%"
            val expectedInstallationPaths = if (os == Os.WINDOWS) windowsPaths else linuxPaths
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  10. src/cmd/go/internal/robustio/robustio.go

    package robustio
    
    // Rename is like os.Rename, but on Windows retries errors that may occur if the
    // file is concurrently read or overwritten.
    //
    // (See golang.org/issue/31247 and golang.org/issue/32188.)
    func Rename(oldpath, newpath string) error {
    	return rename(oldpath, newpath)
    }
    
    // ReadFile is like os.ReadFile, but on Windows retries errors that may
    // occur if the file is concurrently replaced.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.9K bytes
    - Viewed (0)
Back to top