Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,236 for CONDITION (0.34 sec)

  1. tests/integration/pilot/analysis/analysis_test.go

    	}
    	found := false
    	for _, condition := range status.Conditions {
    		if condition.Type == "Reconciled" {
    			found = true
    			if condition.Status != "True" {
    				return fmt.Errorf("expected Reconciled to be true but was %v", condition.Status)
    			}
    		}
    	}
    	if !found {
    		return fmt.Errorf("expected Reconciled condition to exist, but got %v", status.Conditions)
    	}
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/ConcurrentTestUtil.groovy

                    startThread = Thread.currentThread()
                    condition.signalAll()
                }
    
                action.run()
    
                withLock {
                    started = true
                    condition.signalAll()
                }
            }
    
            withLock {
                while (startThread == null) {
                    condition.await()
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  3. pkg/volume/util/resize_util.go

    	for _, condition := range resizeConditions {
    		resizeConditionMap[condition.Type] = &resizeProcessStatus{condition, false}
    	}
    
    	oldConditions := pvc.Status.Conditions
    	newConditions := []v1.PersistentVolumeClaimCondition{}
    	for _, condition := range oldConditions {
    		// If Condition is of not resize type, we keep it.
    		if _, ok := knownResizeConditions[condition.Type]; !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 19:30:35 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  4. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/concurrent/TestManagedExecutor.groovy

    import java.util.concurrent.TimeUnit
    import java.util.concurrent.locks.Condition
    import java.util.concurrent.locks.Lock
    import java.util.concurrent.locks.ReentrantLock
    
    class TestManagedExecutor extends AbstractExecutorService implements ManagedExecutor {
        private final Lock lock = new ReentrantLock()
        private final Condition condition = lock.newCondition()
        private int count
        private final TestExecutor executor;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  5. cmd/policy_test.go

    				policy.NewResourceSet(policy.NewResource("mybucket")),
    				condition.NewFunctions(),
    			),
    			policy.NewBPStatement("",
    				policy.Allow,
    				policy.NewPrincipal("*"),
    				policy.NewActionSet(policy.PutObjectAction),
    				policy.NewResourceSet(policy.NewResource("mybucket/myobject*")),
    				condition.NewFunctions(),
    			),
    		},
    	}
    
    	anonGetBucketLocationArgs := policy.BucketPolicyArgs{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/certificates/v1/generated.proto

      // and the certificate issued by the signer, or the failure condition indicating signer failure.
      // +optional
      optional CertificateSigningRequestStatus status = 3;
    }
    
    // CertificateSigningRequestCondition describes a condition of a CertificateSigningRequest object
    message CertificateSigningRequestCondition {
      // type of the condition. Known conditions are "Approved", "Denied", and "Failed".
      //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  7. cmd/postpolicyform.go

    		}
    		// If the current policy condition is known
    		if startsWithSupported, condFound := startsWithConds[policy.Key]; condFound {
    			// Check if the current condition supports starts-with operator
    			if op == policyCondStartsWith && !startsWithSupported {
    				return fmt.Errorf("Invalid according to Policy: Policy Condition failed")
    			}
    			// Check if current policy condition is satisfied
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 06 10:52:41 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonStateCoordinator.java

        private static final Logger LOGGER = Logging.getLogger(DaemonStateCoordinator.class);
    
        private final Lock lock = new ReentrantLock();
        private final Condition condition = lock.newCondition();
        private final long cancelTimeoutMs;
    
        private State state = State.Idle;
        private final Timer idleTimer;
        private String currentCommandExecution;
        private Object result;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/CUError.h

     *  These are used to set the action desired when an error
     *  condition is detected in the CUnit framework.
     *  @see CU_set_error_action()
     *  @see CU_get_error_action()
     */
    typedef enum CU_ErrorAction {
      CUEA_IGNORE,    /**< Runs should be continued when an error condition occurs (if possible). */
      CUEA_FAIL,      /**< Runs should be stopped when an error condition occurs. */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/functional_control_flow_to_cfg.cc

      // Unconditionally branch from the original block to the block containing the
      // condition.
      builder.setInsertionPointToEnd(orig_block_head);
      JumpToBlock(loc, get_operand, cond_block, &builder);
    
      // Call condition function in the condition block and then branch to the body
      // block or remainder of the original block depending on condition function
      // result.
      builder.setInsertionPointToEnd(cond_block);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 13 11:42:59 UTC 2023
    - 12.2K bytes
    - Viewed (0)
Back to top