Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 337 for operatingSystems (0.25 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r14/ToolingApiInitScriptCrossVersionIntegrationTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.integtests.tooling.r14
    
    
    import org.gradle.integtests.tooling.fixture.ToolingApiSpecification
    import org.gradle.internal.os.OperatingSystem
    import org.gradle.test.fixtures.file.LeaksFileHandles
    import org.gradle.test.fixtures.file.TestFile
    import org.gradle.tooling.GradleConnector
    import spock.lang.Issue
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  2. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/file/TestNameTestDirectoryProvider.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.test.fixtures.file;
    
    import org.gradle.internal.os.OperatingSystem;
    import org.junit.runners.model.FrameworkMethod;
    
    import java.io.File;
    
    /**
     * A JUnit rule which provides a unique temporary folder for the test.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/platform/internal/DefaultNativePlatformTest.groovy

            then:
            platform.architecture.name == "x86"
            platform.architecture.i386
        }
    
        def "can configure operating system"() {
            when:
            platform.operatingSystem "the-os"
    
            then:
            platform.operatingSystem.name == "the-os"
        }
    
        def "host platform has useful display name"() {
            expect:
            def host = DefaultNativePlatform.host()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. platforms/software/security/src/main/java/org/gradle/security/internal/gnupg/GnupgSettings.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.security.internal.gnupg;
    
    import org.gradle.internal.os.OperatingSystem;
    
    import java.io.File;
    
    /**
     * Stores the settings for invoking gnupg.
     *
     * @since 4.5
     */
    public class GnupgSettings {
    
        private String executable;
        private File homeDir;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/AbstractSwiftXCTestIntegrationTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.test.xctest
    
    import org.gradle.internal.os.OperatingSystem
    import org.gradle.language.swift.SwiftTaskNames
    import org.gradle.nativeplatform.fixtures.RequiresInstalledToolChain
    import org.gradle.nativeplatform.fixtures.ToolChainRequirement
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/integTest/groovy/org/gradle/language/fixtures/app/DuplicateMixedSameBaseNamesTestApp.groovy

            subl    \$8, %esp
            andl    \$-16, %esp
            movl    \$0, %eax
            movl    %eax, -4(%ebp)
            movl    -4(%ebp), %eax
            movl    \$LC0, (%esp)
            call    ${(OperatingSystem.current().isMacOsX() || OperatingSystem.current().isWindows()) ? '_printf' : 'printf'}
            movl    \$0, %eax
            leave
            ret
            """
            }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/DefaultCommandLineToolInvocationWorker.java

            if (!invocation.getPath().isEmpty()) {
                String pathVar = OperatingSystem.current().getPathVar();
                String toolPath = Joiner.on(File.pathSeparator).join(invocation.getPath());
                toolPath = toolPath + File.pathSeparator + System.getenv(pathVar);
                toolExec.environment(pathVar, toolPath);
                if (OperatingSystem.current().isWindows() && toolExec.getEnvironment().containsKey(pathVar.toUpperCase())) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/jvm/Jvm.java

            if (jvm == null) {
                CURRENT.compareAndSet(null, new Jvm(OperatingSystem.current()));
                jvm = CURRENT.get();
            }
            return jvm;
        }
    
        private static Jvm create(File javaBase, @Nullable String implementationJavaVersion, @Nullable Integer javaVersionMajor) {
            Jvm jvm = new Jvm(OperatingSystem.current(), javaBase, implementationJavaVersion, javaVersionMajor);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:57:34 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  9. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/console/NativePlatformConsoleDetector.java

     */
    
    package org.gradle.internal.nativeintegration.console;
    
    import net.rubygrapefruit.platform.NativeException;
    import net.rubygrapefruit.platform.terminal.Terminals;
    import org.gradle.internal.os.OperatingSystem;
    
    import static net.rubygrapefruit.platform.terminal.Terminals.Output.Stderr;
    import static net.rubygrapefruit.platform.terminal.Terminals.Output.Stdout;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:06:40 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  10. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/MavenInstallation.groovy

     * limitations under the License.
     */
    
    package org.gradle.performance.fixture
    
    import org.gradle.internal.os.OperatingSystem
    import org.gradle.process.internal.BadExitCodeException
    
    class MavenInstallation {
    
        private static final boolean IS_WINDOWS = OperatingSystem.current().isWindows()
    
        final String version
        final File home
        final File mvn
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top