Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 585 for transitionTo (0.16 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/DefaultModelRegistry.java

        }
    
        private ModelNodeInternal get(ModelPath path) {
            GoalGraph graph = new GoalGraph();
            transitionTo(graph, graph.nodeAtState(new NodeAtState(path, Registered)));
            ModelNodeInternal node = modelGraph.find(path);
            if (node == null) {
                return null;
            }
            transitionTo(graph, graph.nodeAtState(new NodeAtState(path, GraphClosed)));
            return node;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 45.7K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. android/guava/src/com/google/common/util/concurrent/Service.java

         * Called when the service transitions to the {@linkplain State#TERMINATED TERMINATED} state.
         * The {@linkplain State#TERMINATED TERMINATED} state is a terminal state in the transition
         * diagram. Therefore, if this method is called, no other methods will be called on the {@link
         * Listener}.
         *
         * @param from The previous state that is being transitioned from. Failure can occur in any
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  5. guava/src/com/google/common/util/concurrent/Service.java

         * Called when the service transitions to the {@linkplain State#TERMINATED TERMINATED} state.
         * The {@linkplain State#TERMINATED TERMINATED} state is a terminal state in the transition
         * diagram. Therefore, if this method is called, no other methods will be called on the {@link
         * Listener}.
         *
         * @param from The previous state that is being transitioned from. Failure can occur in any
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  6. src/runtime/mem.go

    // memory obtained by sysReserve.
    func sysReserve(v unsafe.Pointer, n uintptr) unsafe.Pointer {
    	return sysReserveOS(v, n)
    }
    
    // sysMap transitions a memory region from Reserved to Prepared. It ensures the
    // memory region can be efficiently transitioned to Ready.
    //
    // sysStat must be non-nil.
    func sysMap(v unsafe.Pointer, n uintptr, sysStat *sysMemStat) {
    	sysStat.add(int64(n))
    	sysMapOS(v, n)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  7. cmd/bucket-lifecycle.go

    	Disabled = "Disabled"
    	// TransitionStatus status of transition
    	TransitionStatus = "transition-status"
    	// TransitionedObjectName name of transitioned object
    	TransitionedObjectName = "transitioned-object"
    	// TransitionedVersionID is version of remote object
    	TransitionedVersionID = "transitioned-versionID"
    	// TransitionTier name of transition storage class
    	TransitionTier = "transition-tier"
    )
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/uikit.min.js

    class="uk-lightbox-toolbar uk-position-top uk-text-right uk-transition-slide-top uk-transition-opaque"> <button class="uk-lightbox-toolbar-icon uk-close-large" type="button" uk-close></button> </div> <a class="uk-lightbox-button uk-position-center-left uk-position-medium uk-transition-fade" href="#" uk-slidenav-previous uk-lightbox-item="previous"></a> <a class="uk-lightbox-button uk-position-center-right uk-position-medium uk-transition-fade" href="#" uk-slidenav-next uk-lightbox-item="next"></a>...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 130.5K bytes
    - Viewed (0)
  9. 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)
  10. docs/bucket/lifecycle/DESIGN.md

    Extra metadata maintained internally in `xl.meta` for a transitioned object
    
    ```
    ...
            "MetaSys": {
              "x-minio-internal-transition-status": "Y29tcGxldGU=",
              "x-minio-internal-transition-tier": "R0NTVElFUjE=",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 4.3K bytes
    - Viewed (0)
Back to top