Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 649 for binding3 (0.42 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/policy_source_test.go

    	require.Len(t, testContext.Source.Hooks(), 1, "should have one policy")
    	require.Len(t, testContext.Source.Hooks()[0].Bindings, 1, "should have one binding")
    	require.Equal(t, "binding1", testContext.Source.Hooks()[0].Bindings[0].GetName(), "should have one binding")
    
    	// Change the binding to another policy (policies without bindings should
    	// be ignored, so it should remove the first
    	require.NoError(t, testContext.UpdateAndWait(
    		&FakePolicy{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. maven-core/src/site/apt/default-bindings.apt.vm

    ~~ under the License.
    
     ---
     Plugins Bindings for Default Lifecycle Reference
     ---
     Hervé Boutemy
     ---
     2013-08-02
     ---
    
    Plugins Bindings for <<<default>>> Lifecycle Reference
    
      The {{{./lifecycles.html}<<<default>>> lifecycle}} is defined without any plugin binding; plugins bindings are defined separately
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Mar 08 17:45:23 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  3. maven-di/src/main/java/org/apache/maven/di/impl/Binding.java

        }
    
        public static <T> Binding<T> toInstance(T instance) {
            return new BindingToInstance<>(instance);
        }
    
        public static <R> Binding<R> to(Key<R> originalKey, TupleConstructorN<R> constructor, Class<?>[] types) {
            return Binding.to(
                    originalKey, constructor, Stream.of(types).map(Key::of).toArray(Key<?>[]::new));
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/package-info.java

     *  <li>or as composite/multi-type codecs, backed by a set of bindings, via {@link org.gradle.internal.serialize.graph.codecs.Bindings#build()} - see below for more on Bindings.
     *  </ul>
     *
     * <h3>Building Composite Codecs using Bindings</h3>
     * <p>In order to build composite codecs that can handle multiple types of objects, you use {@link org.gradle.internal.serialize.graph.codecs.Bindings bindings}.</p>
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. cluster/addons/node-problem-detector/standalone/npd-binding.yaml

    apiVersion: rbac.authorization.k8s.io/v1
    kind: ClusterRoleBinding
    metadata:
      name: npd-binding
      labels:
        kubernetes.io/cluster-service: "true"
        addonmanager.kubernetes.io/mode: Reconcile
    roleRef:
      apiGroup: rbac.authorization.k8s.io
      kind: ClusterRole
      name: system:node-problem-detector
    subjects:
    - apiGroup: rbac.authorization.k8s.io
      kind: User
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 21 09:29:37 UTC 2017
    - 397 bytes
    - Viewed (0)
  6. cluster/addons/node-problem-detector/kubelet-user-standalone/npd-binding.yaml

    apiVersion: rbac.authorization.k8s.io/v1
    kind: ClusterRoleBinding
    metadata:
      name: kubelet-user-npd-binding
      labels:
        kubernetes.io/cluster-service: "true"
        addonmanager.kubernetes.io/mode: Reconcile
    roleRef:
      apiGroup: rbac.authorization.k8s.io
      kind: ClusterRole
      name: system:node-problem-detector
    subjects:
    - apiGroup: rbac.authorization.k8s.io
      kind: User
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 08 22:50:41 UTC 2019
    - 389 bytes
    - Viewed (0)
  7. cluster/addons/rbac/legacy-kubelet-user-disable/kubelet-binding.yaml

    # This is required so that old clusters don't remove required bindings for 1.5
    # kubelets to function.
    apiVersion: rbac.authorization.k8s.io/v1
    kind: ClusterRoleBinding
    metadata:
      name: kubelet-cluster-admin
      labels:
        addonmanager.kubernetes.io/mode: EnsureExists
    roleRef:
      apiGroup: rbac.authorization.k8s.io
      kind: ClusterRole
      name: system:node
    subjects: []
    ---
    # This is required so that new clusters still have bootstrap permissions
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 24 04:11:47 UTC 2019
    - 782 bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/volumebinding/binder.go

    	// There is no API rollback if the actual binding fails
    	for _, binding = range bindings {
    		// TODO: does it hurt if we make an api call and nothing needs to be updated?
    		logger.V(5).Info("Updating PersistentVolume: binding to claim", "pod", klog.KObj(pod), "PV", klog.KObj(binding.pv), "PVC", klog.KObj(binding.pvc))
    		newPV, err := b.kubeClient.CoreV1().PersistentVolumes().Update(ctx, binding.pv, metav1.UpdateOptions{})
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/codecs/BindingsBackedCodec.kt

    
    /**
     * An immutable set of bindings, from which a [Codec] can be created.
     */
    class Bindings(
        private val bindings: ImmutableList<Binding>
    ) {
        companion object {
            fun of(builder: BindingsBuilder.() -> Unit) = BindingsBuilder(emptyList()).apply(builder).build()
        }
    
        /**
         * Builds a new set of bindings based on the current bindings plus any bindings created via the given builder.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/HEAD/core.v1.Binding.json

    {
      "kind": "Binding",
      "apiVersion": "v1",
      "metadata": {
        "name": "nameValue",
        "generateName": "generateNameValue",
        "namespace": "namespaceValue",
        "selfLink": "selfLinkValue",
        "uid": "uidValue",
        "resourceVersion": "resourceVersionValue",
        "generation": 7,
        "creationTimestamp": "2008-01-01T01:01:01Z",
        "deletionTimestamp": "2009-01-01T01:01:01Z",
        "deletionGracePeriodSeconds": 10,
        "labels": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 06 21:25:20 UTC 2022
    - 1.4K bytes
    - Viewed (0)
Back to top