Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 188 for reason2 (0.17 sec)

  1. pkg/scheduler/framework/plugins/volumebinding/binder_test.go

    	return res
    }
    
    // reasonNames pretty-prints a list of reasons with variable names in
    // case of a test failure because that is easier to read than the full
    // strings.
    func reasonNames(reasons ConflictReasons) string {
    	var varNames []string
    	for _, reason := range reasons {
    		switch reason {
    		case ErrReasonBindConflict:
    			varNames = append(varNames, "ErrReasonBindConflict")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  2. pilot/pkg/model/push_context.go

    type ReasonStats map[TriggerReason]int
    
    func NewReasonStats(reasons ...TriggerReason) ReasonStats {
    	ret := make(ReasonStats)
    	for _, reason := range reasons {
    		ret.Add(reason)
    	}
    	return ret
    }
    
    func (r ReasonStats) Add(reason TriggerReason) {
    	r[reason]++
    }
    
    func (r ReasonStats) Merge(other ReasonStats) {
    	for reason, count := range other {
    		r[reason] += count
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  3. gradle/verification-metadata.xml

                <sha256 value="46a9b4a311820b2c1841110affa286d65665ac9f8970fd9e9eb903c3d7aa436e" origin="Verified" reason="Artifact is not signed"/>
             </artifact>
             <artifact name="android-studio-2023.3.1.18.mac.zip">
                <sha256 value="b0b5a2cec33e331c30727a06356c2724e7d9a8f5e78dc76cdb62eb6f2442c569" origin="Verified" reason="Artifact is not signed"/>
             </artifact>
             <artifact name="android-studio-2023.3.1.18.mac_arm.zip">
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
  4. pkg/kubelet/status/status_manager_test.go

    						Status: v1.ConditionFalse,
    						Reason: "PodFailed",
    					},
    					{
    						Type:   v1.ContainersReady,
    						Status: v1.ConditionFalse,
    						Reason: "PodFailed",
    					},
    					{
    						Type:   v1.PodScheduled,
    						Status: v1.ConditionTrue,
    					},
    					{
    						Type:   v1.DisruptionTarget,
    						Status: v1.ConditionTrue,
    						Reason: "TerminationByKubelet",
    					},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/conversion.go

    		}
    		if allUsable {
    			reason = string(k8s.GatewayReasonAddressNotAssigned)
    		} else {
    			reason = string(k8s.GatewayReasonAddressNotUsable)
    		}
    		gatewayConditions[string(k8s.GatewayConditionProgrammed)].error = &ConfigError{
    			// TODO: this only checks Service ready, we should also check Deployment ready?
    			Reason:  reason,
    			Message: msg,
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.Pod.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: Thu Apr 18 08:52:25 UTC 2024
    - 52K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/HEAD/core.v1.Pod.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
    - 52.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.Pod.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: Fri Dec 15 04:12:07 UTC 2023
    - 50.7K bytes
    - Viewed (0)
  9. pkg/controller/podautoscaler/horizontal.go

    func (a *HorizontalController) getUnableComputeReplicaCountCondition(hpa runtime.Object, reason string, err error) (condition autoscalingv2.HorizontalPodAutoscalerCondition) {
    	a.eventRecorder.Event(hpa, v1.EventTypeWarning, reason, err.Error())
    	return autoscalingv2.HorizontalPodAutoscalerCondition{
    		Type:    autoscalingv2.ScalingActive,
    		Status:  v1.ConditionFalse,
    		Reason:  reason,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/kuberuntime_container.go

    		// started the container. Set the StartedAt time.
    		cStatus.StartedAt = time.Unix(0, status.StartedAt)
    	}
    	if status.State == runtimeapi.ContainerState_CONTAINER_EXITED {
    		cStatus.Reason = status.Reason
    		cStatus.Message = status.Message
    		cStatus.ExitCode = int(status.ExitCode)
    		cStatus.FinishedAt = time.Unix(0, status.FinishedAt)
    	}
    	return cStatus
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
Back to top