Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 76 of 76 for fn_name (0.13 sec)

  1. src/crypto/x509/x509_test.go

    	}
    	testURL.RawQuery = "∞"
    
    	marshalTests := []struct {
    		name          string
    		template      *Certificate
    		expectedError string
    	}{
    		{
    			name: "marshal: unicode dNSName",
    			template: &Certificate{
    				SerialNumber: big.NewInt(0),
    				DNSNames:     []string{"∞"},
    			},
    			expectedError: "x509: \"∞\" cannot be encoded as an IA5String",
    		},
    		{
    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/model/sidecar.go

    	for _, h := range istioListener.Hosts {
    		parts := strings.SplitN(h, "/", 2)
    		if len(parts) < 2 {
    			log.Errorf("Illegal host in sidecar resource: %s, host must be of form namespace/dnsName", h)
    			continue
    		}
    		if parts[0] == currentNamespace {
    			parts[0] = configNamespace
    		}
    
    		ns := parts[0]
    		hName := host.Name(parts[1])
    		if _, exists := hostsByNamespace[ns]; !exists {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:23 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  3. pilot/pkg/model/push_context.go

    		wasmPluginsChanged, proxyConfigsChanged bool
    
    	changedEnvoyFilters := sets.New[ConfigKey]()
    
    	for conf := range pushReq.ConfigsUpdated {
    		switch conf.Kind {
    		case kind.ServiceEntry, kind.DNSName:
    			servicesChanged = true
    		case kind.DestinationRule:
    			destinationRulesChanged = true
    		case kind.VirtualService:
    			virtualServicesChanged = true
    		case kind.Gateway:
    			gatewayChanged = true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  4. manifests/charts/base/crds/crd-all.gen.yaml

                          - NONE
                          type: string
                        hosts:
                          description: One or more service hosts exposed by the listener
                            in `namespace/dnsName` format.
                          items:
                            type: string
                          type: array
                        port:
                          description: The port associated with the listener.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  5. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                          - NONE
                          type: string
                        hosts:
                          description: One or more service hosts exposed by the listener
                            in `namespace/dnsName` format.
                          items:
                            type: string
                          type: array
                        port:
                          description: The port associated with the listener.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"UnknownPublicKeyAlgorithm", Const, 0},
    		{"UnknownSignatureAlgorithm", Const, 0},
    		{"VerifyOptions", Type, 0},
    		{"VerifyOptions.CurrentTime", Field, 0},
    		{"VerifyOptions.DNSName", Field, 0},
    		{"VerifyOptions.Intermediates", Field, 0},
    		{"VerifyOptions.KeyUsages", Field, 1},
    		{"VerifyOptions.MaxConstraintComparisions", Field, 10},
    		{"VerifyOptions.Roots", Field, 0},
    	},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top