Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  2. 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