Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of about 10,000 for condition3 (0.49 sec)

  1. pkg/printers/internalversion/printers_test.go

    		if !reflect.DeepEqual(test.expect, rows) {
    			t.Errorf("%d mismatch: %s", i, cmp.Diff(test.expect, rows))
    		}
    	}
    }
    
    func TestPrintPodwide(t *testing.T) {
    	condition1 := "condition1"
    	condition2 := "condition2"
    	condition3 := "condition3"
    	tests := []struct {
    		pod    api.Pod
    		expect []metav1.TableRow
    	}{
    		{
    			// Test when the NodeName and PodIP are not none
    			api.Pod{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/conditions.go

    		cond := conditions[k]
    		setter := kstatus.UpdateConditionIfChanged
    		if cond.setOnce != "" {
    			setter = func(conditions []metav1.Condition, condition metav1.Condition) []metav1.Condition {
    				return kstatus.CreateCondition(conditions, condition, cond.setOnce)
    			}
    		}
    		// A condition can be "negative polarity" (ex: ListenerInvalid) or "positive polarity" (ex:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 13:05:41 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  3. releasenotes/notes/securitycontext-condition.yaml

    Nicole LiHui <******@****.***> 1717379705 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 197 bytes
    - Viewed (0)
  4. docs/de/docs/how-to/conditional-openapi.md

    Nils Lindemann <******@****.***> 1711822693 +0100
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:18:13 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. 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)
  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. 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)
  8. 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)
  9. staging/src/k8s.io/api/apiserverinternal/v1alpha1/types.go

    	// The latest available observations of the storageVersion's state.
    	// +optional
    	// +listType=map
    	// +listMapKey=type
    	Conditions []StorageVersionCondition `json:"conditions,omitempty" protobuf:"bytes,3,opt,name=conditions"`
    }
    
    // An API server instance reports the version it can decode and the version it
    // encodes objects to when persisting objects in the backend.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:37 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. pkg/apis/storagemigration/types.go

    type MigrationCondition struct {
    	// Type of the condition.
    	Type MigrationConditionType
    	// Status of the condition, one of True, False, Unknown.
    	Status corev1.ConditionStatus
    	// The last time this condition was updated.
    	// +optional
    	LastUpdateTime metav1.Time
    	// The reason for the condition's last transition.
    	// +optional
    	Reason string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top