Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of about 10,000 for condition3 (0.21 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. staging/src/k8s.io/apimachinery/pkg/api/meta/conditions.go

    		}
    	}
    
    	removed = len(*conditions) != len(newConditions)
    	*conditions = newConditions
    
    	return removed
    }
    
    // FindStatusCondition finds the conditionType in conditions.
    func FindStatusCondition(conditions []metav1.Condition, conditionType string) *metav1.Condition {
    	for i := range conditions {
    		if conditions[i].Type == conditionType {
    			return &conditions[i]
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 22 01:13:33 UTC 2023
    - 4.2K 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/en/docs/how-to/conditional-openapi.md

    # Conditional OpenAPI
    
    If you needed to, you could use settings and environment variables to configure OpenAPI conditionally depending on the environment, and even disable it entirely.
    
    ## About security, APIs, and docs
    
    Hiding your documentation user interfaces in production *shouldn't* be the way to protect your API.
    
    That doesn't add any extra security to your API, the *path operations* will still be available where they are.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Aug 19 19:54:04 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top