Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for missingport (0.31 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractNamedDomainObjectContainerTest.groovy

            }
    
            then:
            MissingPropertyException missingProp = thrown()
            missingProp.property == 'obj1'
        }
    
        def "does not implicitly create an object when container is not being configured"() {
            when:
            container.obj1
    
            then:
            MissingPropertyException missingProp = thrown()
            missingProp.property == 'obj1'
    
            when:
            container.obj2 { }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 27 06:24:30 UTC 2018
    - 11.4K bytes
    - Viewed (0)
  2. pkg/controller/podautoscaler/replica_calculator.go

    	}
    
    	if len(missingPods) > 0 {
    		if usageRatio < 1.0 {
    			// on a scale-down, treat missing pods as using 100% (all) of the resource request
    			// or the utilization target for targets higher than 100%
    			fallbackUtilization := int64(max(100, targetUtilization))
    			for podName := range missingPods {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 19 03:31:34 UTC 2023
    - 20.1K bytes
    - Viewed (0)
Back to top