Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for unitTable (0.14 sec)

  1. src/internal/coverage/cformat/format.go

    	}
    	slices.Sort(pkgs)
    	for _, importpath := range pkgs {
    		p := fm.pm[importpath]
    		units := make([]extcu, 0, len(p.unitTable))
    		for u := range p.unitTable {
    			units = append(units, u)
    		}
    		p.sortUnits(units)
    		for _, u := range units {
    			count := p.unitTable[u]
    			file := p.funcs[u.fnfid].file
    			if _, err := fmt.Fprintf(w, "%s:%d.%d,%d.%d %d %d\n",
    				file, u.StLine, u.StCol,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  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