Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for Transition (0.38 sec)

  1. internal/bucket/lifecycle/lifecycle_test.go

    			isDelMarker:    true,
    			expectedAction: DeleteVersionAction,
    		},
    		// Should transition immediately when Transition days is zero
    		{
    			inputConfig:    `<BucketLifecycleConfiguration><Rule><Filter></Filter><Status>Enabled</Status><Transition><Days>0</Days><StorageClass>S3TIER-1</StorageClass></Transition></Rule></BucketLifecycleConfiguration>`,
    			objectName:     "foodir/fooobject",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:48 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. src/runtime/mgc.go

    	stackRoots []*g
    
    	// Each type of GC state transition is protected by a lock.
    	// Since multiple threads can simultaneously detect the state
    	// transition condition, any thread that detects a transition
    	// condition must acquire the appropriate transition lock,
    	// re-check the transition condition and return if it no
    	// longer holds or perform the transition if it does.
    	// Likewise, any transition must invalidate the transition
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  3. pkg/kubelet/nodestatus/setters_test.go

    			expectConditions:                     []v1.NodeCondition{*makeReadyCondition(true, "kubelet is posting ready status", now, now)},
    		},
    		// the transition tests ensure timestamps are set correctly, no need to test the entire condition matrix in this section
    		{
    			desc: "transition to ready",
    			node: func() *v1.Node {
    				node := withCapacity.DeepCopy()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  4. cmd/erasure-object.go

    }
    
    // TransitionObject - transition object content to target tier.
    func (er erasureObjects) TransitionObject(ctx context.Context, bucket, object string, opts ObjectOptions) error {
    	tgtClient, err := globalTierConfigMgr.getDriver(ctx, opts.Transition.Tier)
    	if err != nil {
    		return err
    	}
    
    	// Acquire write lock before starting to transition the object.
    	lk := er.NewNSLock(bucket, object)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. staging/src/k8s.io/api/apps/v1/types.go

    	// The reason for the condition's last transition.
    	// +optional
    	Reason string `json:"reason,omitempty" protobuf:"bytes,4,opt,name=reason"`
    	// A human readable message indicating details about the transition.
    	// +optional
    	Message string `json:"message,omitempty" protobuf:"bytes,5,opt,name=message"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/css/javadoc.css

    }
    .page-search-info {
        background-color: var(--subnav-background-color);
        border-radius: 3px;
        border: 0 solid var(--border-color);
        padding: 0 8px;
        overflow: hidden;
        height: 0;
        transition: all 0.2s ease;
    }
    div.table-tabs > button.table-tab {
        background: var(--navbar-background-color);
        color: var(--navbar-text-color);
    }
    .page-search-header {
        padding: 5px 12px 7px 12px;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    }
    
    func (v transitionRuleMatcher) matches(cr CompilationResult) bool {
    	return cr.UsesOldSelf == bool(v)
    }
    
    func (v transitionRuleMatcher) String() string {
    	if v {
    		return "is a transition rule"
    	}
    	return "is not a transition rule"
    }
    
    func TestCelCompilation(t *testing.T) {
    	featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, apiextensionsfeatures.CRDValidationRatcheting, true)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  10. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    				if currentReadyCondition.Status != v1.ConditionTrue && observedReadyCondition.Status == v1.ConditionTrue {
    					// If error happened during node status transition (Ready -> NotReady)
    					// we need to mark node for retry to force MarkPodsNotReady execution
    					// in the next iteration.
    					nc.nodesToRetry.Store(node.Name, struct{}{})
    				}
    				return
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
Back to top