Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 37 for Transition (0.17 sec)

  1. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // +kubebuilder:validation:Type=string
      // +kubebuilder:validation:Format=date-time
      optional Time lastTransitionTime = 4;
    
      // reason contains a programmatic identifier indicating the reason for the condition's last transition.
      // Producers of specific condition types may define expected values and meanings for this field,
      // and whether the values are considered a guaranteed API.
      // The value should be a CamelCase string.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // +kubebuilder:validation:Type=string
      // +kubebuilder:validation:Format=date-time
      optional Time lastTransitionTime = 4;
    
      // reason contains a programmatic identifier indicating the reason for the condition's last transition.
      // Producers of specific condition types may define expected values and meanings for this field,
      // and whether the values are considered a guaranteed API.
      // The value should be a CamelCase string.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  3. pkg/apis/batch/validation/validation.go

    		}
    	}
    	if opts.RejectStartTimeUpdateForUnsuspendedJob {
    		// Note that we check `oldJob.Status.StartTime != nil` to allow transitioning from
    		// startTime = nil to startTime != nil for unsuspended jobs, which is a desired transition.
    		if oldJob.Status.StartTime != nil && !ptr.Equal(oldJob.Status.StartTime, job.Status.StartTime) && !ptr.Deref(job.Spec.Suspend, false) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 16:43:24 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/serviceregistry_test.go

    	expectEndpoints(t, s, "outbound|90||service.namespace.svc.cluster.local", []string{"1.2.3.4:90", "2.3.4.5:90"}, nil)
    
    	// Move the endpoint to another slice - transition phase where its duplicated
    	createEndpointSlice(t, s.KubeClient().Kube(), "slice1", "service", namespace, []v1.EndpointPort{{Name: "http", Port: 80}}, []string{"1.2.3.5", "2.3.4.5"})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  5. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

    import static org.apache.maven.cli.CLIManager.NON_INTERACTIVE;
    import static org.apache.maven.cli.ResolveFile.resolveFile;
    
    // TODO push all common bits back to plexus cli and prepare for transition to Guice. We don't need 50 ways to make CLIs
    
    /**
     */
    public class MavenCli {
        public static final String LOCAL_REPO_PROPERTY = "maven.repo.local";
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  6. src/time/time_test.go

    		5: {Date(1991, September, 14, 17, 0, 0, 0, loc), boundTwo, boundThree},
    		6: {Date(1991, September, 15, 0, 50, 0, 0, loc), boundTwo, boundThree},
    
    		// The ZoneBounds of a "Asia/Shanghai" after the last transition (Standard Time)
    		7:  {boundThree, boundThree, Time{}},
    		8:  {Date(1991, December, 15, 1, 50, 0, 0, loc), boundThree, Time{}},
    		9:  {Date(1992, April, 13, 17, 50, 0, 0, loc), boundThree, Time{}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  7. cmd/api-errors.go

    		HTTPStatusCode: http.StatusConflict,
    	},
    	ErrTransitionStorageClassNotFoundError: {
    		Code:           "TransitionStorageClassNotFoundError",
    		Description:    "The transition storage class was not found",
    		HTTPStatusCode: http.StatusNotFound,
    	},
    
    	// Bucket notification related errors.
    	ErrEventNotification: {
    		Code:           "InvalidArgument",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  8. src/internal/trace/order.go

    		return curCtx, false, err
    	}
    	// Smuggle in the P state that let us advance so we can surface information to the event.
    	// Specifically, we need to make sure that the event is interpreted not as a transition of
    	// ProcRunning -> ProcIdle but ProcIdle -> ProcIdle instead.
    	//
    	// ProcRunning is binding, but we may be running with a P on the current M and we can't
    	// bind another P. This P is about to go ProcIdle anyway.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  9. src/runtime/mbitmap.go

    // isFree reports whether the index'th object in s is unallocated.
    //
    // The caller must ensure s.state is mSpanInUse, and there must have
    // been no preemption points since ensuring this (which could allow a
    // GC transition, which would allow the state to change).
    func (s *mspan) isFree(index uintptr) bool {
    	if index < uintptr(s.freeIndexForScan) {
    		return false
    	}
    	bytep, mask := s.allocBits.bitp(index)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  10. cmd/admin-handlers-users.go

    // response is to return only the policy JSON. The newer response returns
    // timestamps along with the policy JSON. Both versions are supported for now,
    // for smooth transition to new API.
    func (a adminAPIHandlers) InfoCannedPolicy(w http.ResponseWriter, r *http.Request) {
    	ctx := r.Context()
    
    	objectAPI, _ := validateAdminReq(ctx, w, r, policy.GetPolicyAdminAction)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:19:04 UTC 2024
    - 78.6K bytes
    - Viewed (0)
Back to top