Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 212 for unstable (0.13 sec)

  1. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-resolutionStrategy/groovy/build.gradle

    configurations.all {
        resolutionStrategy {
            failOnChangingVersions()
        }
    }
    // end::fail-on-changing[]
    
    // tag::fail-on-unstable[]
    configurations.all {
        resolutionStrategy {
            failOnNonReproducibleResolution()
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 891 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-resolutionStrategy/kotlin/build.gradle.kts

    configurations.all {
        resolutionStrategy {
            failOnChangingVersions()
        }
    }
    // end::fail-on-changing[]
    
    // tag::fail-on-unstable[]
    configurations.all {
        resolutionStrategy {
            failOnNonReproducibleResolution()
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 889 bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/upgrade/policy.go

    func detectUnstableVersionError(newK8sVersion *version.Version, newK8sVersionStr string, allowExperimentalUpgrades, allowRCUpgrades bool) error {
    	// Short-circuit quickly if this is not an unstable version
    	if len(newK8sVersion.PreRelease()) == 0 {
    		return nil
    	}
    	// If the user has specified that unstable versions are fine, then no error should be returned
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. releasenotes/notes/50747.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - 50162
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 22:24:38 UTC 2024
    - 208 bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/KotlinDslStandaloneScriptCompilationConfiguration.kt

        compilerOptions.put(listOf(
            "-language-version", "1.8",
            "-api-version", "1.8",
            "-Xjvm-default=all",
            "-Xjsr305=strict",
            "-Xskip-prerelease-check",
            "-Xallow-unstable-dependencies",
            "-XXLanguage:+DisableCompatibilityModeForNewInference",
            "-XXLanguage:-TypeEnhancementImprovementsInStrictMode",
        ))
        annotationsForSamWithReceivers.put(listOf(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 19:59:56 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/KotlinBuildScript.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
    - 3K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top