Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,938 for reckon (0.13 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/validator_test.go

    				}
    				if policyDecision.Reason != validateResult.Decisions[i].Reason {
    					t.Errorf("Expected policy decision reason '%v' but got '%v'", policyDecision.Reason, validateResult.Decisions[i].Reason)
    				}
    			}
    			require.Equal(t, len(tc.auditEvaluations), len(validateResult.AuditAnnotations))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/GradleDependencyMetadata.java

        }
    
        @Override
        public ModuleDependencyMetadata withReason(String reason) {
            if (Objects.equal(reason, this.reason)) {
                return this;
            }
            return new GradleDependencyMetadata(selector, excludes, constraint, endorsing, reason, force, artifacts);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 8K bytes
    - Viewed (0)
  3. internal/event/config.go

    }
    
    // Validate - checks whether queue has valid values or not.
    func (q Queue) Validate(region string, targetList *TargetList) error {
    	if q.ARN.region == "" {
    		if !targetList.Exists(q.ARN.TargetID) {
    			return &ErrARNNotFound{q.ARN}
    		}
    		return nil
    	}
    
    	if region != "" && q.ARN.region != region {
    		return &ErrUnknownRegion{q.ARN.region}
    	}
    
    	if !targetList.Exists(q.ARN.TargetID) {
    		return &ErrARNNotFound{q.ARN}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Nov 16 17:28:29 UTC 2021
    - 8.4K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/testdata/eastwest-labelport.status.yaml.golden

        - lastTransitionTime: fake
          message: No errors found
          reason: Accepted
          status: "True"
          type: Accepted
        - lastTransitionTime: fake
          message: No errors found
          reason: NoConflicts
          status: "False"
          type: Conflicted
        - lastTransitionTime: fake
          message: No errors found
          reason: Programmed
          status: "True"
          type: Programmed
        - lastTransitionTime: fake
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 10 02:30:27 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/HEAD/core.v1.PodStatusResult.json

            "status": "statusValue",
            "lastProbeTime": "2003-01-01T01:01:01Z",
            "lastTransitionTime": "2004-01-01T01:01:01Z",
            "reason": "reasonValue",
            "message": "messageValue"
          }
        ],
        "message": "messageValue",
        "reason": "reasonValue",
        "nominatedNodeName": "nominatedNodeNameValue",
        "hostIP": "hostIPValue",
        "hostIPs": [
          {
            "ip": "ipValue"
          }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  6. pkg/kubelet/reason_cache.go

    		}
    	}
    }
    
    // Remove removes error reason from the cache
    func (c *ReasonCache) Remove(uid types.UID, name string) {
    	c.lock.Lock()
    	defer c.lock.Unlock()
    	c.cache.Remove(c.composeKey(uid, name))
    }
    
    // Get gets error reason from the cache. The return values are error reason, error message and
    // whether an error reason is found in the cache. If no error reason is found, empty string will
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  7. pkg/apis/core/validation/events_test.go

    				EventTime:           someTime,
    				ReportingController: "k8s.io/my-controller",
    				ReportingInstance:   "node-xyz",
    				Action:              "Do",
    				Reason:              "Yeees",
    				Type:                "Normal",
    			},
    			valid: false,
    			msg:   "forbidden updates to reason",
    		},
    		{
    			newEvent: &core.Event{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:            "test",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 01 19:47:37 UTC 2022
    - 37.2K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/volumebinding/volume_binding_test.go

    					withLabel("topology.kubernetes.io/region", "region-a").
    					withLabel("topology.kubernetes.io/zone", "zone-a").Node,
    				makeNode("zone-a-node-b").
    					withLabel("topology.kubernetes.io/region", "region-a").
    					withLabel("topology.kubernetes.io/zone", "zone-a").Node,
    				makeNode("zone-b-node-a").
    					withLabel("topology.kubernetes.io/region", "region-b").
    					withLabel("topology.kubernetes.io/zone", "zone-b").Node,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 32K bytes
    - Viewed (0)
  9. pkg/scheduler/internal/cache/node_tree_test.go

    				"region-1:\x00:zone-2": {"node-3", "node-4"},
    				"region-1:\x00:zone-3": {"node-5"},
    				"region-2:\x00:zone-2": {"node-6"},
    			},
    		},
    		{
    			name:       "nodes also using deprecated zone/region label",
    			nodesToAdd: allNodes[9:],
    			expectedTree: map[string][]string{
    				"region-2:\x00:zone-2": {"node-9"},
    				"region-2:\x00:zone-3": {"node-10"},
    			},
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 08:00:25 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/testdata/reference-policy-tls.status.yaml.golden

        conditions:
        - lastTransitionTime: fake
          message: No errors found
          reason: Accepted
          status: "True"
          type: Accepted
        - lastTransitionTime: fake
          message: No errors found
          reason: NoConflicts
          status: "False"
          type: Conflicted
        - lastTransitionTime: fake
          message: No errors found
          reason: Programmed
          status: "True"
          type: Programmed
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top