Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for makePending (0.22 sec)

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

                ModuleResolveState module = targetComponent.getModule();
                if (module.isPending()) {
                    selector.getTargetModule().removeUnattachedDependency(this);
                    from.makePending(this);
                    module.registerConstraintProvider(from);
                    return;
                }
            }
    
            calculateTargetConfigurations(targetComponent);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

        boolean isSelectedByVariantAwareResolution() {
            // the order is strange logically but here for performance optimization
            return selectedByVariantAwareResolution && isSelected();
        }
    
        void makePending(EdgeState edgeState) {
            if (!removingOutgoingEdges) {
                // We can ignore if we are already removing edges anyway
                outgoingEdges.remove(edgeState);
                edgeState.markUnused();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/volumebinding/binder_test.go

    			expectedBindings: []*BindingInfo{makeBinding(unboundPVC, pvNode1a), makeBinding(unboundPVC2, pvNode1b)},
    		},
    		"two-unbound-pvcs,order-by-size": {
    			podPVCs:          []*v1.PersistentVolumeClaim{unboundPVC2, unboundPVC},
    			pvs:              []*v1.PersistentVolume{pvNode1a, pvNode1b},
    			expectedBindings: []*BindingInfo{makeBinding(unboundPVC, pvNode1a), makeBinding(unboundPVC2, pvNode1b)},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 82.8K bytes
    - Viewed (0)
Back to top