Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 209 for Critical (0.24 sec)

  1. 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)
  2. 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)
  3. pkg/apis/scheduling/types.go

    	SystemPriorityClassPrefix = "system-"
    	// SystemClusterCritical is the system priority class name that represents cluster-critical.
    	SystemClusterCritical = SystemPriorityClassPrefix + "cluster-critical"
    	// SystemNodeCritical is the system priority class name that represents node-critical.
    	SystemNodeCritical = SystemPriorityClassPrefix + "node-critical"
    )
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 07 23:13:00 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. manifests/charts/istio-cni/README.md

    ```
    
    Installation in `kube-system` is recommended to ensure the [`system-node-critical`](https://kubernetes.io/docs/tasks/administer-cluster/guaranteed-scheduling-critical-addon-pods/)
    `priorityClassName` can be used. You can install in other namespace only on K8S clusters that allow
    'system-node-critical' outside of kube-system.
    
    ## Configuration
    
    To view support configuration options and documentation, run:
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. docs/metrics/prometheus/alerts.md

      repeat_interval: 1h
      receiver: 'web.hook'
    receivers:
      - name: 'web.hook'
        webhook_configs:
          - url: 'http://127.0.0.1:8010/webhook'
    inhibit_rules:
      - source_match:
          severity: 'critical'
        target_match:
          severity: 'warning'
        equal: ['alertname', 'dev', 'instance']
    ```
    
    This sample configuration uses a `webhook` at http://127.0.0.1:8010/webhook to post the alerts.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jan 28 20:53:59 UTC 2024
    - 4.4K 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. releasenotes/notes/ztunnel-chart-priorityclassname.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    issue:
      - 47867
    
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 30 19:33:33 UTC 2023
    - 219 bytes
    - Viewed (0)
  8. manifests/charts/istio-cni/templates/resourcequota.yaml

    spec:
      hard:
        pods: {{ .Values.cni.resourceQuotas.pods | quote }}
      scopeSelector:
        matchExpressions:
        - operator: In
          scopeName: PriorityClass
          values:
          - system-node-critical
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 388 bytes
    - Viewed (0)
  9. 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)
  10. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-resolutionStrategy/kotlin/build.gradle.kts

    configurations.all {
        resolutionStrategy.eachDependency {
            if (requested.group == "org.software" && requested.name == "some-library" && requested.version == "1.2") {
                useVersion("1.2.1")
                because("fixes critical bug in 1.2")
            }
        }
    }
    // end::denying_version[]
    
    // tag::module_substitution[]
    configurations.all {
        resolutionStrategy.eachDependency {
            if (requested.name == "groovy-all") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top