Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 165 for creator1 (0.18 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/report/AmbiguousBindingReporter.java

            this(reference.getType().toString(), reference.getDescription(), ImmutableList.of(
                    new Provider(String.valueOf(path1), String.valueOf(creator1)),
                    new Provider(String.valueOf(path2), String.valueOf(creator2))
            ));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheJavaIntegrationTest.groovy

            then:
            assertCreatedBy 'creator1'
            assertStateStored()
    
            when:
            configurationCacheRun ":jar", "-Dcreator=creator2"
    
            then:
            assertCreatedBy 'creator2'
            assertStateLoaded()
    
            when:
            manifestFile.delete()
            configurationCacheRun ":jar", "-Dcreator=creator3"
    
            then:
            assertCreatedBy 'creator3'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/rules/DefaultRuleAwareNamedDomainObjectFactoryRegistry.java

            Optional<ModelRuleDescriptor> creator = creators.get(type);
            if (creator != null) {
                StringBuilder builder = new StringBuilder("Cannot register a factory for type ")
                    .append(type.getSimpleName())
                    .append(" because a factory for this type was already registered");
    
                if (creator.isPresent()) {
                    builder.append(" by ");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/test/groovy/org/gradle/api/reporting/model/internal/ModelNodeRendererTest.groovy

    import spock.lang.Specification
    
    
    class ModelNodeRendererTest extends Specification {
    
        def "should filter rules removing duplicates and excluding creators"() {
            ModelRuleDescriptor creator = Mock()
            creator.describeTo(_) >> { Appendable a ->
                a.append("creator")
            }
    
            ModelRuleDescriptor mutator = Mock()
            mutator.describeTo(_) >> { Appendable a ->
                a.append("mutator")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 01 02:14:13 UTC 2019
    - 1.5K bytes
    - Viewed (0)
  5. schema/relationship_test.go

    	type User struct {
    		ID        int32 `gorm:"primaryKey"`
    		Name      string
    		CreatorID *int32
    		Creator   *User
    	}
    
    	checkStructRelation(t, &User{}, Relation{
    		Name: "Creator", Type: schema.BelongsTo, Schema: "User", FieldSchema: "User",
    		References: []Reference{{"ID", "User", "CreatorID", "User", "", false}},
    	})
    }
    
    func TestSelfReferentialBelongsToOverrideReferences(t *testing.T) {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Apr 15 03:20:20 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/internal/cache/DiskLruCacheTest.kt

        setUp(parameters.first, parameters.second)
        var creator = cache.edit("k1")!!
        creator.setString(0, "ABC")
        creator.setString(1, "DE")
        creator.commit()
        cache.flush()
        filesystem.copy(journalFile, journalBkpFile)
        creator = cache.edit("k2")!!
        creator.setString(0, "F")
        creator.setString(1, "GH")
        creator.commit()
        cache.close()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 14:55:09 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/json/json_test.go

    			creater: &mockCreater{obj: &unstructured.Unstructured{}},
    
    			expectedGVK:    &schema.GroupVersionKind{Group: "", Version: "v1", Kind: "Foo"},
    			expectedObject: &unstructured.Unstructured{Object: map[string]interface{}{"apiVersion": "/v1", "kind": "Foo"}},
    			strict:         true,
    		},
    
    		// creator errors
    		{
    			data:       []byte("{}"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 04 15:55:02 UTC 2024
    - 40K bytes
    - Viewed (0)
  8. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/ChangesByGradleFileWatchingIntegrationTest.groovy

                        attributes('Created-By': providers.systemProperty("creator"))
                    }
                }
            """
    
            when:
            withWatchFs().run "jar", "-Dcreator=first"
            then:
            file("build/tmp/jar/MANIFEST.MF").text.contains("first")
            executedAndNotSkipped(":jar")
    
            when:
            withWatchFs().run "jar", "-Dcreator=second"
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/customModel/internalViews/tests/softwareModelExtend-iv-model.out

                  | Value:  	Some PUBLIC data
                  | Creator: 	components { ... } @ build.gradle line 37, column 5 > create(my)
    + tasks
          | Type:   	org.gradle.model.ModelMap<org.gradle.api.Task>
          | Creator: 	Project.<init>.tasks()
        + assemble
              | Type:   	org.gradle.api.DefaultTask
              | Value:  	task ':assemble'
              | Creator: 	Project.<init>.tasks.assemble()
              | Rules:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:33:19 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/modelRules/basicRuleSourcePlugin/tests/basicRuleSourcePlugin-model-task.out

              | Value:  	null
              | Creator: 	PersonRules#person(Person)
        + lastName
              | Type:   	java.lang.String
              | Value:  	Smith
              | Creator: 	PersonRules#person(Person)
        + maritalStatus
              | Type:   	MaritalStatus
              | Creator: 	PersonRules#person(Person)
        + mother
              | Type:   	Person
              | Value:  	null
              | Creator: 	PersonRules#person(Person)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 15:10:38 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top