Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for checkNodePath (0.09 sec)

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

            applyTo(predicate, role, action);
        }
    
        @Override
        public void applyToSelf(ModelActionRole role, ModelAction action) {
            DefaultModelRegistry.checkNodePath(this, action);
            modelRegistry.bind(action.getSubject(), role, action);
        }
    
        @Override
        public void applyToSelf(ExtractedRuleSource<?> rules) {
            rules.apply(modelRegistry, this);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 12:51:08 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/DefaultModelRegistry.java

            for (Map.Entry<ModelActionRole, ? extends ModelAction> entry : actions.entries()) {
                ModelActionRole role = entry.getKey();
                ModelAction action = entry.getValue();
                checkNodePath(node, action);
                RuleBinder binder = bindInternal(action.getSubject(), role, action);
                node.addRegistrationActionBinder(binder);
            }
        }
    
        @Override
    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