Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/crypto/x509/x509_test.go

    			t.Errorf("%s: ExtraNames didn't override Country", test.name)
    		}
    
    		for _, ext := range cert.Extensions {
    			if ext.Id.Equal(oidExtensionSubjectAltName) {
    				if ext.Critical {
    					t.Fatal("SAN extension is marked critical")
    				}
    			}
    		}
    
    		found := false
    		for _, atv := range cert.Subject.Names {
    			if atv.Type.Equal([]int{2, 5, 4, 42}) {
    				found = true
    				break
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.4.md

    - **Cluster Lifecycle**
      - [alpha] Ensure critical cluster infrastructure pods (Heapster, DNS, etc.) can schedule by evicting regular pods when necessary to make the critical pods schedule. ([docs](http://kubernetes.io/docs/admin/rescheduler/#guaranteed-scheduling-of-critical-add-on-pods)) ([kubernetes/features#62](https://github.com/kubernetes/enhancements/issues/62))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  3. src/crypto/x509/verify_test.go

    		roots:         []string{excludedNamesRoot},
    		currentTime:   1486684488,
    		systemSkip:    true, // does not chain to a system root
    
    		errorCallback: expectNameConstraintsError,
    	},
    	{
    		// Test that unknown critical extensions in a leaf cause a
    		// verify error.
    		name:          "CriticalExtLeaf",
    		leaf:          criticalExtLeafWithExt,
    		intermediates: []string{criticalExtIntermediate},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  4. pkg/kubelet/eviction/eviction_manager_test.go

    // TestStaticCriticalPodsAreNotEvicted
    func TestStaticCriticalPodsAreNotEvicted(t *testing.T) {
    	podMaker := makePodWithMemoryStats
    	summaryStatsMaker := makeMemoryStats
    	podsToMake := []podToMake{
    		{name: "critical", priority: scheduling.SystemCriticalPriority, requests: newResourceList("100m", "1Gi", ""), limits: newResourceList("100m", "1Gi", ""), memoryWorkingSet: "800Mi"},
    	}
    	pods := []*v1.Pod{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.5.md

    * Admit critical pods in the kubelet ([#38836](https://github.com/kubernetes/kubernetes/pull/38836), [@bprashanth](https://github.com/bprashanth))
    * assign -998 as the oom_score_adj for critical pods (e.g. kube-proxy) ([#39114](https://github.com/kubernetes/kubernetes/pull/39114), [@dchen1107](https://github.com/dchen1107))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  6. cluster/gce/gci/configure-helper.sh

        limitedResources:
        - resource: pods
          matchScopes:
          - scopeName: PriorityClass
            operator: In
            values: ["system-node-critical", "system-cluster-critical"]
    EOF
    
        if [[ "${ADMISSION_CONTROL:-}" == *"ImagePolicyWebhook"* ]]; then
          if [[ -z "${GCP_IMAGE_VERIFICATION_URL:-}" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  7. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

            "strictly '[1.1, 1.4]'"             | "versions of foo verified to run on platform Y" | '1.4'    | "didn't match versions 2.0, 1.5 because "
            "prefer '[1.0, 1.4]'; reject '1.4'" | "1.4 has a critical bug"                        | '1.3'    | "rejected version 1.4 because "
        }
    
        def "renders custom dependency reasons"() {
            given:
            mavenRepo.module("org", "foo", "1.0").publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  8. cmd/admin-handlers.go

    // returns it.
    // This is not a critical function, and it is allowed
    // to fail with a ten seconds timeout, returning nil.
    func getClusterMetaInfo(ctx context.Context) []byte {
    	objectAPI := newObjectLayerFn()
    	if objectAPI == nil {
    		return nil
    	}
    
    	// Add a ten seconds timeout because getting profiling data
    	// is critical for debugging, in contrary to getting cluster info
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  9. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    ```console helm install istio-cni istio/cni -n kube-system ``` 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. ## Ambient To enable ambient, you need to add `--set cni.ambient.enabled=true`. ### Calico For Calico, you must...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	IssuerUniqueId       CryptBitBlob
    	SubjectUniqueId      CryptBitBlob
    	CountExtensions      uint32
    	Extensions           *CertExtension
    }
    
    type CertExtension struct {
    	ObjId    *byte
    	Critical int32
    	Value    CryptObjidBlob
    }
    
    type CryptAlgorithmIdentifier struct {
    	ObjId      *byte
    	Parameters CryptObjidBlob
    }
    
    type CertPublicKeyInfo struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
Back to top