Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for binding3 (0.27 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/printers/internalversion/printers_test.go

    		}
    	}
    }
    
    func TestPrintRoleBinding(t *testing.T) {
    	tests := []struct {
    		binding  rbac.RoleBinding
    		options  printers.GenerateOptions
    		expected []metav1.TableRow
    	}{
    		// Basic role binding
    		{
    			binding: rbac.RoleBinding{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:              "binding1",
    					CreationTimestamp: metav1.Time{Time: time.Now().Add(1.9e9)},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1alpha1_openapi.json

    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: Fri Mar 08 04:18:56 UTC 2024
    - 235.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	if skip(sb) {
    		return nil
    	}
    	changed := false
    	bindings := make([]AST, len(sb.Bindings))
    	for i, b := range sb.Bindings {
    		bc := b.Copy(fn, skip)
    		if bc == nil {
    			bindings[i] = b
    		} else {
    			bindings[i] = bc
    			changed = true
    		}
    	}
    	if !changed {
    		return fn(sb)
    	}
    	sb = &StructuredBindings{Bindings: bindings}
    	if r := fn(sb); r != nil {
    		return r
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1beta1_openapi.json

    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: Fri Mar 08 04:18:56 UTC 2024
    - 235.7K bytes
    - Viewed (0)
  6. maven-model-builder/src/test/resources/dag.txt

    	quarkus/extensions/arc/deployment/pom.xml
    	quarkus/extensions/datasource/common/pom.xml
    quarkus/extensions/kubernetes-service-binding/deployment/pom.xml
    	quarkus/core/deployment/pom.xml
    	quarkus/extensions/kubernetes-service-binding/runtime/pom.xml
    	quarkus/extensions/kubernetes-service-binding/spi/pom.xml
    	quarkus/extensions/kubernetes/spi/pom.xml
    quarkus/extensions/elytron-security-oauth2/runtime/pom.xml
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 15 16:49:26 UTC 2024
    - 224K bytes
    - Viewed (0)
  7. pkg/api/pod/util_test.go

    		t.Logf("Missing expected secret paths:\n%s", strings.Join(sets.List[string](missingPaths), "\n"))
    		t.Error("Missing expected secret paths. Verify VisitPodSecretNames() is correctly finding the missing paths, then correct expectedSecretPaths")
    	}
    	if extraPaths := secretPaths.Difference(expectedSecretPaths); len(extraPaths) > 0 {
    		t.Logf("Extra secret paths:\n%s", strings.Join(sets.List[string](extraPaths), "\n"))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  8. src/debug/elf/elf.go

    	DF_1_NOOPEN DynFlag1 = 0x00000040
    	// Indicates the object requires $ORIGIN processing.
    	DF_1_ORIGIN DynFlag1 = 0x00000080
    	// Indicates that the object should use direct binding information.
    	DF_1_DIRECT DynFlag1 = 0x00000100
    	// Unused.
    	DF_1_TRANS DynFlag1 = 0x00000200
    	// Indicates that the objects symbol table is to interpose before all symbols
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  9. pkg/apis/core/zz_generated.deepcopy.go

    func (in *Binding) DeepCopyInto(out *Binding) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
    	out.Target = in.Target
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Binding.
    func (in *Binding) DeepCopy() *Binding {
    	if in == nil {
    		return nil
    	}
    	out := new(Binding)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    func (in *Binding) DeepCopyInto(out *Binding) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
    	out.Target = in.Target
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Binding.
    func (in *Binding) DeepCopy() *Binding {
    	if in == nil {
    		return nil
    	}
    	out := new(Binding)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
Back to top