Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 92 for flavor (0.14 sec)

  1. tensorflow/BUILD

        values = {
            "crosstool_top": "//external:android/crosstool",
            "cpu": "mips64",
        },
        visibility = ["//visibility:public"],
    )
    
    # TODO(jakeharmon8): Remove in favor of TSL version
    config_setting(
        name = "windows",
        # Internal builds query the target OS.
        constraint_values = if_google(
            ["//third_party/bazel_platforms/os:windows"],
            [],
        ),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  2. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/KotlinPluginSmokeTest.groovy

        }
    
        def 'kotlin javascript (kotlin=#version, workers=#parallelTasksInProject)'() {
    
            setupForKotlinVersion(version)
    
            // kotlinjs has been removed in Kotlin 1.7 in favor of kotlin-mpp
            assumeTrue(kotlinPluginVersion.baseVersion < VersionNumber.version(1, 7))
    
            given:
            useSample("kotlin-js-sample")
            withKotlinBuildFile()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/resolver/DefaultResolutionOutputs.java

                return lenient;
            }
    
            @Override
            public void setLenient(boolean lenient) {
                this.lenient = lenient;
            }
    
            // TODO: Deprecate this in favor of setLenient(Boolean)
            @Override
            public ArtifactView.ViewConfiguration lenient(boolean lenient) {
                this.lenient = lenient;
                return this;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. hack/golangci-hints.yaml

    #   merging. Beware that the golangci-lint output includes also the
    #   issues that must be fixed and doesn't indicate how severe each issue
    #   is (https://gophers.slack.com/archives/CS0TBRKPC/p1685721815275349).
    #
    # All three flavors are generated from golangci.yaml.in with
    # hack/update-golangci-lint-config.sh.
    
    run:
      timeout: 30m
      skip-files:
        - "^zz_generated.*"
    
    output:
      sort-results: true
    
    issues:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  5. hack/golangci-strict.yaml

    #   merging. Beware that the golangci-lint output includes also the
    #   issues that must be fixed and doesn't indicate how severe each issue
    #   is (https://gophers.slack.com/archives/CS0TBRKPC/p1685721815275349).
    #
    # All three flavors are generated from golangci.yaml.in with
    # hack/update-golangci-lint-config.sh.
    
    run:
      timeout: 30m
      skip-files:
        - "^zz_generated.*"
    
    output:
      sort-results: true
    
    issues:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  6. hack/golangci.yaml

    #   merging. Beware that the golangci-lint output includes also the
    #   issues that must be fixed and doesn't indicate how severe each issue
    #   is (https://gophers.slack.com/archives/CS0TBRKPC/p1685721815275349).
    #
    # All three flavors are generated from golangci.yaml.in with
    # hack/update-golangci-lint-config.sh.
    
    run:
      timeout: 30m
      skip-files:
        - "^zz_generated.*"
    
    output:
      sort-results: true
    
    issues:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  7. okhttp-logging-interceptor/src/main/kotlin/okhttp3/logging/HttpLoggingInterceptor.kt

          newQueryParamsNameToRedact.addAll(name)
          queryParamsNameToRedact = newQueryParamsNameToRedact
        }
    
        /**
         * Sets the level and returns this.
         *
         * This was deprecated in OkHttp 4.0 in favor of the [level] val. In OkHttp 4.3 it is
         * un-deprecated because Java callers can't chain when assigning Kotlin vals. (The getter remains
         * deprecated).
         */
        fun setLevel(level: Level) =
          apply {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 09:14:38 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/intstr/intstr.go

    	}
    	if isPercent {
    		if roundUp {
    			value = int(math.Ceil(float64(value) * (float64(total)) / 100))
    		} else {
    			value = int(math.Floor(float64(value) * (float64(total)) / 100))
    		}
    	}
    	return value, nil
    }
    
    // GetValueFromIntOrPercent was deprecated in favor of
    // GetScaledValueFromIntOrPercent. This method was treating all int as a numeric value and all
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:09 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/process/internal/JvmOptions.java

            List<String> debugArgs = collectDebugArgs(arguments);
            if (!debugArgs.isEmpty() && debugOptions.getEnabled().get()) {
                LOGGER.warn("Debug configuration ignored in favor of the supplied JVM arguments: " + debugArgs);
                debugOptions.getEnabled().set(false);
            }
        }
    
        private static List<String> collectDebugArgs(Iterable<?> arguments) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  10. src/crypto/tls/auth.go

    	{PSSWithSHA512, crypto.SHA512.Size()*2 + 2, VersionTLS13},
    	// PKCS #1 v1.5 uses prefixes from hashPrefixes in crypto/rsa, and requires
    	//    emLen >= len(prefix) + hLen + 11
    	// TLS 1.3 dropped support for PKCS #1 v1.5 in favor of RSA-PSS.
    	{PKCS1WithSHA256, 19 + crypto.SHA256.Size() + 11, VersionTLS12},
    	{PKCS1WithSHA384, 19 + crypto.SHA384.Size() + 11, VersionTLS12},
    	{PKCS1WithSHA512, 19 + crypto.SHA512.Size() + 11, VersionTLS12},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top