Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 649 for binding3 (0.21 sec)

  1. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/SimpleTemplateOperation.java

    public class SimpleTemplateOperation implements TemplateOperation {
        private final URL templateURL;
        private final File target;
        private final Map<String, TemplateValue> bindings;
    
        public SimpleTemplateOperation(URL templateURL, File target, Map<String, TemplateValue> bindings) {
            if (templateURL == null) {
                throw new BuildInitException("Template URL must not be null");
            }
    
            if (target == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-application/src/main/java/org/gradle/api/internal/plugins/StartScriptTemplateBindingFactory.java

            Map<String, String> binding = new HashMap<>();
            binding.put(ScriptBindingParameter.APP_NAME.getKey(), details.getApplicationName());
            binding.put(ScriptBindingParameter.OPTS_ENV_VAR.getKey(), details.getOptsEnvironmentVar());
            binding.put(ScriptBindingParameter.EXIT_ENV_VAR.getKey(), details.getExitEnvironmentVar());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/mappingToJvm/DeclarativeRuntimeFunction.kt

    import kotlin.reflect.KFunction
    
    
    interface DeclarativeRuntimeFunction {
        fun callBy(receiver: Any, binding: Map<DataParameter, Any?>, hasLambda: Boolean): InvocationResult
    
        fun callByWithErrorHandling(receiver: Any, binding: Map<DataParameter, Any?>, hasLambda: Boolean): InvocationResult {
            try {
                return callBy(receiver, binding, hasLambda)
            } catch (ite: InvocationTargetException) {
                throw ite.cause ?: ite
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:07:27 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. maven-di/src/main/java/org/apache/maven/di/impl/Types.java

         *
         * @param type     a type to be bound
         * @param bindings a map of actual types
         */
        public static Type bind(Type type, Map<TypeVariable<?>, Type> bindings) {
            return bind(type, bindings::get);
        }
    
        /**
         * Binds a given type with actual type arguments
         *
         * @param type     a type to be bound
         * @param bindings a lookup function for actual types
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/RuleBindings.java

            for (ModelBinding binding : ruleBinder.getInputBindings()) {
                addRule(ruleBinder, rulesByInput, binding);
            }
        }
    
        private void addRule(RuleBinder rule, NodeAtStateIndex index, ModelBinding binding) {
            Reference reference = new Reference(rule, index, binding);
            BindingPredicate predicate = binding.getPredicate();
            if (predicate.getPath() != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  6. testing/performance/src/templates/kts-empty/build.gradle.kts

     * limitations under the License.
     */
    
    <% if (binding.hasVariable("buildScanPluginVersion") || binding.hasVariable("springDmPluginVersion")) {%>
    
    buildscript {
        repositories {
    <% if(binding.hasVariable("springDmPluginVersion")) { %>
            mavenLocal()
            mavenCentral()
    <% } %>
    <% if (binding.hasVariable("buildScanPluginVersion")) { %>
            maven {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/metrics/metrics.go

    func (m *ValidatingAdmissionPolicyMetrics) ObserveAdmissionWithError(ctx context.Context, elapsed time.Duration, policy, binding, state string) {
    	m.policyCheck.WithContext(ctx).WithLabelValues(policy, binding, "allow", state).Inc()
    	m.policyLatency.WithContext(ctx).WithLabelValues(policy, binding, "allow", state).Observe(elapsed.Seconds())
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 12 18:58:24 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  8. 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)
  9. hack/_update-generated-proto-bindings-dockerized.sh

    Tim Hockin <******@****.***> 1704583440 -0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:04 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. 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)
Back to top