Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 78 for Transition (0.24 sec)

  1. internal/bucket/lifecycle/lifecycle.go

    }
    
    // ExpectedExpiryTime calculates the expiry, transition or restore date/time based on a object modtime.
    // The expected transition or restore time is always a midnight time following the object
    // modification time plus the number of transition/restore days.
    //
    //	e.g. If the object modtime is `Thu May 21 13:42:50 GMT 2020` and the object should
    //	    transition in 1 day, then the expected transition time is `Fri, 23 May 2020 00:00:00 GMT`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:48 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  2. docs/bucket/replication/setup_ilm_expiry_replication.sh

    ## Add warm tier
    ./mc ilm tier add minio sitea WARM-TIER --endpoint http://localhost:9006 --access-key minio --secret-key minio123 --bucket bucket
    
    ## Add ILM rules
    ./mc ilm add sitea/bucket --transition-days 0 --transition-tier WARM-TIER --transition-days 0 --noncurrent-expire-days 2 --expire-days 3 --prefix "myprefix" --tags "tag1=val1&tag2=val2"
    ./mc ilm rule list sitea/bucket
    
    ## Check ilm expiry flag
    ./mc admin replicate info sitea --json
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  3. cmd/bucket-lifecycle.go

    	return obj, nil
    }
    
    // transition object to target specified by the transition ARN. When an object is transitioned to another
    // storage specified by the transition ARN, the metadata is left behind on source cluster and original content
    // is moved to the transition tier. Note that in the case of encrypted objects, entire encrypted stream is moved
    // to the transition tier without decrypting or re-encrypting.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/build/DefaultBuildLifecycleController.java

        }
    
        @Override
        public ExecutionResult<Void> beforeModelReset() {
            return state.transition(CONFIGURATION_STATES, State.ReadyToReset, failures -> fireBeforeModelDiscarded(false));
        }
    
        @Override
        public ExecutionResult<Void> beforeModelDiscarded(boolean failed) {
            return state.transition(State.BuildFinishHooks, State.Finished, failures -> fireBeforeModelDiscarded(failed));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  5. src/internal/trace/testtrace/validation.go

    		tr := ev.StateTransition()
    		checkStack(e, tr.Stack)
    		switch tr.Resource.Kind {
    		case trace.ResourceGoroutine:
    			// Basic state transition validation.
    			id := tr.Resource.Goroutine()
    			old, new := tr.Goroutine()
    			if new == trace.GoUndetermined {
    				e.Errorf("transition to undetermined state for goroutine %d", id)
    			}
    			if v.seenSync && old == trace.GoUndetermined {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  6. src/internal/trace/summary.go

    	// Region start event. Normally EventRegionBegin event or nil,
    	// but can be a state transition event from NotExist or Undetermined
    	// if the region is a synthetic region representing task inheritance
    	// from the parent goroutine.
    	Start *Event
    
    	// Region end event. Normally EventRegionEnd event or nil,
    	// but can be a state transition event to NotExist if the goroutine
    	// terminated without explicitly ending the region.
    	End *Event
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  7. src/time/zoneinfo_read.go

    			if uint32(int(nn)) != nn {
    				return nil, errBadData
    			}
    			n[i] = int(nn)
    		}
    	}
    
    	size := 4
    	if is64 {
    		size = 8
    	}
    
    	// Transition times.
    	txtimes := dataIO{d.read(n[NTime] * size), false}
    
    	// Time zone indices for transition times.
    	txzones := d.read(n[NTime])
    
    	// Zone info structures
    	zonedata := dataIO{d.read(n[NZone] * 6), false}
    
    	// Time zone abbreviations.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/css/base.css

        cursor: pointer;
        width: 100%;
        padding: 5px;
        line-height: 20px;
        border: 0 none;
        color: #02303A;
        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
    - 30.5K bytes
    - Viewed (0)
  9. src/cmd/trace/gstate.go

    	// transition to GoRunning.
    	startRunningTime trace.Time
    
    	// startSyscall is the most recent event that caused a goroutine to
    	// transition to GoSyscall.
    	syscall struct {
    		time   trace.Time
    		stack  trace.Stack
    		active bool
    	}
    
    	// startBlockReason is the StateTransition.Reason of the most recent
    	// event that caused a goroutine to transition to GoWaiting.
    	startBlockReason string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  10. src/internal/trace/summary_test.go

    			}
    			if old, _ := st.Goroutine(); old != trace.GoNotExist && old != trace.GoUndetermined {
    				t.Errorf("expected transition from GoNotExist or GoUndetermined, got transition from %s instead", old)
    			}
    		}
    	default:
    		t.Errorf("unexpected want start event type: %s", wantStart)
    	}
    
    	switch wantEnd {
    	case trace.EventBad:
    		if region.End != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 13.4K bytes
    - Viewed (0)
Back to top