Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for subjectReference (0.23 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/RuleBinder.java

        private final List<ModelBinding> inputBindings;
    
        public RuleBinder(BindingPredicate subjectReference, List<BindingPredicate> inputReferences, ModelAction action, Collection<RuleBinder> binders) {
            this.action = action;
            this.inputReferences = inputReferences;
            this.binders = binders;
            this.subjectBinding = binding(subjectReference, action.getDescriptor(), true, new Action<ModelBinding>() {
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/DefaultModelRegistry.java

        }
    
        private BindingPredicate mapSubject(ModelReference<?> subjectReference, ModelActionRole role) {
            if (!role.isSubjectViewAvailable() && !subjectReference.isUntyped()) {
                throw new IllegalStateException(String.format("Cannot bind subject '%s' to role '%s' because it is targeting a type and subject types are not yet available in that role", subjectReference, role));
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 45.7K bytes
    - Viewed (0)
Back to top