Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 81 for expectActions (0.28 sec)

  1. pkg/controller/job/metrics/metrics.go

    	// JobSyncActionReconciling when the Job's pod creation/deletion expectations
    	// are unsatisfied and the controller is waiting for issued Pod
    	// creation/deletions to complete.
    	JobSyncActionReconciling = "reconciling"
    	// JobSyncActionTracking when the Job's pod creation/deletion expectations
    	// are satisfied and the number of active Pods matches expectations (i.e. no
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 17:25:15 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/MaybeNConcurrentRequests.java

    package org.gradle.test.fixtures.server.http;
    
    import java.time.Duration;
    import java.util.Collection;
    import java.util.concurrent.locks.Lock;
    
    /**
     * A cyclic barrier for {@link BlockingHttpServer} where expectations are optional.
     */
    class MaybeNConcurrentRequests extends ExpectMaxNConcurrentRequests {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. doc/next/6-stdlib/3-structs.md

    In this release, the only such type is
    [`HostLayout`](/pkg/structs#HostLayout)
    which indicates that a structure with a field of that
    type has a layout that conforms to host platform
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 16:06:02 UTC 2024
    - 356 bytes
    - Viewed (0)
  4. security/pkg/nodeagent/sds/sdsservice_test.go

    }
    
    func (s *TestServer) Verify(resp *discovery.DiscoveryResponse, expectations ...Expectation) *discovery.DiscoveryResponse {
    	s.t.Helper()
    	if len(resp.Resources) != len(expectations) {
    		s.t.Fatalf("expected %d resources, got %d", len(expectations), len(resp.Resources))
    	}
    	got := xdstest.ExtractTLSSecrets(s.t, resp.Resources)
    	for _, e := range expectations {
    		scrt := got[e.ResourceName]
    		var expectationKey []byte
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 17 20:12:58 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  5. pkg/controller/job/tracking_utils.go

    	uids := u.getSet(controllerKey)
    	if uids == nil {
    		return nil
    	}
    	uids.RLock()
    	set := uids.set.Clone()
    	uids.RUnlock()
    	return set
    }
    
    // ExpectDeletions records expectations for the given deleteKeys, against the
    // given job-key.
    // This is thread-safe across different job keys.
    func (u *uidTrackingExpectations) expectFinalizersRemoved(logger klog.Logger, jobKey string, deletedKeys []string) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 14 05:40:02 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  6. testing/internal-testing/src/main/groovy/org/gradle/test/precondition/TestPrecondition.java

     * limitations under the License.
     */
    package org.gradle.test.precondition;
    
    /**
     * Usage:
     * <pre>
     * <code>@</code>Requires(TestPrecondition.JDK17_OR_LATER)
     * def "test with environment expectations"() {
     *     // the test is executed with Java 17 or later
     * }
     * </pre>
     *
     * @see Requires
     */
    public interface TestPrecondition {
    
        /**
         * Returns true if the precondition is satisfied.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. src/structs/hostlayout.go

    // license that can be found in the LICENSE file.
    
    package structs
    
    // HostLayout marks a struct as using host memory layout. A struct with a
    // field of type HostLayout will be laid out in memory according to host
    // expectations, generally following the host's C ABI.
    //
    // HostLayout does not affect layout within any other struct-typed fields
    // of the containing struct, nor does it affect layout of structs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 21:19:39 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. pkg/controller/job/job_controller.go

    	}
    
    	// Check the expectations of the job before counting active pods, otherwise a new pod can sneak in
    	// and update the expectations after we've retrieved active pods from the store. If a new pod enters
    	// the store after we've checked the expectation, the job sync is just deferred till the next relist.
    	satisfiedExpectations := jm.expectations.SatisfiedExpectations(logger, key)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/gateway/conversion_test.go

    	validator := crdvalidation.NewIstioValidator(t)
    	type res struct {
    		name, namespace string
    		allowed         bool
    	}
    	cases := []struct {
    		name         string
    		config       string
    		expectations []res
    	}{
    		{
    			name: "simple",
    			config: `apiVersion: gateway.networking.k8s.io/v1beta1
    kind: ReferenceGrant
    metadata:
      name: allow-gateways-to-ref-secrets
      namespace: default
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 34.9K bytes
    - Viewed (0)
  10. src/internal/syscall/unix/kernel_version_solaris_test.go

    	gotAccept4 := unix.SupportAccept4()
    	if wantAccept4 != gotAccept4 {
    		t.Fatalf("SupportAccept4, got %t; want %t", gotAccept4, wantAccept4)
    	}
    
    	// Test that the version returned by KernelVersion matches expectations.
    	major, minor := unix.KernelVersion()
    	t.Logf("Kernel version: %d.%d", major, minor)
    	if runtime.GOOS == "illumos" {
    		if gotSock && gotAccept4 && (major < 5 || (major == 5 && minor < 11)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:17:25 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top