Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 182 for Gleason (0.23 sec)

  1. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // is no information available. A Reason clarifies an HTTP status
      // code but does not override it.
      // +optional
      optional string reason = 4;
    
      // Extended data associated with the reason.  Each reason may define its
      // own extended details. This field is optional and the data returned
      // is not guaranteed to conform to any schema except that defined by
      // the reason type.
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  2. src/cmd/go/go_test.go

    		tg.t.Errorf("wrong reason for Stale=true: %q, want %q", why, reason)
    	}
    }
    
    // wantNotStale fails with msg if pkg is stale.
    func (tg *testgoData) wantNotStale(pkg, reason, msg string) {
    	tg.t.Helper()
    	stale, why := tg.isStale(pkg)
    	if stale {
    		tg.t.Fatal(msg)
    	}
    	if reason == "" && why != "" || !strings.Contains(why, reason) {
    		tg.t.Errorf("wrong reason for Stale=false: %q, want %q", why, reason)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modget/get.go

    		// the module level, but 'go get' operates on packages.
    		// Rewrite the errors to explain them in terms of packages.
    		reason := func(m module.Version) string {
    			rv, ok := r.resolvedVersion[m.Path]
    			if !ok {
    				return fmt.Sprintf("(INTERNAL ERROR: no reason found for %v)", m)
    			}
    			return rv.reason.ResolvedString(module.Version{Path: m.Path, Version: rv.version})
    		}
    		for _, c := range constraint.Conflicts {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollectionSpec.groovy

            when:
            collection.files
    
            then:
            def e = thrown(IllegalStateException)
            e.message == "Cannot query the value of <display> because <reason>."
    
            and:
            1 * host.beforeRead(null) >> "<reason>"
            0 * _
    
            when:
            def result = collection.files
    
            then:
            result == [file] as Set
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 53K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.30.0/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: Thu Apr 18 08:52:25 UTC 2024
    - 58.2K bytes
    - Viewed (0)
  6. pkg/apis/autoscaling/v2/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_v2_HorizontalPodAutoscalerCondition_To_autoscaling_HorizontalPodAutoscalerCondition is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 09 02:34:54 UTC 2021
    - 58.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.29.0/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: Fri Dec 15 04:12:07 UTC 2023
    - 57.4K bytes
    - Viewed (0)
  8. pkg/kubelet/eviction/helpers.go

    	kubetypes "k8s.io/kubernetes/pkg/kubelet/types"
    	volumeutils "k8s.io/kubernetes/pkg/volume/util"
    )
    
    const (
    	unsupportedEvictionSignal = "unsupported eviction signal %v"
    	// Reason is the reason reported back in status.
    	Reason = "Evicted"
    	// nodeLowMessageFmt is the message for evictions due to resource pressure.
    	nodeLowMessageFmt = "The node was low on resource: %v. "
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  9. src/runtime/mgcscavenge.go

    	//
    	// The output of this controller is somewhat indirect to what we actually
    	// want to achieve: how much time to sleep for. The reason for this definition
    	// is to ensure that the controller's outputs have a direct relationship with
    	// its inputs (as opposed to an inverse relationship), making it somewhat
    	// easier to reason about for tuning purposes.
    	s.sleepController = piController{
    		// Tuned loosely via Ziegler-Nichols process.
    		kp: 0.3375,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.30.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: Thu Apr 18 08:52:25 UTC 2024
    - 58.2K bytes
    - Viewed (0)
Back to top