Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 182 for Gleason (0.28 sec)

  1. pkg/apis/autoscaling/v2beta2/zz_generated.conversion.go

    	out.Type = autoscaling.HorizontalPodAutoscalerConditionType(in.Type)
    	out.Status = autoscaling.ConditionStatus(in.Status)
    	out.LastTransitionTime = in.LastTransitionTime
    	out.Reason = in.Reason
    	out.Message = in.Message
    	return nil
    }
    
    // Convert_v2beta2_HorizontalPodAutoscalerCondition_To_autoscaling_HorizontalPodAutoscalerCondition is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 60.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.StatefulSet.json

                  "type": "typeValue",
                  "status": "statusValue",
                  "lastProbeTime": "2003-01-01T01:01:01Z",
                  "lastTransitionTime": "2004-01-01T01:01:01Z",
                  "reason": "reasonValue",
                  "message": "messageValue"
                }
              ],
              "allocatedResources": {
                "allocatedResourcesKey": "0"
              },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 58.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.29.0/apps.v1beta2.StatefulSet.json

                  "type": "typeValue",
                  "status": "statusValue",
                  "lastProbeTime": "2003-01-01T01:01:01Z",
                  "lastTransitionTime": "2004-01-01T01:01:01Z",
                  "reason": "reasonValue",
                  "message": "messageValue"
                }
              ],
              "allocatedResources": {
                "allocatedResourcesKey": "0"
              },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 57.4K bytes
    - Viewed (0)
  4. pkg/controller/volume/persistentvolume/pv_controller.go

    // 'branchy'. However, a large amount of business knowledge and context is
    // recorded here in order to ensure that future maintainers can correctly
    // reason through the complexities of the binding behavior. For that reason,
    // changes to this file should preserve and add to the space shuttle style.
    //
    // ==================================================================
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/HEAD/apps.v1.StatefulSet.json

                  "type": "typeValue",
                  "status": "statusValue",
                  "lastProbeTime": "2003-01-01T01:01:01Z",
                  "lastTransitionTime": "2004-01-01T01:01:01Z",
                  "reason": "reasonValue",
                  "message": "messageValue"
                }
              ],
              "allocatedResources": {
                "allocatedResourcesKey": "0"
              },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 58.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.StatefulSet.json

                  "type": "typeValue",
                  "status": "statusValue",
                  "lastProbeTime": "2003-01-01T01:01:01Z",
                  "lastTransitionTime": "2004-01-01T01:01:01Z",
                  "reason": "reasonValue",
                  "message": "messageValue"
                }
              ],
              "allocatedResources": {
                "allocatedResourcesKey": "0"
              },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 58.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.29.0/apps.v1.StatefulSet.json

                  "type": "typeValue",
                  "status": "statusValue",
                  "lastProbeTime": "2003-01-01T01:01:01Z",
                  "lastTransitionTime": "2004-01-01T01:01:01Z",
                  "reason": "reasonValue",
                  "message": "messageValue"
                }
              ],
              "allocatedResources": {
                "allocatedResourcesKey": "0"
              },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 57.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1beta2.StatefulSet.json

                  "type": "typeValue",
                  "status": "statusValue",
                  "lastProbeTime": "2003-01-01T01:01:01Z",
                  "lastTransitionTime": "2004-01-01T01:01:01Z",
                  "reason": "reasonValue",
                  "message": "messageValue"
                }
              ],
              "allocatedResources": {
                "allocatedResourcesKey": "0"
              },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 58.2K bytes
    - Viewed (0)
  9. pkg/apis/admissionregistration/validation/validation.go

    		allErrors = append(allErrors, field.Required(fldPath.Child("message"), "message must be specified if expression contains line breaks"))
    	}
    	if v.Reason != nil && !supportedValidationPolicyReason.Has(string(*v.Reason)) {
    		allErrors = append(allErrors, field.NotSupported(fldPath.Child("reason"), *v.Reason, supportedValidationPolicyReason.List()))
    	}
    	return allErrors
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            def conf = conf()
    
            then:
            conf.syntheticDependencies.size() == 1
            conf.syntheticDependencies.each { DependencyMetadata dep ->
                assert dep.reason == reason
            }
    
            where:
            reason                                                          | strict
            "dependency was locked to version '1.1'"                        | true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
Back to top