Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,563 for currentOS (0.5 sec)

  1. testing/soak/src/integTest/groovy/org/gradle/vfs/FileSystemWatchingSoakTest.groovy

            def currentOs = OperatingSystem.current()
            if (currentOs.macOsX) {
                // macOS coalesces the changes if the are in short succession
                return numberOfChangedFiles * numberOfChangesPerFile * LOST_EVENTS_RATIO_MAC_OS
            } else if (currentOs.linux) {
                // the JDK watchers only capture one event per watched path
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/os/OperatingSystem.java

        }
    
        public static OperatingSystem current() {
            if (currentOs == null) {
                currentOs = forName(System.getProperty("os.name"));
            }
            return currentOs;
        }
    
        // for testing current()
        static void resetCurrent() {
            currentOs = null;
        }
    
        public static OperatingSystem forName(String os) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/platform/BinaryNativePlatformIntegrationTest.groovy

        @ToBeFixedForConfigurationCache
        def "can configure binary for multiple target operating systems"() {
            String currentOs
            if (os.windows) {
                currentOs = "windows"
            } else if (os.linux) {
                currentOs = "linux"
            } else if (os.macOsX) {
                currentOs = "osx"
            } else {
                throw new AssertionError("Unexpected operating system")
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util-generated.h

          assert(!AtEnd());
          ++current6_;
          if (current6_ == end6_) {
            current6_ = begin6_;
            ++current5_;
          }
          if (current5_ == end5_) {
            current5_ = begin5_;
            ++current4_;
          }
          if (current4_ == end4_) {
            current4_ = begin4_;
            ++current3_;
          }
          if (current3_ == end3_) {
            current3_ = begin3_;
            ++current2_;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 187.7K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util-generated.h

          assert(!AtEnd());
          ++current6_;
          if (current6_ == end6_) {
            current6_ = begin6_;
            ++current5_;
          }
          if (current5_ == end5_) {
            current5_ = begin5_;
            ++current4_;
          }
          if (current4_ == end4_) {
            current4_ = begin4_;
            ++current3_;
          }
          if (current3_ == end3_) {
            current3_ = begin3_;
            ++current2_;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 187.7K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/AbstractGccCompatibleToolChainTest.groovy

        def platform = Stub(NativePlatformInternal)
    
        def dummyOs = new DefaultOperatingSystem("currentOS", OperatingSystem.current())
        def dummyArch = Architectures.forInput("x86_64")
    
        def "is unavailable when platform is not known and is not the default platform"() {
            given:
            platform.displayName >> '<unknown>'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  7. operator/pkg/helmreconciler/testdata/current.yaml

    Vincent <******@****.***> 1603165005 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 20 03:36:45 UTC 2020
    - 295 bytes
    - Viewed (0)
  8. cmd/config-current.go

    Harshavardhana <******@****.***> 1717056898 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 08:14:58 UTC 2024
    - 30.8K bytes
    - Viewed (0)
  9. docs/zh/docs/tutorial/security/get-current-user.md

    jaystone776 <******@****.***> 1711838806 +0800
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 22:46:46 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. cmd/kubeadm/test/cmd/testdata/init/current-component-config.yaml

    Lubomir I. Ivanov <******@****.***> 1617148903 +0300
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 20 00:47:27 UTC 2021
    - 135 bytes
    - Viewed (0)
Back to top