Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 56 for skewX (0.06 sec)

  1. pkg/controller/resourceclaim/controller.go

    		//
    		// These can happen when:
    		// - a user created a pod with spec.nodeName set, perhaps for testing
    		// - some scheduler was used which is unaware of DRA
    		// - DRA was not enabled in kube-scheduler (version skew, configuration)
    		if claim.Spec.AllocationMode == resourcev1alpha2.AllocationModeWaitForFirstConsumer &&
    			claim.Status.Allocation == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/preflight/checks.go

    		}
    		if kubeletVersion.Major() > k8sVersion.Major() || kubeletVersion.Minor() > k8sVersion.Minor() {
    			return nil, []error{errors.Errorf("the kubelet version is higher than the control plane version. This is not a supported version skew and may lead to a malfunctional cluster. Kubelet version: %q Control plane version: %q", kubeletVersion, k8sVersion)}
    		}
    	}
    	return nil, nil
    }
    
    // SwapCheck warns if swap is enabled
    type SwapCheck struct{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:20:55 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/batch/v1/types.go

    	//
    	// More completion modes can be added in the future.
    	// If the Job controller observes a mode that it doesn't recognize, which
    	// is possible during upgrades due to version skew, the controller
    	// skips updates for the Job.
    	// +optional
    	CompletionMode *CompletionMode `json:"completionMode,omitempty" protobuf:"bytes,9,opt,name=completionMode,casttype=CompletionMode"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  4. pkg/apis/batch/types.go

    	//
    	// More completion modes can be added in the future.
    	// If the Job controller observes a mode that it doesn't recognize, which
    	// is possible during upgrades due to version skew, the controller
    	// skips updates for the Job.
    	// +optional
    	CompletionMode *CompletionMode
    
    	// suspend specifies whether the Job controller should create Pods or not. If
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  5. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

                try {
                    VersionRange parentRange = versionParser.parseVersionRange(parent.getVersion());
                    if (!parentRange.contains(versionParser.parseVersion(version))) {
                        // version skew drop back to resolution from the repository
                        return null;
                    }
    
                    // Validate versions aren't inherited when using parent ranges the same way as when read externally.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  6. cmd/storage-rest-server.go

    	case context.Canceled, context.DeadlineExceeded:
    		w.WriteHeader(499)
    	default:
    		w.WriteHeader(http.StatusForbidden)
    	}
    	w.Write([]byte(err.Error()))
    }
    
    // DefaultSkewTime - skew time is 15 minutes between minio peers.
    const DefaultSkewTime = 15 * time.Minute
    
    // Authenticates storage client's requests and validates for skewed time.
    func storageServerRequestValidate(r *http.Request) error {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  7. pkg/controller/cronjob/cronjob_controllerv2_test.go

    			expectRequeueAfter:         true,
    			expectedRequeueDuration:    1*time.Hour + nextScheduleDelta,
    			expectUpdateStatus:         true,
    			jobPresentInCJActiveStatus: true,
    		},
    
    		// Tests for time skews
    		// the controller sees job is created, takes no actions
    		"this ran but done, time drifted back, F": {
    			concurrencyPolicy:       "Forbid",
    			schedule:                onTheHour,
    			deadline:                noDead,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 70.8K bytes
    - Viewed (0)
  8. src/runtime/metrics_test.go

    	b.StopTimer()
    	stop()
    
    	// Disable the default */op metrics.
    	// ns/op doesn't mean anything because it's an average, but we
    	// have a sleep in our b.N loop above which skews this significantly.
    	b.ReportMetric(0, "ns/op")
    	b.ReportMetric(0, "B/op")
    	b.ReportMetric(0, "allocs/op")
    
    	// Sort latencies then report percentiles.
    	sort.Slice(latencies, func(i, j int) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 45K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/types.go

    const (
    	// NodeInclusionPolicyIgnore means ignore this scheduling directive when calculating pod topology spread skew.
    	NodeInclusionPolicyIgnore NodeInclusionPolicy = "Ignore"
    	// NodeInclusionPolicyHonor means use this scheduling directive when calculating pod topology spread skew.
    	NodeInclusionPolicyHonor NodeInclusionPolicy = "Honor"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.29.md

    than the version of `kubeadm` (N-3). This aligns with the recent change made by SIG Architecture that extends the support skew between the control plane and kubelets. Tolerate this new kubelet skew for the commands `init`, `join` and `upgrade`. Note that if the `kubeadm` user applies a control plane version that is older than the `kubeadm` version (N-1 maximum) then the skew between the kubelet and control plane would become a maximum of N-2. ([#120825](https://github.com/kubernetes/kubernetes/pull/120825),...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
Back to top