Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 9,469 for internalOs (0.32 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/platform/internal/DefaultOperatingSystem.java

        @Override
        public boolean isCurrent() {
            return internalOs == CURRENT_OS;
        }
    
        @Override
        public boolean isWindows() {
            return internalOs.isWindows();
        }
    
        @Override
        public boolean isLinux() {
            return internalOs.isLinux();
        }
    
        @Override
        public boolean isMacOsX() {
            return internalOs.isMacOsX();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/platform/internal/DefaultOperatingSystemTest.groovy

            os.displayName == "operating system 'sunos'"
            os.internalOs == OperatingSystem.SOLARIS
        }
    
        def "recognises key operating systems"() {
            def os = new DefaultOperatingSystem(name)
    
            expect:
            os.name == name
            os.internalOs == internalOs
    
            where:
            name      | internalOs
            "windows" | OperatingSystem.WINDOWS
            "osx"     | OperatingSystem.MAC_OS
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/PlatformInOutputNormalizer.groovy

    import org.gradle.exemplar.test.normalizer.OutputNormalizer
    import org.gradle.internal.os.OperatingSystem
    import org.gradle.platform.internal.DefaultBuildPlatform
    
    /**
     * This normalizer converts toolchain error message so it doesn't contain platform-specific information.
     */
    class PlatformInOutputNormalizer implements OutputNormalizer {
        def static internalOs = OperatingSystem.current()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/VisualCppPlatformToolProviderTest.groovy

     */
    
    package org.gradle.nativeplatform.toolchain.internal.msvcpp
    
    import org.gradle.internal.operations.BuildOperationExecutor
    import org.gradle.internal.os.OperatingSystem
    import org.gradle.internal.work.WorkerLeaseService
    import org.gradle.nativeplatform.internal.CompilerOutputFileNamingSchemeFactory
    import org.gradle.nativeplatform.platform.internal.OperatingSystemInternal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/liveness/intervals.go

    	return false
    }
    
    // Merge combines the intervals from "is" and "is2" and returns
    // a new Intervals object containing all combined ranges from the
    // two inputs.
    func (is Intervals) Merge(is2 Intervals) Intervals {
    	if len(is) == 0 {
    		return is2
    	} else if len(is2) == 0 {
    		return is
    	}
    	// walk the combined set of intervals and merge them together.
    	var ret Intervals
    	var pv pairVisitor
    	cur := pv.init(is, is2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 21:55:27 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/internal/internal.kt

    import okhttp3.OkHttpClient
    import okhttp3.Request
    import okhttp3.Response
    import okhttp3.internal.concurrent.TaskRunner
    import okhttp3.internal.connection.RealConnection
    
    internal fun parseCookie(
      currentTimeMillis: Long,
      url: HttpUrl,
      setCookie: String,
    ): Cookie? = Cookie.parse(currentTimeMillis, url, setCookie)
    
    internal fun cookieToString(
      cookie: Cookie,
      forObsoleteRfc2965: Boolean,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/text/internal/internal.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package internal contains non-exported functionality that are used by
    // packages in the text repository.
    package internal // import "golang.org/x/text/internal"
    
    import (
    	"sort"
    
    	"golang.org/x/text/language"
    )
    
    // SortTags sorts tags in place.
    func SortTags(tags []language.Tag) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 1K bytes
    - Viewed (0)
  8. guava/src/com/google/common/base/Internal.java

    import java.time.Duration;
    
    /** This class is for {@code com.google.common.base} use only! */
    @J2ktIncompatible
    @GwtIncompatible // java.time.Duration
    @ElementTypesAreNonnullByDefault
    final class Internal {
    
      /**
       * Returns the number of nanoseconds of the given duration without throwing or overflowing.
       *
       * <p>Instead of throwing {@link ArithmeticException}, this method silently saturates to either
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jan 11 14:30:06 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration/internal/internal.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Code generated by applyconfiguration-gen. DO NOT EDIT.
    
    package internal
    
    import (
    	"fmt"
    	"sync"
    
    	typed "sigs.k8s.io/structured-merge-diff/v4/typed"
    )
    
    func Parser() *typed.Parser {
    	parserOnce.Do(func() {
    		var err error
    		parser, err = typed.NewParser(schemaYAML)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 28 12:38:10 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/tasks/Internal.java

     *
     * @since 3.0
     */
    @Documented
    @Retention(RetentionPolicy.RUNTIME)
    @Target({ElementType.METHOD, ElementType.FIELD})
    public @interface Internal {
        /**
         * The reason for ignoring this element.
         */
        String value() default "";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top