Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for Encountering (0.2 sec)

  1. releasenotes/notes/optimize-most-specific-host-match.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 01 19:19:22 UTC 2022
    - 182 bytes
    - Viewed (0)
  2. releasenotes/notes/43706.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    
    issue:
    - 43705
    
    releaseNotes:
    - |
      **Added** `istioctl analyze` will display a error when encountering the following two situations:
      - For any namespace, if there are multiple Telemetry CRs without selector,
      - For any namespace, if there are multiple telemetry CRs with selector that select the same workload.
      
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 03 06:56:06 UTC 2023
    - 380 bytes
    - Viewed (0)
  3. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/plugins/internal/VersionCatalogGeneratorTest.groovy

    [versions]
    com-example-group-long = "v1"
    
    [libraries]
    com-example-group-long = { module = "com.example.group:long", version.ref = "com-example-group-long" }
    """)
        }
    
        def "merges multiple libraries when encountering identical coordinates"() {
            setup:
            versionCatalogDependencyRegistry.registerLibrary("group:artifact", "1.1")
            versionCatalogDependencyRegistry.registerLibrary("group:artifact", "1.1")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 12:02:29 UTC 2023
    - 5K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/health/HealthExpirationStrategyTest.groovy

            when:
            stats.getHeapStats() >> belowThreshold
            underTest.checkExpiration()
    
            then:
            0 * logger.warn(_)
    
            // After encountering the unhealthy condition for the first time, we log.
            when:
            stats.getHeapStats() >> aboveHeapThreshold
            underTest.checkExpiration()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/release/notes.md

    ## Reporting problems
    
    If you find a problem with this release, please file a bug on [GitHub Issues](https://github.com/gradle/gradle/issues) adhering to our issue guidelines.
    If you're not sure you're encountering a bug, please use the [forum](https://discuss.gradle.org/c/help-discuss).
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 07:16:40 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/syntax/syntax.go

    // process as much source as possible. In this case, the returned syntax tree
    // is only nil if no correct package clause was found.
    // If errh is nil, Parse will terminate immediately upon encountering the first
    // error, and the returned syntax tree is nil.
    //
    // If pragh != nil, it is called with each pragma encountered.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 01 18:18:07 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/release/notes-template.md

    ## Reporting problems
    
    If you find a problem with this release, please file a bug on [GitHub Issues](https://github.com/gradle/gradle/issues) adhering to our issue guidelines.
    If you're not sure you're encountering a bug, please use the [forum](https://discuss.gradle.org/c/help-discuss).
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 14:04:10 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/plugins/internal/VersionCatalogDependencyRegistryTest.groovy

            registry.libraries[0].module == "group:artifact"
            registry.libraries[0].version == "1.1"
            registry.libraries[0].versionRef == "group-artifact"
        }
    
        def "merges multiple libraries when encountering identical coordinates"() {
            setup:
            def registry = new VersionCatalogDependencyRegistry(true)
    
            when:
            registry.registerLibrary("group:artifact", "1.1")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 14:16:33 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/route/retry/retry.go

    //
    // - NumRetries: set from in.Attempts
    //
    // - RetryOn, RetriableStatusCodes: set from in.RetryOn (if specified). RetriableStatusCodes
    // is appended when encountering parts that are valid HTTP status codes.
    //
    // - PerTryTimeout: set from in.PerTryTimeout (if specified)
    func ConvertPolicy(in *networking.HTTPRetry, hashPolicy bool) *route.RetryPolicy {
    	var out *route.RetryPolicy
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. src/net/interface_unix_test.go

    		}
    		t.Fatal(err)
    	}
    	defer ti.teardown()
    
    	time.Sleep(3 * time.Millisecond)
    
    	// If Listen fails (on Linux with “bind: invalid argument”), zoneCache was
    	// not updated when encountering a nonexistent interface:
    	ln, err := Listen("tcp", "[fe80::1%"+ti.name+"]:0")
    	if err != nil {
    		t.Fatal(err)
    	}
    	ln.Close()
    	if err := ti.teardown(); err != nil {
    		t.Fatal(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 18 23:51:35 UTC 2023
    - 4.9K bytes
    - Viewed (0)
Back to top