Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of about 10,000 for condition3 (0.19 sec)

  1. docs/ja/docs/how-to/conditional-openapi.md

    Sebastián Ramírez <******@****.***> 1692474844 +0200
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Aug 19 19:54:04 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. docs/em/docs/how-to/conditional-openapi.md

    Sebastián Ramírez <******@****.***> 1692474844 +0200
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Aug 19 19:54:04 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. subprojects/core/src/testFixtures/groovy/org/gradle/api/tasks/AbstractTaskTest.groovy

            given:
            final MutableBoolean condition1 = new MutableBoolean(true)
            final MutableBoolean condition2 = new MutableBoolean(true)
    
            def task = getTask()
            task.onlyIf(new Spec<Task>() {
                boolean isSatisfiedBy(Task element) {
                    return condition1.get()
                }
            })
    
            task.onlyIf("Condition 2 was not met", new Spec<Task>() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  4. cmd/postpolicyform.go

    			}
    		}
    	}
    
    	// Flag to indicate if all policies conditions are satisfied
    	var condPassed bool
    
    	// Iterate over policy conditions and check them against received form fields
    	for _, policy := range postPolicyForm.Conditions.Policies {
    		// Form fields names are in canonical format, convert conditions names
    		// to canonical for simplification purpose, so `$key` will become `Key`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 06 10:52:41 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  5. subprojects/core/src/testFixtures/groovy/org/gradle/api/tasks/AbstractSpockTaskTest.groovy

            final MutableBoolean condition1 = new MutableBoolean(true)
            final MutableBoolean condition2 = new MutableBoolean(true)
    
            DefaultTask task = getTask()
            task.onlyIf {
                condition1.get()
            }
            task.onlyIf {
                condition2.get()
            }
    
            expect:
            task.getOnlyIf().isSatisfiedBy(task)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 23 14:27:55 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  6. 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)
  7. android/guava/src/com/google/common/graph/EndpointPair.java

          // boolean condition1 = nodeU().equals(other.nodeU()) && nodeV().equals(other.nodeV());
          // boolean condition2 = nodeU().equals(other.nodeV()) && nodeV().equals(other.nodeU());
          // return condition1 || condition2;
          if (nodeU().equals(other.nodeU())) { // check condition1
            // Here's the tricky bit. We don't have to explicitly check for condition2 in this case.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 01 17:18:04 UTC 2021
    - 8.1K bytes
    - Viewed (0)
  8. guava/src/com/google/common/graph/EndpointPair.java

          // boolean condition1 = nodeU().equals(other.nodeU()) && nodeV().equals(other.nodeV());
          // boolean condition2 = nodeU().equals(other.nodeV()) && nodeV().equals(other.nodeU());
          // return condition1 || condition2;
          if (nodeU().equals(other.nodeU())) { // check condition1
            // Here's the tricky bit. We don't have to explicitly check for condition2 in this case.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 01 17:18:04 UTC 2021
    - 8.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/storagemigration/v1alpha1/generated.proto

    message MigrationCondition {
      // Type of the condition.
      optional string type = 1;
    
      // Status of the condition, one of True, False, Unknown.
      optional string status = 2;
    
      // The last time this condition was updated.
      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastUpdateTime = 3;
    
      // The reason for the condition's last transition.
      // +optional
      optional string reason = 4;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/storagemigration/v1alpha1/types_swagger_doc_generated.go

    	"":               "Describes the state of a migration at a certain point.",
    	"type":           "Type of the condition.",
    	"status":         "Status of the condition, one of True, False, Unknown.",
    	"lastUpdateTime": "The last time this condition was updated.",
    	"reason":         "The reason for the condition's last transition.",
    	"message":        "A human readable message indicating details about the transition.",
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top