Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,662 for hiding (0.11 sec)

  1. pkg/scheduler/schedule_one.go

    }
    
    // assume signals to the cache that a pod is already in the cache, so that binding can be asynchronous.
    // assume modifies `assumed`.
    func (sched *Scheduler) assume(logger klog.Logger, assumed *v1.Pod, host string) error {
    	// Optimistically assume that the binding will succeed and send it to apiserver
    	// in the background.
    	// If the binding fails, scheduler will release resources allocated to assumed pod
    	// immediately.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 13:28:08 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  2. testing/performance/src/templates/root-project/gradle.properties

    <% if (binding.hasVariable("daemonMemory")) { %>org.gradle.jvmargs=-Xms${binding.getVariable("daemonMemory")} -Xmx${binding.getVariable("daemonMemory")}<% } %>
    <% if (binding.hasVariable("parallel")) { %>org.gradle.parallel=true<% } %>
    <% if (binding.hasVariable("maxWorkers")) { %>org.gradle.workers.max=${binding.getVariable("maxWorkers")}<% } %>
    compilerMemory=<% if (binding.hasVariable("compilerMemory")) { %>${binding.getVariable("compilerMemory")}<% } else { %>1g<% } %>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 742 bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/metrics/metrics_test.go

                apiserver_validating_admission_policy_check_duration_seconds_bucket{enforcement_action="allow",policy="policy.example.com",policy_binding="binding.example.com",state="active",le="1"} 0
                apiserver_validating_admission_policy_check_duration_seconds_bucket{enforcement_action="allow",policy="policy.example.com",policy_binding="binding.example.com",state="active",le="+Inf"} 1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 12 18:58:24 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/admissionregistration/v1alpha1/generated.proto

      // `parameterNotFoundAction` controls the behavior of the binding when the resource
      // exists, and name or selector is valid, but there are no parameters
      // matched by the binding. If the value is set to `Allow`, then no
      // matched parameters will be treated as successful validation by the binding.
      // If set to `Deny`, then no matched parameters will be subject to the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 29.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/dispatcher.go

    		Message:           decision.Message,
    		ValidationActions: binding.Spec.ValidationActions,
    		Binding:           binding.Name,
    		Policy:            binding.Spec.PolicyName,
    	}})
    	if err != nil {
    		klog.Warningf("Failed to set admission audit annotation %s for ValidatingAdmissionPolicy %s and ValidatingAdmissionPolicyBinding %s: %v", key, binding.Spec.PolicyName, binding.Name, err)
    	}
    	value := string(valueJSON)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/schemaBuidler/FunctionExtractorTest.kt

        }
    
        abstract class ReceiverOne {
            @Adding
            abstract fun adding(receiver: ReceiverOne.() -> Unit): ReceiverOne
        }
    
        abstract class ReceiverTwo {
            @Adding
            abstract fun adding(receiver: ReceiverTwo.() -> Unit)
        }
    
        abstract class ReceiverThree {
            @Adding
            abstract fun adding(three: Int)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:01 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. testing/performance/src/templates/gradle-properties/gradle.properties

    <% if (binding.hasVariable("daemonMemory")) { %>org.gradle.jvmargs=-Xms${binding.getVariable("daemonMemory")} -Xmx${binding.getVariable("daemonMemory")}<% } %>
    <% if (binding.hasVariable("parallel")) { %>org.gradle.parallel=true<% } %>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 349 bytes
    - Viewed (0)
  8. maven-di/src/main/java/org/apache/maven/di/impl/InjectorImpl.java

                                + binding.getScope().annotationType()))
                        .get();
                compiled = scope.scope((Key<Q>) binding.getOriginalKey(), binding.getScope(), compiled);
            }
            return compiled;
        }
    
        protected void doBindImplicit(Key<?> key, Binding<?> binding) {
            if (binding != null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  9. maven-di/src/main/java/org/apache/maven/di/impl/ReflectionUtils.java

        }
    
        public static <T> @Nullable Binding<T> generateImplicitBinding(Key<T> key) {
            Binding<T> binding = generateConstructorBinding(key);
            if (binding != null) {
                Annotation scope = scopeOf(key.getRawType());
                if (scope != null) {
                    binding = binding.scope(scope);
                }
                binding = binding.initializeWith(generateInjectingInitializer(key));
            }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Feb 09 17:13:31 UTC 2024
    - 16K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/mappingToJvm/EmptyBlocksTest.kt

            assertTrue { result.configuredLazy.isInitialized() }
        }
    
        @Test
        fun `empty adding block ensures that the object is created`() {
            val resolution = schema.resolve(
                """
                adding()
                adding { }
                adding { x = 2 }
                addingWithArg(3)
                addingWithArg(4) { }
                """.trimIndent()
            )
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 11:58:18 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top