Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 161 for flavor (0.14 sec)

  1. tensorflow/compiler/mlir/lite/transforms/reduce_type_precision.cc

    // checking if all values within that tensor are within the range.
    // This pass is added to aid conversion of models that involve types not
    // available in TF such as INT4, and ideally should be removed in favor of
    // stronger type propagation.
    
    #include <cstdint>
    #include <memory>
    #include <utility>
    
    #include "mlir/Dialect/Arith/IR/Arith.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. manifests/charts/istio-cni/values.yaml

        # Custom annotations on pod level, if you need them
        podAnnotations: {}
    
        # Deploy the config files as plugin chain (value "true") or as standalone files in the conf dir (value "false")?
        # Some k8s flavors (e.g. OpenShift) do not support the chain approach, set to false if this is the case
        chained: true
    
        # Custom configuration happens based on the CNI provider.
        # Possible values: "default", "multus"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/internal/publicsuffix/PublicSuffixListGenerator.kt

       * very flexible regarding wildcard rules, but this flexibility is not something currently used
       * in practice. To simplify the implementation, we've avoided implementing the flexible rules in
       * favor of supporting what's actually used in practice. That means if these assertions ever fail,
       * the implementation will need to be revisited to support a more flexible rule.
       */
      private fun assertWildcardRule(rule: String) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 18 01:24:38 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaExecDebugIntegrationTest.groovy

            """
    
            debugClient.listen()
    
            expect:
            succeeds(taskName)
            output.contains "Debug configuration ignored in favor of the supplied JVM arguments: [-agentlib:jdwp=transport=dt_socket,server=n,suspend=n,address=$debugClient.port]"
    
            where:
            taskName << ['runJavaExec', 'runExecOperationsJavaExec', 'test']
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/features/features.go

    			" v1beta4 supports a new option 'ClusterConfiguration.EncryptionAlgorithm'.",
    	},
    	RootlessControlPlane: {FeatureSpec: featuregate.FeatureSpec{Default: false, PreRelease: featuregate.Alpha},
    		DeprecationMessage: "Deprecated in favor of the core kubelet feature UserNamespacesSupport which is beta since 1.30." +
    			" Once UserNamespacesSupport graduates to GA, kubeadm will start using it and RootlessControlPlane will be removed.",
    	},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 13:55:11 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  6. src/internal/reflectlite/export_test.go

    	}
    	field := &tt.Fields[i]
    	typ := field.Typ
    
    	// Inherit permission bits from v, but clear flagEmbedRO.
    	fl := v.flag&(flagStickyRO|flagIndir|flagAddr) | flag(typ.Kind())
    	// Using an unexported field forces flagRO.
    	if !field.Name.IsExported() {
    		if field.Embedded() {
    			fl |= flagEmbedRO
    		} else {
    			fl |= flagStickyRO
    		}
    	}
    	// Either flagIndir is set and v.ptr points at struct,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:01:54 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. 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)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/annotations/impl/DefaultTypeAnnotationMetadataStoreTest.groovy

            ]
        }
    
        @SuppressWarnings("unused")
        class TypeWithGroovyBooleanProperty {
            @Small
            boolean bool
        }
    
        def "can ignore 'is' getter in favor of 'get' getter"() {
            expect:
            assertProperties TypeWithIgnoredIsGetterBooleanProperty, [
                bool: [(TYPE): Small],
            ]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 11 15:31:37 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top