Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for missingport (0.12 sec)

  1. operator/pkg/validate/validate_test.go

    meshConfig:
      defaultConfig:
        discoveryAddress: missingport
    `,
    			wantErrs: makeErrors([]string{`1 error occurred:
    	* invalid discovery address: unable to split "missingport": address missingport: missing port in address
    
    `}),
    		},
    		{
    			desc: "Bad mesh config values",
    			yamlStr: `
    values:
      meshConfig:
        defaultConfig:
          discoveryAddress: missingport
    `,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 25 11:44:31 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  2. src/net/ipsock.go

    			return addrErr(hostport, missingPort)
    		case i:
    			// The expected result.
    		default:
    			// Either ']' isn't followed by a colon, or it is
    			// followed by a colon that is not the last one.
    			if hostport[end+1] == ':' {
    				return addrErr(hostport, tooManyColons)
    			}
    			return addrErr(hostport, missingPort)
    		}
    		host = hostport[1:end]
    		j, k = 1, end+1 // there can't be a '[' resp. ']' before these positions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. platforms/core-configuration/model-groovy/src/test/groovy/org/gradle/model/dsl/internal/NonTransformedModelDslBackingTest.groovy

                }
            }
            registry.realize("foo", ModelType.UNTYPED)
    
            then:
            def e = thrown(ModelRuleExecutionException)
            def missingProp = e.cause
            missingProp instanceof MissingPropertyException
            missingProp.property == 'unknown'
    
            when:
            modelDsl.configure {
                bah {
                    defineSomeThing {
                        unknown {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  6. pkg/controller/podautoscaler/replica_calculator_test.go

    			}
    			if !unreadyPods.Equal(tc.expectUnreadyPods) {
    				t.Errorf("%s got unreadyPods %v, expected %v", tc.name, unreadyPods, tc.expectUnreadyPods)
    			}
    			if !missingPods.Equal(tc.expectMissingPods) {
    				t.Errorf("%s got missingPods %v, expected %v", tc.name, missingPods, tc.expectMissingPods)
    			}
    			if !ignoredPods.Equal(tc.expectIgnoredPods) {
    				t.Errorf("%s got ignoredPods %v, expected %v", tc.name, ignoredPods, tc.expectIgnoredPods)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 19 03:31:34 UTC 2023
    - 68.4K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_test.go

    	emptyPod := podWithUIDNameNsSpec("2", "emptypod", "foo", emptyPodSpec)
    	missingPod := podWithUIDNameNsSpec("3", "missingpod", "foo", missingPodSpec)
    	failedPod := podWithUIDNameNsSpec("4", "failedpod", "foo", failedPodSpec)
    
    	kl.HandlePodAdditions([]*v1.Pod{fittingPod, emptyPod, missingPod, failedPod})
    
    	// Check pod status stored in the status map.
    	checkPodStatus(t, kl, fittingPod, v1.PodPending)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
Back to top