Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 322 for Transition (0.27 sec)

  1. manifests/addons/dashboards/pilot.libsonnet

            'Push Errors', queries.xdsErrors, |||
              Number of push errors. Many of these are at least potentional fatal and should be explored in-depth via Istiod logs.
              Note: metrics here do not use rate() to avoid missing transition from "No series"; series are not reported if there are no errors at all.
            |||
          ),
          panels.heatmap.base(
            'Push Time', queries.pushTime, |||
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/types_jsonschema.go

    	// `transition rule`.
    	//
    	// By default, the `oldSelf` variable is the same type as `self`.
    	// When `optionalOldSelf` is true, the `oldSelf` variable is a CEL optional
    	//  variable whose value() is the same type as `self`.
    	// See the documentation for the `optionalOldSelf` field for details.
    	//
    	// Transition rules by default are applied only on UPDATE requests and are
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 22:23:23 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/apps/v1/generated.proto

      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 3;
    
      // The reason for the condition's last transition.
      // +optional
      optional string reason = 4;
    
      // A human readable message indicating details about the transition.
      // +optional
      optional string message = 5;
    }
    
    // DaemonSetList is a collection of daemon sets.
    message DaemonSetList {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/apps/v1/generated.proto

      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 3;
    
      // The reason for the condition's last transition.
      // +optional
      optional string reason = 4;
    
      // A human readable message indicating details about the transition.
      // +optional
      optional string message = 5;
    }
    
    // DaemonSetList is a collection of daemon sets.
    message DaemonSetList {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/ComponentGraphResolveMetadata.java

     * Expensive operations should live on {@link ComponentGraphResolveState} instead. Note that as a transition step, not all implementations currently honor this contract.</p>
     */
    public interface ComponentGraphResolveMetadata {
        /**
         * Returns the identifier for this component.
         */
        ComponentIdentifier getId();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache-base/src/main/kotlin/org/gradle/internal/cc/base/services/ConfigurationCacheEnvironmentChangeTracker.kt

            private
            var mode: TrackerMode = Initial()
    
            private
            inline fun <T : TrackerMode> setMode(transition: (TrackerMode) -> T): T {
                synchronized(this) {
                    val newMode = transition(mode)
                    mode = newMode
                    return newMode
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  7. src/net/http/httptest/server.go

    			if oldState, ok := s.conns[c]; ok {
    				if oldState != http.StateNew && oldState != http.StateIdle {
    					panic("invalid state transition")
    				}
    				s.conns[c] = cs
    			}
    		case http.StateIdle:
    			if oldState, ok := s.conns[c]; ok {
    				if oldState != http.StateActive {
    					panic("invalid state transition")
    				}
    				s.conns[c] = cs
    			}
    			if s.closed {
    				s.closeConn(c)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 17:26:10 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/upgrade/staticpods.go

    	BackupManifestPath(component string) string
    	// BackupManifestDir should point to the backup directory used for backuping manifests during the transition
    	BackupManifestDir() string
    	// BackupEtcdDir should point to the backup directory used for backuping manifests during the transition
    	BackupEtcdDir() string
    	// CleanupDirs cleans up all temporary directories
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 10:07:41 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/project/ProjectLifecycleController.java

            BuildState build,
            ProjectState owner,
            ClassLoaderScope selfClassLoaderScope,
            ClassLoaderScope baseClassLoaderScope,
            IProjectFactory projectFactory
        ) {
            controller.transition(State.NotCreated, State.Created, () -> {
                ProjectState parent = owner.getBuildParent();
                ProjectInternal parentModel = parent == null ? null : parent.getMutableModel();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/validation/validation_test.go

    					oldObject: map[string]interface{}{"field": "x"},
    					expectErrs: []string{
    						`field: Invalid value: "string": failed rule: self == oldSelf`,
    					}},
    			},
    		},
    		{name: "correlatable transition rule",
    			// Ensures a transition rule under a "listMap" is supported.
    			schema: apiextensions.JSONSchemaProps{
    				Type: "object",
    				Properties: map[string]apiextensions.JSONSchemaProps{
    					"field": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 04:49:59 UTC 2023
    - 24.8K bytes
    - Viewed (0)
Back to top