Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,097 for annot1 (0.11 sec)

  1. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/MapPropertyIntegrationTest.groovy

            '(null)'    | "'someValue'" || 'Cannot get the value of a property of type java.util.Map with key type java.lang.String as the source contains a null key.'
            "'someKey'" | 'null'        || 'Cannot get the value of a property of type java.util.Map with value type java.lang.String as the source contains a null value for key "someKey".'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 04 15:28:53 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  2. testing/integ-test/src/integTest/groovy/org/gradle/integtests/TaskErrorExecutionIntegrationTest.groovy

                fqid == 'task-selection:no-matches'
                contextualLabel == "Cannot locate tasks that match ':someTest' as task 'someTest' not found in root project 'test'. Some candidates are: 'someTask'."
                additionalData.asMap == ['requestedPath' : ':someTest']
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/inspect/ModelRuleExtractorTest.groovy

            }
        }
    
        def "model creation rule cannot be generic"() {
            when:
            extract(HasGenericModelRule)
    
            then:
            def e = thrown(InvalidModelRuleDeclarationException)
            e.message == """Type ${fullyQualifiedNameOf(HasGenericModelRule)} is not a valid rule source:
    - Method thing() is not a valid rule method: Cannot have type variables (i.e. cannot be a generic method)"""
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/internal/xml/SimpleXmlWriterSpec.groovy

        }
    
        def "cannot end element when stack is empty"() {
            writer.startElement("root")
            writer.endElement()
    
            when:
            writer.endElement()
    
            then:
            IllegalStateException e = thrown()
            e.message == 'Cannot end element, as there are no started elements.'
        }
    
        def "cannot write characters when stack is empty"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 02 12:15:58 UTC 2021
    - 14.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/runtime/converter_test.go

    			obj:  &F{},
    			err:  fmt.Errorf("json: cannot unmarshal number into Go value of type string"),
    		},
    		{
    			// Invalid string data
    			data: "{\"fa\":13.5}",
    			obj:  &F{},
    			err:  fmt.Errorf("json: cannot unmarshal number into Go value of type string"),
    		},
    		{
    			// Invalid string data
    			data: "{\"fa\":true}",
    			obj:  &F{},
    			err:  fmt.Errorf("json: cannot unmarshal bool into Go value of type string"),
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 16:02:13 UTC 2023
    - 22.9K bytes
    - Viewed (0)
  6. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildTaskExecutionIntegrationTest.groovy

            "unknown:help"       | "Cannot locate tasks that match 'unknown:help' as project 'unknown' not found in root project 'broken'."
            ":unknown:help"      | "Cannot locate tasks that match ':unknown:help' as project 'unknown' not found in root project 'broken'."
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  7. platforms/software/platform-base/src/test/groovy/org/gradle/language/base/internal/ComponentTypeModelRuleExtractorTest.groovy

            "wildcardType"      | "Type '?' cannot be a wildcard type (i.e. cannot use ? super, ? extends etc.)."                               | "wildcard type parameter"
            "extendsType"       | "Type '? extends ${ComponentSpec.name}' cannot be a wildcard type (i.e. cannot use ? super, ? extends etc.)." | "extends type parameter"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformValuesInjectionIntegrationTest.groovy

            when:
            fails(":a:resolve")
    
            then:
            failure.assertResolutionFailure(':a:resolver')
            failure.assertHasCause("Cannot query the parameters of an instance of TransformAction that takes no parameters.")
        }
    
        def "transform parameters type cannot use caching annotations"() {
            createDirs("a", "b")
            settingsFile << """
                include 'a', 'b'
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 11:12:24 UTC 2023
    - 37.7K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ManagedModelGroovyScalarConfigurationIntegrationTest.groovy

                """
    
            then:
            fails 'printResolvedValues'
    
            and:
            failure.assertHasLineNumber(111)
            failure.assertHasCause("Cannot set property: theThing for class: Props to value: $value.")
            failure.assertHasCause("""Cannot convert the provided notation to an object of type Thing: $value.
    The following types/formats are supported:
      - One of the following values: 'TOASTER', 'NOT_A_TOASTER'""")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  10. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultArtifactDescriptorReader.java

            this.versionResolver = Objects.requireNonNull(versionResolver, "versionResolver cannot be null");
            this.versionRangeResolver = Objects.requireNonNull(versionRangeResolver, "versionRangeResolver cannot be null");
            this.artifactResolver = Objects.requireNonNull(artifactResolver, "artifactResolver cannot be null");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 14.6K bytes
    - Viewed (0)
Back to top