Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,236 for CONDITION (0.12 sec)

  1. pilot/pkg/model/status/helper_test.go

    					},
    					{
    						Type:    "Reconciled",
    						Status:  "False",
    						Message: "1/2 proxies up to date.",
    					},
    				},
    				condition: &v1alpha1.IstioCondition{
    					Type:    "SomeRandomType",
    					Status:  "True",
    					Message: "just a new condition",
    				},
    			},
    			want: []*v1alpha1.IstioCondition{
    				{
    					Type:    "PassedValidation",
    					Status:  "True",
    					Message: "just a test, here",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 21 15:06:10 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/wait/wait_test.go

    		name                         string
    		condition                    func(int) ConditionWithContextFunc
    		context                      func() (context.Context, context.CancelFunc)
    		cancelContextAfterNthAttempt int
    		errExpected                  error
    		attemptsExpected             int
    	}{
    		{
    			name: "condition throws error on immediate attempt, no retry is attempted",
    			condition: func(int) ConditionWithContextFunc {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  3. pkg/kubelet/status/generate.go

    func generateContainersReadyConditionForTerminalPhase(podPhase v1.PodPhase) v1.PodCondition {
    	condition := v1.PodCondition{
    		Type:   v1.ContainersReady,
    		Status: v1.ConditionFalse,
    	}
    
    	if podPhase == v1.PodFailed {
    		condition.Reason = PodFailed
    	} else if podPhase == v1.PodSucceeded {
    		condition.Reason = PodCompleted
    	}
    
    	return condition
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 15:18:11 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/wait/loop.go

    // loopConditionUntilContext executes the provided condition at intervals defined by
    // the provided timer until the provided context is cancelled, the condition returns
    // true, or the condition returns an error. If sliding is true, the period is computed
    // after condition runs. If it is false then period includes the runtime for condition.
    // If immediate is false the first delay happens before any call to condition, if
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 19 02:47:00 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  5. pkg/apis/apiserverinternal/types.go

    	ConditionTrue ConditionStatus = "True"
    	// ConditionFalse indicates condition as "False"
    	ConditionFalse ConditionStatus = "False"
    	// ConditionUnknown indicates condition as "Unknown"
    	ConditionUnknown ConditionStatus = "Unknown"
    )
    
    // StorageVersionCondition Describes the state of the storageVersion at a certain point.
    type StorageVersionCondition struct {
    	// Type of the condition.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:37 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/dispatch/AsyncDispatch.java

        private enum State {
            Init, Stopped
        }
    
        private static final int MAX_QUEUE_SIZE = 200;
        private final Lock lock = new ReentrantLock();
        private final Condition condition = lock.newCondition();
        private final LinkedList<T> queue = new LinkedList<T>();
        private final Executor executor;
        private final int maxQueueSize;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  7. dbflute_fess/dfprop/conditionBeanMap.dfprop

    # conditionBeanMap: (NotRequired - Default map:{})
    #
    # Specification:
    # map:{
    #     ; [property-type] = map:{
    #         ; [condition-key] = map:{ [table] = list:{ [column] ; [column] } }
    # }
    #
    # property-type: String, Number, Date, OrderBy, ...
    # condition-key: NotEqual, GreaterThan, LessThan, GreaterEqual, LessEqual
    #              , InScope, NotInScope, PrefixSearch, LikeSearch, NotLikeSearch
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Oct 31 23:35:14 UTC 2015
    - 4K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/util/concurrent/UninterruptiblesTest.java

        awaitUninterruptibly(latch);
        return thread;
      }
    
      private static class TestCondition implements Condition {
        private final Lock lock;
        private final Condition condition;
    
        private TestCondition(Lock lock, Condition condition) {
          this.lock = lock;
          this.condition = condition;
        }
    
        static TestCondition createAndSignalAfter(long delay, TimeUnit unit) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 16:06:39 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  9. pkg/controller/job/util/utils_test.go

    			wantJobFinished:   false,
    			wantConditionType: "",
    		},
    		"Job is completed and condition is true": {
    			conditions: []batch.JobCondition{
    				{
    					Type:   batch.JobComplete,
    					Status: v1.ConditionTrue,
    				},
    			},
    			wantJobFinished:   true,
    			wantConditionType: batch.JobComplete,
    		},
    		"Job is completed and condition is false": {
    			conditions: []batch.JobCondition{
    				{
    					Type:   batch.JobComplete,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 09:27:46 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/SendPartialResponseThenBlock.java

    import java.util.concurrent.TimeUnit;
    import java.util.concurrent.locks.Condition;
    import java.util.concurrent.locks.Lock;
    
    class SendPartialResponseThenBlock implements BlockingHttpServer.BlockingRequest, ResponseProducer {
        private final byte[] content;
        private final Lock lock;
        private final Duration timeout;
        private final Condition condition;
        private final WaitPrecondition precondition;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.7K bytes
    - Viewed (0)
Back to top