Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for missingport (0.43 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. 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)
Back to top