Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 123 for reasons (0.2 sec)

  1. pkg/controller/job/job_controller.go

    	if condition := findConditionByType(list, cType); condition != nil {
    		if condition.Status != status || condition.Reason != reason || condition.Message != message {
    			*condition = *newCondition(cType, status, reason, message, now)
    			return list, true
    		}
    		return list, false
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	container *v1.Container
    	// The name of the container.
    	name string
    	// The message indicates why the container will be killed.
    	message string
    	// The reason is a clearer source of info on why a container will be killed
    	// TODO: replace message with reason?
    	reason containerKillReason
    }
    
    // containerResources holds the set of resources applicable to the running container
    type containerResources struct {
    	memoryLimit   int64
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    			}
    			if rule.Reason != nil && !supportedValidationReason.Has(string(*rule.Reason)) {
    				allErrs.SchemaErrors = append(allErrs.SchemaErrors, field.NotSupported(fldPath.Child("x-kubernetes-validations").Index(i).Child("reason"), *rule.Reason, supportedValidationReason.List()))
    			}
    			trimmedFieldPath := strings.TrimSpace(rule.FieldPath)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/PropertySpec.groovy

            1 * host.beforeRead(null) >> "<reason>"
    
            and:
            def e = thrown(IllegalStateException)
            e.message == "Cannot query the value of this property because <reason>."
    
            when:
            property.attachOwner(owner(), displayName("<display-name>"))
            property.get()
    
            then:
            1 * host.beforeRead(null) >> "<reason>"
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 87.8K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/serviceregistry_test.go

    		if ev := fx.WaitOrFail(t, "xds full"); !ev.Reason.Has(model.EndpointUpdate) {
    			t.Fatalf("xds push reason does not contain %v: %v", model.EndpointUpdate, ev)
    		}
    		// headless service update must trigger nds push, so we trigger a full push.
    		if ev := fx.WaitOrFail(t, "xds full"); !ev.Reason.Has(model.HeadlessEndpointUpdate) {
    			t.Fatalf("xds push reason does not contain %v: %v", model.HeadlessEndpointUpdate, ev)
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  6. pkg/kubelet/server/server_test.go

    	authenticateFunc func(*http.Request) (*authenticator.Response, bool, error)
    	attributesFunc   func(user.Info, *http.Request) authorizer.Attributes
    	authorizeFunc    func(authorizer.Attributes) (authorized authorizer.Decision, reason string, err error)
    }
    
    func (f *fakeAuth) AuthenticateRequest(req *http.Request) (*authenticator.Response, bool, error) {
    	return f.authenticateFunc(req)
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  7. pilot/pkg/model/push_context_test.go

    	reqA := &PushRequest{Reason: make(ReasonStats)}
    	reqB := &PushRequest{Reason: NewReasonStats(ServiceUpdate, ProxyUpdate)}
    	for i := 0; i < 50; i++ {
    		go func() {
    			reqA.CopyMerge(reqB)
    		}()
    	}
    	if reqA.Reason.Count() != 0 {
    		t.Fatalf("reqA modified: %v", reqA.Reason)
    	}
    	if reqB.Reason.Count() != 2 {
    		t.Fatalf("reqB modified: %v", reqB.Reason)
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  8. pkg/kubelet/nodestatus/setters_test.go

    			Status:             v1.ConditionTrue,
    			Reason:             "KubeletReady",
    			Message:            message,
    			LastTransitionTime: metav1.NewTime(transition),
    			LastHeartbeatTime:  metav1.NewTime(heartbeat),
    		}
    	}
    	return &v1.NodeCondition{
    		Type:               v1.NodeReady,
    		Status:             v1.ConditionFalse,
    		Reason:             "KubeletNotReady",
    		Message:            message,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top