Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 80 for unitTable (0.33 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. src/cmd/go/testdata/script/mod_gopkg_unstable.txt

    cp go.mod.empty go.mod
    go get gopkg.in/dummy.v2-unstable
    
    cp x.go.txt x.go
    cp go.mod.empty go.mod
    go list
    
    [!net:gopkg.in] skip
    [!git] skip
    
    skip  # TODO(#54503): redirect gopkg.in requests to a local server and re-enable.
    
    env GOPROXY=direct
    env GOSUMDB=off
    go get gopkg.in/macaroon-bakery.v2-unstable/bakery
    go list -m all
    stdout 'gopkg.in/macaroon-bakery.v2-unstable v2.0.0-[0-9]+-[0-9a-f]+$'
    
    -- go.mod.empty --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 509 bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. src/cmd/go/testdata/mod/gopkg.in_dummy.v2-unstable_v2.0.0.txt

    gopkg.in/dummy.v2-unstable v2.0.0
    written by hand
    
    -- .mod --
    module gopkg.in/dummy.v2-unstable
    -- .info --
    {"Version":"v2.0.0"}
    -- dummy.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 10 00:47:31 UTC 2018
    - 158 bytes
    - Viewed (0)
  6. 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)
  7. pkg/hbone/README.md

    client --hbone-client-cert tests/testdata/certs/cert.crt --hbone-client-key tests/testdata/certs/cert.key \
      http://127.0.0.1:8080 \
      --hbone 127.0.0.1:15008
    ```
    
    #### Golang
    
    An (unstable) library to make HBONE connections is available at `pkg/hbone`.
    
    Usage example:
    
    ```go
    d := hbone.NewDialer(hbone.Config{
        ProxyAddress: "1.2.3.4:15008",
        Headers: map[string][]string{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 11 16:27:16 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  8. releasenotes/notes/36434.yaml

    kind: bug-fix
    area: traffic-management
    issue:
      - https://github.com/istio/istio/issues/36462
    
    releaseNotes:
      - |
        **Fixed** an issue where specifying conflict protocols for a service target port
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 20 19:01:33 UTC 2021
    - 287 bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top