Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 543 for Transition (0.13 sec)

  1. internal/bucket/lifecycle/transition.go

    func (t *Transition) UnmarshalXML(d *xml.Decoder, startElement xml.StartElement) error {
    	type transitionWrapper Transition
    	var trw transitionWrapper
    	err := d.DecodeElement(&trw, &startElement)
    	if err != nil {
    		return err
    	}
    	*t = Transition(trw)
    	t.set = true
    	return nil
    }
    
    // Validate - validates the "Transition" element
    func (t Transition) Validate() error {
    	if !t.set {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jan 10 17:07:49 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  2. src/html/template/transition.go

    // license that can be found in the LICENSE file.
    
    package template
    
    import (
    	"bytes"
    	"strings"
    )
    
    // transitionFunc is the array of context transition functions for text nodes.
    // A transition function takes a context and template text input, and returns
    // the updated context and the number of bytes consumed from the front of the
    // input.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 19:54:31 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/util/Trie.java

            public Trie build() {
                Trie[] transitions = new Trie[this.transitions.size()];
                for (int i = 0; i < this.transitions.size(); i++) {
                    Builder transition = this.transitions.get(i);
                    transitions[i] = transition.build();
                }
                Arrays.sort(transitions);
                return new Trie(c, terminal, transitions);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/internal/model/StateTransitionControllerTest.groovy

                controller.transition(TestState.A, TestState.B, action)
            }
    
            then:
            def e = thrown(IllegalStateException)
            e.message == "Cannot transition <state> to state B as already transitioning to this state."
    
            1 * action.run() >> {
                controller.transition(TestState.A, TestState.B, {})
            }
            0 * _
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 23K bytes
    - Viewed (0)
  5. docs/bucket/lifecycle/DESIGN.md

    Lifecycle transition rules can be applied to buckets (both versioned and un-versioned) by specifying the tier name defined above as the transition storage class for the lifecycle rule.
    
    ## Implementation
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  6. 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)
  7. src/runtime/mem.go

    // purposes. For example, on POSIX-y operating systems, Reserved is usually a
    // private anonymous mmap'd region with PROT_NONE set, and to transition
    // to Ready would require setting PROT_READ|PROT_WRITE. However the
    // underspecification of Prepared lets us use just MADV_FREE to transition from
    // Ready to Prepared. Thus with the Prepared state we can set the permission
    // bits just once early on, we can efficiently tell the OS that it's free to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  8. internal/bucket/lifecycle/transition_test.go

    		err   error
    	}{
    		{
    			input: `<Transition>
    			<Days>0</Days>
    			<StorageClass>S3TIER-1</StorageClass>
    		  </Transition>`,
    			err: nil,
    		},
    		{
    			input: `<Transition>
    			<Days>1</Days>
    			<Date>2021-01-01T00:00:00Z</Date>
    			<StorageClass>S3TIER-1</StorageClass>
    		  </Transition>`,
    			err: errTransitionInvalid,
    		},
    		{
    			input: `<Transition>
    			<Days>1</Days>
    		  </Transition>`,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Oct 01 18:58:17 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  9. docs/bucket/lifecycle/README.md

    --restore-request Days=3
    ```
    
    ### 4.1 Monitoring transition events
    
    `s3:ObjectTransition:Complete` and `s3:ObjectTransition:Failed` events can be used to monitor transition events between the source cluster and transition tier. To watch lifecycle events, you can enable bucket notification on the source bucket with `mc event add`  and specify `--event ilm` flag.
    
    Note that transition event notification is a MinIO extension.
    
    ## Explore Further
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Aug 26 07:33:25 UTC 2023
    - 9K bytes
    - Viewed (0)
  10. 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)
Back to top