Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for removeOutgoingEdges (0.4 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

                    return;
                }
            }
    
            // Clear previous traversal state, if any
            if (previousTraversalExclusions != null) {
                removeOutgoingEdges();
                edgesToRecompute = null;
                potentiallyActivatedConstraints = null;
                ownStrictVersionConstraints = null;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/ModuleResolveState.java

            assert newSelection.getModule() == this;
    
            changingSelection = true;
    
            // Remove any outgoing edges for the current selection
            selected.removeOutgoingEdges();
    
            this.selected = newSelection;
            this.replaced = false;
    
            doRestart(newSelection);
            changingSelection = false;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/ComponentState.java

            return module.getPlatformOwners();
        }
    
        @Override
        public VirtualPlatformState getPlatformState() {
            return module.getPlatformState();
        }
    
        public void removeOutgoingEdges() {
            for (NodeState configuration : getNodes()) {
                configuration.deselect();
            }
        }
    
        /**
         * Describes the possible states of a component in the graph.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 17K bytes
    - Viewed (0)
Back to top