Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 160 for Transition (0.16 sec)

  1. pkg/registry/batch/job/strategy_test.go

    					Template:       validPodTemplateSpec,
    					ManualSelector: ptr.To(true),
    					Parallelism:    ptr.To[int32](1),
    				},
    			},
    			wantWarningsCount: 1,
    		},
    		"Invalid transition to high parallelism": {
    			wantWarningsCount: 1,
    			job: &batch.Job{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:            "myjob2",
    					Namespace:       metav1.NamespaceDefault,
    					Generation:      1,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 101.5K bytes
    - Viewed (0)
  2. pkg/controller/job/backoff_utils.go

    	})
    }
    
    // Returns the pod finish time using the following lookups:
    // 1. if all containers finished, use the latest time
    // 2. if the pod has Ready=False condition, use the last transition time
    // 3. if the pod has been deleted, use the `deletionTimestamp - grace_period` to estimate the moment of deletion
    // 4. fallback to pod's creation time
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 07:46:41 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    				// message must be non-empty if specified
    				invalid("spec.validation.openAPIV3Schema.properties[value].x-kubernetes-validations[2].message"),
    			},
    		},
    		{
    			name: "forbid transition rule on element of list of type atomic",
    			opts: validationOptions{requireStructuralSchema: true},
    			input: apiextensions.CustomResourceValidation{
    				OpenAPIV3Schema: &apiextensions.JSONSchemaProps{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  4. src/runtime/trace.go

    	// always double-check gen.
    	//
    	// Transitioning this value from false -> true is harder. We need to make sure
    	// this is observable as true strictly before gen != 0. To maintain this invariant
    	// we only make this transition with the world stopped and use the store to gen
    	// as a publication barrier.
    	enabled bool
    
    	// enabledWithAllocFree is set if debug.traceallocfree is != 0 when tracing begins.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  5. src/internal/trace/internal/oldtrace/parser.go

    					return Events{}, fmt.Errorf("no consistent ordering of events possible")
    				}
    			}
    			break
    		}
    		f := frontier.Pop()
    
    		// We're computing the state transition twice, once when computing the
    		// frontier, and now to apply the transition. This is fine because
    		// stateTransition is a pure function. Computing it again is cheaper
    		// than storing large items in the frontier.
    		g, init, next := stateTransition(&f.ev)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/tracing.go

    	} else {
    		// TODO: should this `return nil, nil` instead ?
    		log.Warnf("Not able to configure tracing provider. Provider lookup failed.")
    		h.Tracing = &hcm.HttpConnectionManager_Tracing{}
    		// TODO: transition to configuring providers from proxy config here?
    		// something like: configureFromProxyConfig(tracingCfg, opts.proxy.Metadata.ProxyConfig.Tracing)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/ModelElementNode.java

        }
    
        @Override
        public void ensureUsable() {
            ensureAtLeast(Initialized);
        }
    
        @Override
        public void ensureAtLeast(State state) {
            modelRegistry.transition(this, state, true);
        }
    
        private static String describe(ModelRuleDescriptor descriptor) {
            StringBuilder stringBuilder = new StringBuilder();
            descriptor.describeTo(stringBuilder);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  8. manifests/addons/dashboards/pilot-dashboard.gen.json

             },
             "description": "Number of push errors. Many of these are at least potentional fatal and should be explored in-depth via Istiod logs.\nNote: metrics here do not use rate() to avoid missing transition from \"No series\"; series are not reported if there are no errors at all.\n",
             "fieldConfig": {
                "defaults": {
                   "custom": {
                      "fillOpacity": 10,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  9. cmd/import-boss/main_test.go

    		}
    	}
    }
    
    func TestTransitiveClosure(t *testing.T) {
    	cases := []struct {
    		name     string
    		in       map[string][]string
    		expected map[string][]string
    	}{
    		{
    			name: "no transition",
    			in: map[string][]string{
    				"a": {"b"},
    				"c": {"d"},
    			},
    			expected: map[string][]string{
    				"a": {"b"},
    				"c": {"d"},
    			},
    		},
    		{
    			name: "simple",
    			in: map[string][]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 12:36:49 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  10. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    				if currentReadyCondition.Status != v1.ConditionTrue && observedReadyCondition.Status == v1.ConditionTrue {
    					// If error happened during node status transition (Ready -> NotReady)
    					// we need to mark node for retry to force MarkPodsNotReady execution
    					// in the next iteration.
    					nc.nodesToRetry.Store(node.Name, struct{}{})
    				}
    				return
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
Back to top