Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,411 for hiding (0.1 sec)

  1. 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)
  2. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/codecs/BindingsBackedCodec.kt

    /**
     * An implementation of the Codec protocol that (based on a [Binding.tag]) chooses and delegates
     * to the proper binding (if one is found).
     *
     * The binding (a tagged codec) is chosen based on the availability of a [Binding.encoding] for the value being encoded.
     * This is basically implemented as a predicate dispatching on the value type, first available Binding.encoding wins
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 6K 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. testing/internal-performance-testing/src/templates/root-project/build.gradle

    <% if (binding.hasVariable("buildScanPluginVersion") || binding.hasVariable("springDmPluginVersion")) {%>
    
    buildscript {
        repositories {
    <% if(binding.hasVariable("springDmPluginVersion")) { %>
            mavenLocal()
            mavenCentral()
    <% } %>
    <% if (binding.hasVariable("buildScanPluginVersion")) { %>
            maven {
                url 'https://repo.gradle.org/gradle/enterprise-libs-snapshots-local/'
            }
    <% } %>
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 965 bytes
    - Viewed (0)
  5. pkg/registry/admissionregistration/validatingadmissionpolicybinding/authz.go

    	binding := obj.(*admissionregistration.ValidatingAdmissionPolicyBinding)
    	if binding.Spec.ParamRef == nil {
    		// no paramRef in new object
    		return nil
    	}
    
    	return v.authorize(ctx, binding)
    }
    
    func (v *validatingAdmissionPolicyBindingStrategy) authorizeUpdate(ctx context.Context, obj, old runtime.Object) error {
    	binding := obj.(*admissionregistration.ValidatingAdmissionPolicyBinding)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 12:19:03 UTC 2024
    - 3.7K 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. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top