Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 649 for binding3 (0.16 sec)

  1. pkg/scheduler/schedule_one_test.go

    	bindingChan := make(chan *v1.Binding, 1)
    	client := clientsetfake.NewSimpleClientset()
    	client.PrependReactor("create", "pods", func(action clienttesting.Action) (bool, runtime.Object, error) {
    		var b *v1.Binding
    		if action.GetSubresource() == "binding" {
    			b := action.(clienttesting.CreateAction).GetObject().(*v1.Binding)
    			bindingChan <- b
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  2. pkg/controller/volume/persistentvolume/pv_controller.go

    	logger.V(4).Info("Claim status after binding", "PVC", klog.KObj(claim), "claimStatus", getClaimStatusForLogging(claim))
    	return nil
    }
    
    // unbindVolume rolls back previous binding of the volume. This may be necessary
    // when two controllers bound two volumes to single claim - when we detect this,
    // only one binding succeeds and the second one must be rolled back.
    // This method updates both Spec and Status.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/admissionregistration/v1beta1/types_swagger_doc_generated.go

    policies for clusters.\n\nFor a given admission request, each binding will cause its policy to be evaluated N times, where N is 1 for policies/bindings that don't use params, otherwise N is the number of parameters selected by the binding.\n\nThe CEL expressions of a policy must have a computed CEL cost below the maximum CEL budget. Each evaluation of the policy is given an independent CEL cost budget. Adding/removing policies, bindings, or params can not affect whether a given (policy, binding, param)...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 46.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/RuleBindingsTest.groovy

            def rule6 = rule("path", ModelNode.State.Finalized)
    
            given:
            bindings.add(rule1)
            bindings.add(rule2)
            bindings.add(rule3)
            bindings.add(rule4)
            bindings.add(rule5)
            bindings.add(rule6)
            addNode(node("path", Long))
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 26.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/admissionregistration/v1/types_swagger_doc_generated.go

    policies for clusters.\n\nFor a given admission request, each binding will cause its policy to be evaluated N times, where N is 1 for policies/bindings that don't use params, otherwise N is the number of parameters selected by the binding.\n\nThe CEL expressions of a policy must have a computed CEL cost below the maximum CEL budget. Each evaluation of the policy is given an independent CEL cost budget. Adding/removing policies, bindings, or params can not affect whether a given (policy, binding, param)...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 48.7K bytes
    - Viewed (0)
  6. pkg/apis/rbac/validation/validation.go

    	"k8s.io/kubernetes/pkg/apis/rbac"
    )
    
    // ValidateRBACName is exported to allow types outside of the RBAC API group to reuse this validation logic
    // Minimal validation of names for roles and bindings. Identical to the validation for Openshift. See:
    // * https://github.com/kubernetes/kubernetes/blob/60db507b279ce45bd16ea3db49bf181f2aeb3c3d/pkg/api/validation/name.go
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 01:48:21 UTC 2022
    - 10.4K bytes
    - Viewed (0)
  7. testing/performance/src/templates/project-with-source/gradle.properties

    <% if (binding.hasVariable("daemonMemory")) { %>org.gradle.jvmargs=-Xms${binding.getVariable("daemonMemory")} -Xmx${binding.getVariable("daemonMemory")}<% } %>
    <% if (binding.hasVariable("parallel")) { %>org.gradle.parallel=true<% } %>
    <% if (binding.hasVariable("maxWorkers")) { %>org.gradle.workers.max=${binding.getVariable("maxWorkers")}<% } %>
    compilerMemory=<% if (binding.hasVariable("compilerMemory")) { %>${binding.getVariable("compilerMemory")}<% } else { %>1g<% } %>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 742 bytes
    - Viewed (0)
  8. pkg/apis/admissionregistration/types.go

    //
    // For a given admission request, each binding will cause its policy to be
    // evaluated N times, where N is 1 for policies/bindings that don't use
    // params, otherwise N is the number of parameters selected by the binding.
    //
    // The CEL expressions of a policy must have a computed CEL cost below the maximum
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/volumebinding/volume_binding.go

    		// may not exist if the pod does not reference any PVC
    		state.allBound = true
    	}
    	return nil
    }
    
    // PreBind will make the API update with the assumed bindings and wait until
    // the PV controller has completely finished the binding operation.
    //
    // If binding errors, times out or gets undone, then an error will be returned to
    // retry scheduling.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:13:06 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  10. hack/update-codegen.sh

            "pkg/kubelet/pluginmanager/pluginwatcher/example_plugin_apis"
        )
    
        kube::log::status "Generating protobuf bindings for ${#apis[@]} targets"
        if [[ "${DBG_CODEGEN}" == 1 ]]; then
            kube::log::status "DBG: generating protobuf bindings for:"
            for dir in "${apis[@]}"; do
                kube::log::status "DBG:     $dir"
            done
        fi
    
        for api in "${apis[@]}"; do
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 15:15:31 UTC 2024
    - 29.2K bytes
    - Viewed (0)
Back to top