Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for makeBinding (1.11 sec)

  1. 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)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/policy_source_test.go

    	return nil
    }
    
    func (fb *FakeBinding) GetName() string {
    	return fb.Name
    }
    
    func (fb *FakeBinding) GetNamespace() string {
    	return fb.Namespace
    }
    
    func (fb *FakeBinding) GetPolicyName() types.NamespacedName {
    	return types.NamespacedName{
    		Name: fb.PolicyName,
    	}
    }
    
    func (fb *FakeBinding) GetMatchResources() *v1.MatchResources {
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. 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)
  4. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/policy_test_context.go

    		Group:    "policy.example.com",
    		Version:  "v1",
    		Resource: "fakebindings",
    	}
    	fakePolicyGVK := fakePolicyGVR.GroupVersion().WithKind("FakePolicy")
    	fakeBindingGVK := fakeBindingGVR.GroupVersion().WithKind("FakeBinding")
    
    	policySourceTestScheme, err := func() (*runtime.Scheme, error) {
    		scheme := runtime.NewScheme()
    
    		if err := fake.AddToScheme(scheme); err != nil {
    			return nil, err
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 19K bytes
    - Viewed (0)
  5. 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)
Back to top