Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 543 for Transition (0.38 sec)

  1. docs/distributed/decom.sh

    ./mc admin tier add minio myminio TIER1 --endpoint http://localhost:9002 --access-key minioadmin --secret-key minioadmin --bucket tiered --prefix prefix5/
    ./mc ilm add myminio/bucket2 --transition-days 0 --transition-tier TIER1 --transition-days 0
    
    ## mirror some content to bucket2 and capture versions tiered
    ./mc mirror internal myminio/bucket2/ --quiet >/dev/null
    ./mc ls -r myminio/bucket2/ >bucket2_ns.txt
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. pkg/apis/storagemigration/types.go

    	Status corev1.ConditionStatus
    	// The last time this condition was updated.
    	// +optional
    	LastUpdateTime metav1.Time
    	// The reason for the condition's last transition.
    	// +optional
    	Reason string
    	// A human readable message indicating details about the transition.
    	// +optional
    	Message string
    }
    
    // Status of the storage version migration.
    type StorageVersionMigrationStatus struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. 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)
  4. pkg/apis/apiserverinternal/types.go

    	ObservedGeneration int64
    	// Last time the condition transitioned from one status to another.
    	LastTransitionTime metav1.Time
    	// The reason for the condition's last transition.
    	// +required
    	Reason string
    	// A human readable message indicating details about the transition.
    	// +required
    	Message string
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:37 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/apiserverinternal/v1alpha1/generated.proto

      // +required
      optional k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 4;
    
      // The reason for the condition's last transition.
      // +required
      optional string reason = 5;
    
      // A human readable message indicating details about the transition.
      // +required
      optional string message = 6;
    }
    
    // A list of StorageVersions.
    message StorageVersionList {
      // Standard list metadata.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/ModelRegistryInternal.java

        void registerNode(ModelNodeInternal node, Multimap<ModelActionRole, ? extends ModelAction> actions);
    
        <T> void bind(ModelReference<T> subject, ModelActionRole role, ModelAction mutator);
    
        void transition(ModelNodeInternal node, ModelNode.State desired, boolean laterOk);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/openapi/enablement_test.go

    						SchemaProps: spec.SchemaProps{
    							Description: "The reason for the condition's last transition.",
    							Type:        []string{"string"},
    							Format:      "",
    						},
    					},
    					"message": {
    						SchemaProps: spec.SchemaProps{
    							Description: "A human readable message indicating details about the transition.",
    							Type:        []string{"string"},
    							Format:      "",
    						},
    					},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  8. pkg/apis/extensions/types.go

    DISCLAIMER: The implementation of the experimental API group itself is
    a temporary one meant as a stopgap solution until kubernetes has proper
    support for multiple API groups. The transition may require changes
    beyond registration differences. In other words, experimental API group
    support is experimental.
    */
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 13 17:21:33 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  9. releasenotes/notes/25669.yaml

          action to either (a) convert your existing configuration and code to the new
          extension model for Istio or (b) using the gRPC shim developed to bridge
          transition to the new model. For more details, [please refer to the developer
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 12 21:50:07 UTC 2020
    - 937 bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/cacher/ready.go

    	generation  int           // represent the number of times we have transtioned to ready
    	lock        sync.RWMutex  // protect the state and generation variables
    	restartLock sync.Mutex    // protect the transition from ready to pending where the channel is recreated
    	waitCh      chan struct{} // blocks until is ready or stopped
    }
    
    func newReady() *ready {
    	return &ready{
    		waitCh: make(chan struct{}),
    		state:  Pending,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 16 13:32:11 UTC 2023
    - 4.1K bytes
    - Viewed (0)
Back to top