Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 89 for expectedIds (0.19 sec)

  1. staging/src/k8s.io/api/testdata/HEAD/policy.v1.PodDisruptionBudget.yaml

        observedGeneration: 3
        reason: reasonValue
        status: statusValue
        type: typeValue
      currentHealthy: 4
      desiredHealthy: 5
      disruptedPods:
        disruptedPodsKey: null
      disruptionsAllowed: 3
      expectedPods: 6
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 10 22:32:27 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/policy.v1.PodDisruptionBudget.json

      },
      "status": {
        "observedGeneration": 1,
        "disruptedPods": {
          "disruptedPodsKey": null
        },
        "disruptionsAllowed": 3,
        "currentHealthy": 4,
        "desiredHealthy": 5,
        "expectedPods": 6,
        "conditions": [
          {
            "type": "typeValue",
            "status": "statusValue",
            "observedGeneration": 3,
            "lastTransitionTime": "2004-01-01T01:01:01Z",
            "reason": "reasonValue",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/conversion_test.go

    		t.Fatalf("service IP incorrect => %q, want %q", ips[0], ip)
    	}
    
    	actualIPs := service.ClusterVIPs.GetAddressesFor(clusterID)
    	expectedIPs := []string{ip}
    	if !reflect.DeepEqual(actualIPs, expectedIPs) {
    		t.Fatalf("service IPs incorrect => %q, want %q", actualIPs, expectedIPs)
    	}
    
    	if !reflect.DeepEqual(service.Attributes.LabelSelectors, localSvc.Spec.Selector) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  4. pkg/apis/policy/validation/validation.go

    	allErrs = append(allErrs, apivalidation.ValidateNonnegativeField(int64(status.DesiredHealthy), fldPath.Child("desiredHealthy"))...)
    	allErrs = append(allErrs, apivalidation.ValidateNonnegativeField(int64(status.ExpectedPods), fldPath.Child("expectedPods"))...)
    	return allErrs
    }
    
    const sysctlPatternSegmentFmt string = "([a-z0-9][-_a-z0-9]*)?[a-z0-9*]"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 20:44:13 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/network_test.go

    		setGws(c.NetworkGateways())
    		notifyCh <- struct{}{}
    	})
    	expectGateways := func(t *testing.T, expectedGws int) {
    		// wait for a notification
    		assert.ChannelHasItem(t, notifyCh)
    		if n := len(getGws()); n != expectedGws {
    			t.Errorf("expected %d gateways but got %d", expectedGws, n)
    		}
    	}
    
    	t.Run("add meshnetworks", func(t *testing.T) {
    		addMeshNetworksFromRegistryGateway(t, c, meshNetworks)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/configuration/ExecuteUserLifecycleListenerBuildOperationIntegrationTest.groovy

        }
    
        private static void verifyExpectedOps(List<BuildOperationRecord> ops, List<ExpectedOperation> expectedOps) {
            assert ops.size() == expectedOps.size()
            // no guarantees about listener execution order
            assert ops.find { op ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  7. pkg/controlplane/reconcilers/lease.go

    		}
    	}
    
    	ipsCorrect = true
    	if len(sub.Addresses) != len(expectedIPs) {
    		ipsCorrect = false
    	} else {
    		// check the actual content of the addresses
    		// present addrs is used as a set (the keys) and to indicate if a
    		// value was already found (the values)
    		presentAddrs := make(map[string]bool, len(expectedIPs))
    		for _, ip := range expectedIPs {
    			presentAddrs[ip] = false
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 09:23:05 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/volumebinding/assume_cache_test.go

    )
    
    func verifyListPVs(t *testing.T, cache *PVAssumeCache, expectedPVs map[string]*v1.PersistentVolume, storageClassName string) {
    	pvList := cache.ListPVs(storageClassName)
    	if len(pvList) != len(expectedPVs) {
    		t.Errorf("ListPVs() returned %v PVs, expected %v", len(pvList), len(expectedPVs))
    	}
    	for _, pv := range pvList {
    		expectedPV, ok := expectedPVs[pv.Name]
    		if !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/filters/audit_test.go

    					t.Errorf("Unexpected AuditID in audit event, AuditID should be the same with Audit-ID http header")
    				}
    				if expectedID == types.UID("") {
    					expectedID = event.AuditID
    				} else if expectedID != event.AuditID {
    					t.Errorf("Audits for one request should share the same AuditID, %s differs from %s", expectedID, event.AuditID)
    				}
    				if event.ObjectRef.APIVersion != "v1" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 16:16:51 UTC 2023
    - 22.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/policy/v1/types.go

    	DesiredHealthy int32 `json:"desiredHealthy" protobuf:"varint,5,opt,name=desiredHealthy"`
    
    	// total number of pods counted by this disruption budget
    	ExpectedPods int32 `json:"expectedPods" protobuf:"varint,6,opt,name=expectedPods"`
    
    	// Conditions contain conditions for PDB. The disruption controller sets the
    	// DisruptionAllowed condition. The following are known values for the reason field
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top