Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 93 for Critical (0.18 sec)

  1. pkg/kubelet/types/pod_update_test.go

    			expected:  true,
    		},
    		{
    			name:      "a not critical pod with higher priority preempts a critical pod",
    			preemptor: getTestPod(configSourceAnnotation(ApiserverSource), &systemPriorityUpper, ""),
    			preemptee: getTestPod(configSourceAnnotation(FileSource), &systemPriority, ""),
    			expected:  true,
    		},
    		{
    			name:      "a critical pod with less priority do not preempts a critical pod",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 21 08:20:50 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  2. okhttp-tls/src/test/java/okhttp3/tls/internal/der/DerCertificatesTest.kt

                extensions =
                  listOf(
                    Extension(
                      id = keyUsage,
                      critical = true,
                      value = "03020106".decodeHex(),
                    ),
                    Extension(
                      id = BASIC_CONSTRAINTS,
                      critical = true,
                      value =
                        BasicConstraints(
                          ca = true,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  3. pkg/kubelet/nodeshutdown/nodeshutdown_manager_linux_test.go

    			expectedDidOverrideInhibitDelay:  false,
    			expectedPodToGracePeriodOverride: map[string]int64{"normal-pod-nil-grace-period": 20, "critical-pod-nil-grace-period": 10, "normal-pod-grace-period": 2, "critical-pod-grace-period": 2},
    		},
    		{
    			desc:                             "no override (total=30s, critical=10s) pod with long terminationGracePeriod is overridden",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  4. pkg/kubelet/preemption/preemption.go

    	kubetypes "k8s.io/kubernetes/pkg/kubelet/types"
    )
    
    const message = "Preempted in order to admit critical pod"
    
    // CriticalPodAdmissionHandler is an AdmissionFailureHandler that handles admission failure for Critical Pods.
    // If the ONLY admission failures are due to insufficient resources, then CriticalPodAdmissionHandler evicts pods
    // so that the critical pod can be admitted.  For evictions, the CriticalPodAdmissionHandler evicts a set of pods that
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 02 16:53:19 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  5. tests/integration/pilot/testdata/upgrade/1.11.0-beta.1-cni-install.yaml.tar

    template: metadata: labels: k8s-app: istio-cni-node sidecar.istio.io/inject: "false" annotations: # This, along with the CriticalAddonsOnly toleration below, # marks the pod as a critical add-on, ensuring it gets # priority scheduling and that its resources are reserved # if it ever gets evicted. scheduler.alpha.kubernetes.io/critical-pod: '' sidecar.istio.io/inject: "false" # Add Prometheus Scrape annotations prometheus.io/scrape: 'true' prometheus.io/port: "15014" prometheus.io/path: '/metrics' # Custom...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 29 18:43:32 UTC 2021
    - 10K bytes
    - Viewed (0)
  6. src/crypto/x509/parser.go

    				}
    			default:
    				// Unknown extensions are recorded if critical.
    				unhandled = true
    			}
    		} else if e.Id.Equal(oidExtensionAuthorityInfoAccess) {
    			// RFC 5280 4.2.2.1: Authority Information Access
    			if e.Critical {
    				// Conforming CAs MUST mark this extension as non-critical
    				return errors.New("x509: authority info access incorrectly marked critical")
    			}
    			val := cryptobyte.String(e.Value)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  7. pkg/kubelet/preemption/preemption_test.go

    	"k8s.io/client-go/tools/record"
    	kubeapi "k8s.io/kubernetes/pkg/apis/core"
    	"k8s.io/kubernetes/pkg/apis/scheduling"
    )
    
    const (
    	clusterCritical       = "cluster-critical"
    	nodeCritical          = "node-critical"
    	bestEffort            = "bestEffort"
    	burstable             = "burstable"
    	highRequestBurstable  = "high-request-burstable"
    	guaranteed            = "guaranteed"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jul 24 10:04:08 UTC 2022
    - 19.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/compile.go

    	{"tighten tuple selectors", "schedule"},
    	// remove critical edges before phi tighten, so that phi args get better placement
    	{"critical", "phi tighten"},
    	// don't layout blocks until critical edges have been removed
    	{"critical", "layout"},
    	// regalloc requires the removal of all critical edges
    	{"critical", "regalloc"},
    	// regalloc requires all the values in a block to be scheduled
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:55:18 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  9. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/CertificateAdapters.kt

          extensionValue,
          decompose = {
            listOf(
              it.id,
              it.critical,
              it.value,
            )
          },
          construct = {
            Extension(
              id = it[0] as String,
              critical = it[1] as Boolean,
              value = it[2],
            )
          },
        )
    
      /**
       * ```
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  10. plugin/pkg/admission/security/podsecurity/testdata/pod_restricted.yaml

    # this pod fixture is used for benchmarks and should be kept updated to pass the latest restricted policy
    apiVersion: v1
    kind: Pod
    metadata:
      annotations:
        scheduler.alpha.kubernetes.io/critical-pod: ""
        seccomp.security.alpha.kubernetes.io/pod: runtime/default
      creationTimestamp: "2021-08-20T14:35:04Z"
      generateName: kube-dns-76dbc85bd5-
      labels:
        k8s-app: kube-dns
        pod-template-hash: 76dbc85bd5
      managedFields:
      - apiVersion: v1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 04 16:26:30 UTC 2021
    - 18.3K bytes
    - Viewed (0)
Back to top