Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 459 for unbinding (0.32 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/UnboundRulesProcessor.java

                    ModelBinding binding = binder.getInputBindings().get(i);
                    builder.immutableInput(toInputBuilder(binding));
                }
    
                unboundRules.add(builder.build());
            }
            return unboundRules;
        }
    
        private UnboundRuleInput.Builder toInputBuilder(ModelBinding binding) {
            ModelReference<?> reference = binding.getPredicate().getReference();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/policy_dispatcher.go

    	Resource schema.GroupVersionResource
    
    	// Relevant binding for this hook.
    	// May be empty if there was an error with the policy's configuration itself
    	Binding B
    
    	// Compiled policy evaluator
    	Evaluator E
    
    	// Params fetched by the binding to use to evaluate the policy
    	Param runtime.Object
    
    	// Error is set if there was an error with the policy or binding or its
    	// params, etc
    	Error error
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/internal/impl/SisuDiBridgeModule.java

                    Set<Binding<Q>> res = getBindings(key);
                    if (res != null && !res.isEmpty()) {
                        List<Binding<Q>> bindingList = new ArrayList<>(res);
                        Comparator<Binding<Q>> comparing = Comparator.comparing(Binding::getPriority);
                        bindingList.sort(comparing.reversed());
                        Binding<Q> binding = bindingList.get(0);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/defaultbinder/default_binder_test.go

    	tests := []struct {
    		name        string
    		injectErr   error
    		wantBinding *v1.Binding
    	}{
    		{
    			name: "successful",
    			wantBinding: &v1.Binding{
    				ObjectMeta: metav1.ObjectMeta{Namespace: "ns", Name: "foo"},
    				Target:     v1.ObjectReference{Kind: "Node", Name: testNode},
    			},
    		}, {
    			name:      "binding error",
    			injectErr: errors.New("binding error"),
    		},
    	}
    	for _, tt := range tests {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 23 02:17:34 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  5. pkg/registry/rbac/validation/rule.go

    	binding *rbacv1.RoleBinding
    	subject *rbacv1.Subject
    }
    
    func (d *roleBindingDescriber) String() string {
    	return fmt.Sprintf("RoleBinding %q of %s %q to %s",
    		d.binding.Name+"/"+d.binding.Namespace,
    		d.binding.RoleRef.Kind,
    		d.binding.RoleRef.Name,
    		describeSubject(d.subject, d.binding.Namespace),
    	)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 02 16:51:16 UTC 2020
    - 11.6K bytes
    - Viewed (0)
  6. pkg/registry/core/pod/storage/storage_test.go

    		if err != nil {
    			t.Fatalf("%s: unexpected error: %v", k, err)
    		}
    
    		binding := validNewBinding()
    		binding.UID = testCase.podUIDGetter(podCreated.(*api.Pod))
    		binding.ResourceVersion = testCase.podResourceVersionGetter(podCreated.(*api.Pod))
    
    		if _, err := bindingStorage.Create(ctx, binding.Name, binding, rest.ValidateAllObjectFunc, &metav1.CreateOptions{}); !testCase.errOK(err) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 07:18:44 UTC 2024
    - 38.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/FunctionCallResolver.kt

                }
            }
    
            if (!typeCheckFunctionCall(binding, argResolution)) {
                // TODO: return type mismatch in args
                return@mapNotNull null
            }
    
            FunctionResolutionAndBinding(receiver, candidate, binding)
        }
    
        private
        fun TypeRefContext.typeCheckFunctionCall(
            binding: ParameterArgumentBinding,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 14:27:23 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  8. pkg/apis/rbac/helpers.go

    	return r
    }
    
    // BindingOrDie calls the binding method and panics if there is an error.
    func (r *ClusterRoleBindingBuilder) BindingOrDie() ClusterRoleBinding {
    	ret, err := r.Binding()
    	if err != nil {
    		panic(err)
    	}
    	return ret
    }
    
    // Binding builds and returns the ClusterRoleBinding API object from the builder
    // object.
    func (r *ClusterRoleBindingBuilder) Binding() (ClusterRoleBinding, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 23 15:11:00 UTC 2020
    - 12.1K bytes
    - Viewed (0)
  9. test/fixedbugs/issue51401.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 51401: bad inline info in generated interface method wrapper
    // causes infinite loop in stack unwinding.
    
    package main
    
    import "runtime"
    
    type Outer interface{ Inner }
    
    type impl struct{}
    
    func New() Outer { return &impl{} }
    
    type Inner interface {
    	DoStuff() error
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 21:27:42 UTC 2022
    - 766 bytes
    - Viewed (0)
  10. testing/performance/src/templates/project-with-source/build.gradle

        maven {
            url rootProject.file("${repository.rootDir.name}").toURI().toURL()
        }
    <% } %>
        mavenCentral()
    }
    
    <% if (binding.hasVariable("projectDependencies")) { %>
        configurations {
            compile.extendsFrom projectsConfiguration
        }
    <% } %>
    
    <% if (binding.hasVariable("springDmPluginVersion")) {%>
    apply plugin: "io.spring.dependency-management"
    dependencyManagement {
        imports {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top