Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 320 for Transition (0.25 sec)

  1. platforms/documentation/docs/src/docs/css/manual.css

    	cursor: pointer;
    	width: 100%;
    	padding: 5px;
    	line-height: 20px;
    	border: 0 none;
    	color: var(--text-color);
    	text-decoration: none;
    	transition: none;
    	-o-transition: none;
    	-moz-transition: none;
    	-webkit-transition: none;
    }
    
    .site-header__navigation-item .site-header__navigation-link:hover {
    	color: #1DA2BD;
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/apis/testapigroup/v1/types.go

    	// Unique, one-word, CamelCase reason for the condition's last transition.
    	// +optional
    	Reason string `json:"reason,omitempty" protobuf:"bytes,5,opt,name=reason"`
    	// Human-readable message indicating details about last transition.
    	// +optional
    	Message string `json:"message,omitempty" protobuf:"bytes,6,opt,name=message"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. src/cmd/trace/pprof.go

    		for i := range events {
    			ev := &events[i]
    
    			// Filter out any non-state-transitions and events without stacks.
    			if ev.Kind() != trace.EventStateTransition {
    				continue
    			}
    			stack := ev.Stack()
    			if stack == trace.NoStack {
    				continue
    			}
    
    			// The state transition has to apply to a goroutine.
    			st := ev.StateTransition()
    			if st.Resource.Kind != trace.ResourceGoroutine {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/flowcontrol/v1alpha1/generated.proto

      optional k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 3;
    
      // `reason` is a unique, one-word, CamelCase reason for the condition's last transition.
      optional string reason = 4;
    
      // `message` is a human-readable message indicating details about last transition.
      optional string message = 5;
    }
    
    // FlowSchemaList is a list of FlowSchema objects.
    message FlowSchemaList {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/flowcontrol/v1beta2/generated.proto

      optional k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 3;
    
      // `reason` is a unique, one-word, CamelCase reason for the condition's last transition.
      optional string reason = 4;
    
      // `message` is a human-readable message indicating details about last transition.
      optional string message = 5;
    }
    
    // FlowSchemaList is a list of FlowSchema objects.
    message FlowSchemaList {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/build/BuildStateRegistry.java

         *
         * <p>This shouldn't be on this interface, as this is state for the root build that should be managed internally by the {@link RootBuildState} instance instead. This method is here to allow transition towards that structure.
         */
        void finalizeIncludedBuilds();
    
        /**
         * Creates an included build. An included build is-a nested build whose projects and outputs are treated as part of the composite build.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:19 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/buildtree/DefaultBuildTreeLifecycleController.java

            return !isIsolatedProjectsEnabled || !(isDefaultTasksRequested || isHelpTaskOnly);
        }
    
        private <T> T runBuild(Supplier<ExecutionResult<? extends T>> action) {
            return state.transition(State.NotStarted, State.Complete, () -> {
                ExecutionResult<? extends T> result;
                try {
                    result = action.get();
                } catch (Throwable t) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 07:46:55 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. pkg/kubelet/status/status_manager_test.go

    	if newReadyCondition.LastTransitionTime.IsZero() {
    		t.Errorf("Unexpected: last transition time not set")
    	}
    	if newReadyCondition.LastTransitionTime.Before(&oldReadyCondition.LastTransitionTime) {
    		t.Errorf("Unexpected: new transition time %s, is before old transition time %s", newReadyCondition.LastTransitionTime, oldReadyCondition.LastTransitionTime)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/ResidualProgram.kt

                val requests: List<PluginRequestSpec>,
                val source: Program.Plugins? = null
            ) : StageTransition, Instruction()
    
            /**
             * An instruction that marks the transition from stage 1 to stage 2 by causing the
             * target scope to be closed thus making the resolved classpath available to stage 2.
             *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/flowcontrol/v1beta3/generated.proto

      optional k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 3;
    
      // `reason` is a unique, one-word, CamelCase reason for the condition's last transition.
      optional string reason = 4;
    
      // `message` is a human-readable message indicating details about last transition.
      optional string message = 5;
    }
    
    // FlowSchemaList is a list of FlowSchema objects.
    message FlowSchemaList {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.5K bytes
    - Viewed (0)
Back to top