Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 38 for Transition (0.64 sec)

  1. pkg/kubelet/eviction/eviction_manager_test.go

    	// we should have memory pressure (because transition period not yet met)
    	if !manager.IsUnderMemoryPressure() {
    		t.Errorf("Manager should report memory pressure")
    	}
    
    	// no pod should have been killed
    	if podKiller.pod != nil {
    		t.Errorf("Manager chose to kill pod: %v when no pod should have been killed", podKiller.pod.Name)
    	}
    
    	// move the clock past transition period to ensure that we stop reporting pressure
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  2. src/runtime/proc.go

    		// schedule checks if freezing is set and if so stops
    		// execution. This guarantees that while Gs can transition from
    		// running to stopped, they can never transition from stopped
    		// to running.
    		//
    		// The sleep here allows racing Ms that missed freezing and are
    		// about to run a G to complete the transition to running
    		// before we start traceback.
    		usleep(1000)
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. src/cmd/vendor/golang.org/x/telemetry/package-lock.json

          "engines": {
            "node": ">=12"
          }
        },
        "node_modules/d3-transition": {
          "version": "3.0.1",
          "resolved": "https://registry.npmjs.org/d3-transition/-/d3-transition-3.0.1.tgz",
          "integrity": "sha512-ApKvfjsSR6tg06xrL434C0WydLr7JewBB3V+/39RMHsaXTOG0zmt/OAXeng5M5LBm0ojmxJrpomQVZ1aPvBL4w==",
          "dependencies": {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 156K bytes
    - Viewed (0)
  6. src/main/webapp/js/admin/bootstrap.min.js.map

    romElement(element) {\n    if (!element) {\n      return 0\n    }\n\n    // Get transition-duration of the element\n    let transitionDuration = $(element).css('transition-duration')\n    let transitionDelay = $(element).css('transition-delay')\n\n    const floatTransitionDuration = parseFloat(transitionDuration)\n    const floatTransitionDelay = parseFloat(transitionDelay)\n\n    // Return 0 if element or transition duration is not found\n    if (!floatTransitionDuration && !floatTransitionDelay)...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 185.8K bytes
    - Viewed (0)
  7. src/main/webapp/js/bootstrap.min.js.map

    romElement(element) {\n    if (!element) {\n      return 0\n    }\n\n    // Get transition-duration of the element\n    let transitionDuration = $(element).css('transition-duration')\n    let transitionDelay = $(element).css('transition-delay')\n\n    const floatTransitionDuration = parseFloat(transitionDuration)\n    const floatTransitionDelay = parseFloat(transitionDelay)\n\n    // Return 0 if element or transition duration is not found\n    if (!floatTransitionDuration && !floatTransitionDelay)...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Jan 11 06:54:28 UTC 2020
    - 189.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"oldSelf.v == 'old' && self.v == 'new'",
    			},
    		},
    		{name: "skipped transition rule for nil old primitive",
    			expectSkipped: true,
    			obj:           "exists",
    			oldObj:        nil,
    			schema:        &stringType,
    			valid: []string{
    				"oldSelf == self",
    			},
    		},
    		{name: "skipped transition rule for nil old array",
    			expectSkipped: true,
    			obj:           []interface{}{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  9. cmd/site-replication.go

    			clonedRl.NoncurrentVersionTransition = existingRl.NoncurrentVersionTransition
    			rMap[id] = clonedRl
    		} else {
    			rMap[id] = rl
    		}
    	}
    
    	var rules []lifecycle.Rule
    	for _, rule := range rMap {
    		rules = append(rules, rule)
    	}
    
    	// no rules, return
    	if len(rules) == 0 {
    		return []byte{}, nil
    	}
    
    	// get final list for write
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

            },
            "message": {
              "description": "A human readable message indicating details about the transition.",
              "type": "string"
            },
            "reason": {
              "description": "The reason for the condition's last transition.",
              "type": "string"
            },
            "status": {
              "description": "Status of the condition, one of True, False, Unknown.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
Back to top