Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of about 10,000 for condition1 (0.38 sec)

  1. pkg/registry/core/pod/storage/storage_test.go

    				{
    					ConditionType: api.PodConditionType(condition1),
    				},
    				{
    					ConditionType: api.PodConditionType(condition2),
    				},
    			},
    		},
    		Status: api.PodStatus{
    			Conditions: []api.PodCondition{
    				{
    					Type:   api.PodConditionType(condition1),
    					Status: api.ConditionFalse,
    				},
    				{
    					Type:   api.PodConditionType(condition2),
    					Status: api.ConditionTrue,
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 07:18:44 UTC 2024
    - 38.8K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. pkg/apis/core/validation/validation_test.go

    		desc          string
    		podConditions []core.PodCondition
    	}{{
    		"no condition",
    		[]core.PodCondition{},
    	}, {
    		"one system condition",
    		[]core.PodCondition{{
    			Type:   core.PodReady,
    			Status: core.ConditionTrue,
    		}},
    	}, {
    		"one system condition and one custom condition",
    		[]core.PodCondition{{
    			Type:   core.PodReady,
    			Status: core.ConditionTrue,
    		}, {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K 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