Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 341 for statusB (0.21 sec)

  1. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    								claim = claim.DeepCopy()
    								claim.Status.ReservedFor = inUseClaim.Status.ReservedFor
    							}
    							return claim
    						},
    					},
    				},
    			},
    		},
    		"missing-claim": {
    			pod:    podWithClaimTemplate, // status not set
    			claims: []*resourcev1alpha2.ResourceClaim{allocatedClaim, otherClaim},
    			want: want{
    				preenqueue: result{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  2. pkg/kubelet/pod_workers.go

    	// ones who started it.
    	pod := options.Pod
    	if isRuntimePod {
    		status.observedRuntime = true
    		switch {
    		case status.pendingUpdate != nil && status.pendingUpdate.Pod != nil:
    			pod = status.pendingUpdate.Pod
    			options.Pod = pod
    			options.RunningPod = nil
    		case status.activeUpdate != nil && status.activeUpdate.Pod != nil:
    			pod = status.activeUpdate.Pod
    			options.Pod = pod
    			options.RunningPod = nil
    		default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  3. internal/bucket/lifecycle/lifecycle_test.go

    		},
    		{ // lifecycle config with rules having overlapping prefix
    			inputConfig:           `<LifecycleConfiguration><Rule><ID>rule1</ID><Status>Enabled</Status><Filter><Prefix>/a/b</Prefix></Filter><Expiration><Days>3</Days></Expiration></Rule><Rule><ID>rule2</ID><Status>Enabled</Status><Filter><And><Prefix>/a/b/c</Prefix><Tag><Key>key1</Key><Value>val1</Value></Tag></And></Filter><Expiration><Days>3</Days></Expiration></Rule></LifecycleConfiguration> `,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:48 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/runtime/framework.go

    		}
    		if status := f.runFilterPlugin(ctx, pl, state, pod, nodeInfo); !status.IsSuccess() {
    			if !status.IsRejected() {
    				// Filter plugins are not supposed to return any status other than
    				// Success or Unschedulable.
    				status = framework.AsStatus(fmt.Errorf("running %q filter plugin: %w", pl.Name(), status.AsError()))
    			}
    			status.SetPlugin(pl.Name())
    			return status
    		}
    	}
    
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  5. pkg/apis/certificates/validation/validation_test.go

    				Status: capi.CertificateSigningRequestStatus{
    					Conditions: []capi.CertificateSigningRequestCondition{{Type: capi.CertificateApproved, Status: core.ConditionTrue}, {Type: capi.CertificateDenied, Status: core.ConditionTrue}},
    				},
    			},
    			lenientOpts: certificateValidationOptions{allowBothApprovedAndDenied: true},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 61K bytes
    - Viewed (0)
  6. tensorflow/c/c_api.h

    //
    // On success, place OK in status and return the newly created library handle.
    // The caller owns the library handle.
    //
    // On failure, place an error status in status and return NULL.
    TF_CAPI_EXPORT extern TF_Library* TF_LoadLibrary(const char* library_filename,
                                                     TF_Status* status);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  7. tensorflow/cc/gradients/math_grad.cc

    Status AbsGrad(const Scope& scope, const Operation& op,
                   const std::vector<Output>& grad_inputs,
                   std::vector<Output>* grad_outputs) {
      // dx = dy * sign(x)
      grad_outputs->push_back(Mul(scope, grad_inputs[0], Sign(scope, op.input(0))));
      return scope.status();
    }
    REGISTER_GRADIENT_OP("Abs", AbsGrad);
    
    Status NegGrad(const Scope& scope, const Operation& op,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 50.7K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/crdclient/types.gen.go

    			ObjectMeta: objMeta,
    			Status:     *(cfg.Status.(*istioioapimetav1alpha1.IstioStatus)),
    		}, metav1.UpdateOptions{})
    	case gvk.DestinationRule:
    		return c.Istio().NetworkingV1alpha3().DestinationRules(cfg.Namespace).UpdateStatus(context.TODO(), &apiistioioapinetworkingv1alpha3.DestinationRule{
    			ObjectMeta: objMeta,
    			Status:     *(cfg.Status.(*istioioapimetav1alpha1.IstioStatus)),
    		}, metav1.UpdateOptions{})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 62.2K bytes
    - Viewed (0)
  9. api/discovery/aggregated_v2beta1.json

                    {
                      "responseKind": {
                        "group": "",
                        "kind": "APIService",
                        "version": ""
                      },
                      "subresource": "status",
                      "verbs": [
                        "get",
                        "patch",
                        "update"
                      ]
                    }
                  ],
                  "verbs": [
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  10. pkg/apis/batch/validation/validation.go

    	if opts.RejectDecreasingFailedCounter {
    		if job.Status.Failed < oldJob.Status.Failed {
    			allErrs = append(allErrs, field.Invalid(statusFld.Child("failed"), job.Status.Failed, "cannot decrease the failed counter"))
    		}
    	}
    	if opts.RejectDecreasingSucceededCounter {
    		if job.Status.Succeeded < oldJob.Status.Succeeded {
    			allErrs = append(allErrs, field.Invalid(statusFld.Child("succeeded"), job.Status.Succeeded, "cannot decrease the succeeded counter"))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 16:43:24 UTC 2024
    - 51.2K bytes
    - Viewed (0)
Back to top