Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for bindInputReference (0.17 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/UnboundRulesProcessorTest.groovy

                inputReference(String)
                inputReference("reference.third", Boolean)
                bindSubjectReference("subject")
                bindInputReference(0, "reference.first")
                bindInputReference(1, "reference.second")
            }
    
            expect:
            reportForProcessedBinders == reportFor(
                    UnboundRule.descriptor("partiallyBoundRule")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/RegistrySpec.groovy

            }
    
            void inputReference(String path, Class type) {
                inputReference(ModelReference.of(new ModelPath(path), ModelType.of(type)))
            }
    
            void bindInputReference(int index, String path) {
                boundInputReferencePaths[index] = path
            }
    
            void descriptor(String descriptor) {
                this.descriptor = new SimpleModelRuleDescriptor(descriptor)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7.3K bytes
    - Viewed (0)
Back to top