Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for ACME (0.09 sec)

  1. src/crypto/x509/x509_test.go

                da:ba:53:19:1b:09:4b:82:b2:89:26:7d:c7:6f:a0:02
            Signature Algorithm: sha256WithRSAEncryption
            Issuer: O = Acme Co
            Validity
                Not Before: Dec 21 16:59:27 2021 GMT
                Not After : Dec 21 16:59:27 2022 GMT
            Subject: O = Acme Co
            Subject Public Key Info:
                Public Key Algorithm: rsaEncryption
                    RSA Public-Key: (2048 bit)
    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. pilot/pkg/networking/core/cluster_test.go

    			},
    		},
    	}
    
    	configs := []config.Config{}
    	if c.destRule != nil {
    		configs = append(configs, config.Config{
    			Meta: config.Meta{
    				GroupVersionKind: gvk.DestinationRule,
    				Name:             "acme",
    			},
    			Spec: c.destRule,
    		})
    	}
    	if c.sidecar != nil {
    		configs = append(configs, config.Config{
    			Meta: config.Meta{
    				GroupVersionKind: gvk.Sidecar,
    				Name:             "default",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  3. src/crypto/x509/verify_test.go

    		roots:       []string{rootWithoutSKID},
    		currentTime: 1550000000,
    		dnsName:     "example",
    		systemSkip:  true, // does not chain to a system root
    
    		expectedChains: [][]string{
    			{"Acme LLC", "Acme Co"},
    		},
    	},
    	{
    		// When there are two parents, one with an incorrect subject but matching SKID
    		// and one with a correct subject but missing SKID, the latter should be
    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. pilot/pkg/networking/core/cluster_builder_test.go

    					},
    				},
    			}
    
    			var cfg *config.Config
    			if tt.destRule != nil {
    				cfg = &config.Config{
    					Meta: config.Meta{
    						GroupVersionKind: gvk.DestinationRule,
    						Name:             "acme",
    						Namespace:        "default",
    					},
    					Spec: tt.destRule,
    				}
    			}
    			cg := NewConfigGenTest(t, TestOptions{
    				Instances:      instances,
    				ConfigPointers: []*config.Config{cfg},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  5. pkg/apis/batch/validation/validation_test.go

    					ManagedBy: ptr.To("example.com/" + strings.Repeat("x", 60)),
    				},
    			},
    		},
    		`spec.managedBy: Invalid value: "invalid custom controller name": must be a domain-prefixed path (such as "acme.io/foo")`: {
    			opts: JobValidationOptions{RequirePrefixedLabels: true},
    			job: batch.Job{
    				ObjectMeta: validJobObjectMeta,
    				Spec: batch.JobSpec{
    					Selector:  validGeneratedSelector,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 124.3K bytes
    - Viewed (0)
  6. pkg/controller/garbagecollector/garbagecollector_test.go

    						{Name: "bars", Namespaced: true, Kind: "Bar", Verbs: metav1.Verbs{"delete", "list", "watch"}},
    					},
    				},
    				{
    					// Valid GroupVersion, missing required verbs, should be ignored
    					GroupVersion: "acme/v1",
    					APIResources: []metav1.APIResource{
    						{Name: "widgets", Namespaced: true, Kind: "Widget", Verbs: metav1.Verbs{"delete"}},
    					},
    				},
    			},
    			err: nil,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
Back to top