Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 259 for unstable (0.12 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/KotlinInitScript.kt

    @ScriptTemplateAdditionalCompilerArguments(
        [
            "-language-version", "1.8",
            "-api-version", "1.8",
            "-Xjvm-default=all",
            "-Xjsr305=strict",
            "-Xskip-prerelease-check",
            "-Xallow-unstable-dependencies",
            "-XXLanguage:+DisableCompatibilityModeForNewInference",
            "-XXLanguage:-TypeEnhancementImprovementsInStrictMode",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 19:59:56 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/KotlinSettingsScript.kt

    @ScriptTemplateAdditionalCompilerArguments(
        [
            "-language-version", "1.8",
            "-api-version", "1.8",
            "-Xjvm-default=all",
            "-Xjsr305=strict",
            "-Xskip-prerelease-check",
            "-Xallow-unstable-dependencies",
            "-XXLanguage:+DisableCompatibilityModeForNewInference",
            "-XXLanguage:-TypeEnhancementImprovementsInStrictMode",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 19:59:56 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/upgrade/upgrade.go

    	options.AddKubeConfigFlag(fs, &flags.kubeConfigPath)
    	options.AddConfigFlag(fs, &flags.cfgPath)
    
    	fs.BoolVar(&flags.allowExperimentalUpgrades, "allow-experimental-upgrades", flags.allowExperimentalUpgrades, "Show unstable versions of Kubernetes as an upgrade alternative and allow upgrading to an alpha/beta/release candidate versions of Kubernetes.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 26 01:18:29 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_concepts.adoc

    Another common, but less obvious source of unstable inputs is when a task consumes the output of another task which produces non-repeatable results, such as the example before of a code generator that embeds timestamps in its output.
    
    A task can only be loaded from the cache if it has stable task inputs.
    Unstable task inputs result in the task having a unique set of inputs for every build, which will always result in a cache miss.
    
    [[normalization]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/resolution_strategy_tuning.adoc

    ====
    include::sample[dir="snippets/dependencyManagement/managingTransitiveDependencies-resolutionStrategy/kotlin",files="build.gradle.kts[tags=fail-on-unstable]"]
    include::sample[dir="snippets/dependencyManagement/managingTransitiveDependencies-resolutionStrategy/groovy",files="build.gradle[tags=fail-on-unstable]"]
    ====
    
    [[resolution_consistency]]
    == Getting consistent dependency resolution results
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/mod/module/module.go

    func splitGopkgIn(path string) (prefix, pathMajor string, ok bool) {
    	if !strings.HasPrefix(path, "gopkg.in/") {
    		return path, "", false
    	}
    	i := len(path)
    	if strings.HasSuffix(path, "-unstable") {
    		i -= len("-unstable")
    	}
    	for i > 0 && ('0' <= path[i-1] && path[i-1] <= '9') {
    		i--
    	}
    	if i <= 1 || path[i-1] != 'v' || path[i-2] != '.' {
    		// All gopkg.in paths must end in vN for some N.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 20:17:07 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/phases/upgrade/compute.go

    	// Get and output the current latest stable version
    	stableVersionStr, stableVersion, err := versionGetterImpl.VersionFromCILabel("stable", "stable version")
    	if err != nil {
    		klog.Warningf("[upgrade/versions] WARNING: %v\n", err)
    		klog.Warningf("[upgrade/versions] WARNING: Falling back to current kubeadm version as latest stable version")
    		stableVersionStr, stableVersion = kubeadmVersionStr, kubeadmVersion
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/KtFunctionLikeSymbol.kt

        public abstract val valueParameters: List<KaValueParameterSymbol>
    
        /**
         * Kotlin functions always have stable parameter names that can be reliably used when calling them with named arguments.
         * Functions loaded from platform definitions (e.g. Java binaries or JS) may have unstable parameter names that vary from
         * one platform installation to another. These names can not be used reliably for calls with named arguments.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/gradients/array_grad_test.cc

          ASSERT_EQ(errors::OK, status_.code()) << status_.message();
          immediate_execution_ctx_.reset(ctx_raw);
        }
    
        // Computing numerical gradients with TensorFloat-32 is numerically
        // unstable. Some forward pass tests also fail with TensorFloat-32 due to
        // low tolerances
        enable_tensor_float_32_execution(false);
      }
    
      AbstractContextPtr immediate_execution_ctx_;
      GradientRegistry registry_;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 28 13:53:47 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/upgrade/compute_test.go

    						EtcdVersion:    getEtcdVersion(v1Z0alpha2),
    					},
    				},
    			},
    			allowExperimental: true,
    			errExpected:       false,
    		},
    		{
    			name: "upgrade from an unstable version to an unstable version should be supported",
    			vg: &fakeVersionGetter{
    				clusterVersion:   v1Z0alpha1.String(),
    				componentVersion: v1Z0alpha1.String(),
    				kubeletVersion:   v1Y5.String(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 08:39:51 UTC 2024
    - 34.1K bytes
    - Viewed (0)
Back to top