Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Fulfilled (0.25 sec)

  1. testing/architecture-test/src/test/java/org/gradle/architecture/test/ArchUnitFixture.java

                    .filter(it -> !types.test(it))
                    .map(JavaClass::getName)
                    .collect(ImmutableSet.toImmutableSet());
                boolean fulfilled = matchedClasses.isEmpty();
                String message = fulfilled
                    ? String.format("%s has only arguments/return type that are %s in %s",
                    method.getDescription(),
                    types.getDescription(),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  2. pkg/registry/core/pod/storage/eviction_test.go

    			}},
    			eviction:            &policy.Eviction{ObjectMeta: metav1.ObjectMeta{Name: "t4", Namespace: "default"}, DeleteOptions: metav1.NewDeleteOptions(0)},
    			expectError:         `Operation cannot be fulfilled on tests "2": message: Conflict`,
    			podPhase:            api.PodPending,
    			podName:             "t4",
    			expectedDeleteCount: EvictionsRetry.Steps,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 09:26:37 UTC 2024
    - 40K bytes
    - Viewed (0)
  3. pkg/controller/job/job_controller.go

    			pods[i] = p.DeepCopy()
    			pods[i].Finalizers = append(p.Finalizers, batch.JobTrackingFinalizer)
    		}
    	}
    	return pods, err
    }
    
    // syncJob will sync the job with the given key if it has had its expectations fulfilled, meaning
    // it did not expect to see any more of its pods created or deleted. This function is not meant to be invoked
    // concurrently with the same 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)
  4. pkg/controller/job/job_controller_test.go

    		controller.NewControllerExpectations(), true, func() {
    			// If we check active pods before checking expectations, the job
    			// will create a new replica because it doesn't see this pod, but
    			// has fulfilled its expectations.
    			podIndexer.Add(pods[1])
    		},
    	}
    	manager.syncJob(context.TODO(), testutil.GetKey(job, t))
    	if len(fakePodControl.Templates) != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
Back to top