Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for onUnbind (0.08 sec)

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

                ));
            }
    
            doOnBind(node);
        }
    
        protected void doOnBind(ModelNodeInternal node) {
            // Do nothing by default
        }
    
        public void onUnbind(ModelNodeInternal node) {
            if (node == boundTo) {
                boundTo = null;
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/RuleBindings.java

            }
        }
    
        private static void unbind(RuleBinder rule, ModelNodeInternal node) {
            rule.getSubjectBinding().onUnbind(node);
            for (ModelBinding binding : rule.getInputBindings()) {
                binding.onUnbind(node);
            }
        }
    
        /**
         * Returns the set of rules with the given target as their subject.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top