Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 67 for sans (0.65 sec)

  1. src/crypto/x509/name_constraints_test.go

    				{},
    			},
    		},
    		leaf: leafSpec{
    			sans: []string{"dns:example.com"},
    			ekus: []string{"msSGC"},
    		},
    		requestedEKUs: []ExtKeyUsage{ExtKeyUsageServerAuth},
    		expectedError: "incompatible key usage",
    	},
    
    	// An invalid DNS SAN should be detected only at validation time so
    	// that we can process CA certificates in the wild that have invalid SANs.
    	// See https://github.com/golang/go/issues/23995
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 22:40:21 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  2. pilot/pkg/xds/cds_test.go

    			// Service properly sets SAN. Since it's not external, we do not add the SANs automatically though
    			sans: nil,
    		},
    		{
    			name:    "Kubernetes service and EDS ServiceEntry ISTIO_MUTUAL",
    			objs:    []runtime.Object{service, pod, endpoint},
    			configs: []config.Config{drIstioMTLS, seEDS},
    			// The Service has precedence, so its cluster will be used
    			sans: []string{"spiffe://cluster.local/ns/default/sa/pod"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 02:06:39 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. security/pkg/server/ca/server.go

    		}
    		// Node is authorized to impersonate; overwrite the SAN to the impersonated identity.
    		sans = []string{impersonatedIdentity}
    	}
    	serverCaLog.Debugf("generating a certificate, sans: %v, requested ttl: %s", sans, time.Duration(request.ValidityDuration*int64(time.Second)))
    	certSigner := crMetadata[security.CertSigner].GetStringValue()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 17:35:26 UTC 2024
    - 8K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/phases/init/certs.go

    	sans := []string{}
    
    	for _, dnsName := range certConfig.AltNames.DNSNames {
    		if dnsName != "" {
    			sans = append(sans, dnsName)
    		}
    	}
    
    	for _, ip := range certConfig.AltNames.IPs {
    		sans = append(sans, ip.String())
    	}
    	return fmt.Sprintf("\n\nDefault SANs are %s", strings.Join(sans, ", "))
    }
    
    func runCertsSa(c workflow.RunData) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 06:35:45 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  5. pilot/pkg/bootstrap/server_test.go

    		t.Run(tc.name, func(t *testing.T) {
    			features.IstiodServiceCustomHost = tc.customHost
    			var args PilotArgs
    			args.Revision = tc.revision
    			args.Namespace = "istio-system"
    			sans := getDNSNames(&args, tc.discoveryAddress)
    			assert.Equal(t, sans, tc.sans)
    		})
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/css/manual.css

    	font-family: "Droid Sans Mono", "DejaVu Sans Mono", "Monospace", monospace;
    	font-weight: normal;
    	text-rendering: optimizeSpeed;
    }
    
    em em {
    	font-style: normal;
    }
    
    strong strong {
    	font-weight: normal;
    }
    
    .keyseq {
    	color: rgba(51, 51, 51, 0.8);
    }
    
    kbd {
    	font-family: "Droid Sans Mono", "DejaVu Sans Mono", monospace;
    	display: inline-block;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/internal/report/source_html.go

    	template.Must(t.Parse(`{{define "weblistjs"}}` + weblistPageScript + `{{end}}`))
    }
    
    const weblistPageCSS = `<style type="text/css">
    body #content{
    font-family: sans-serif;
    }
    h1 {
      font-size: 1.5em;
    }
    .legend {
      font-size: 1.25em;
    }
    .line, .nop, .unimportant {
      color: #aaaaaa;
    }
    .inlinesrc {
      color: #000066;
    }
    .livesrc {
    cursor: pointer;
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. testing/internal-performance-testing/src/main/resources/org/gradle/reporting/style.css

    body {
        font-family: sans-serif;
        font-size: 12pt;
        margin: 3em;
        color: #444;
    }
    
    h2 {
        font-size: 14pt;
        margin-top: 2em;
    }
    
    h3 {
        margin-top: 2em;
        margin-bottom: 1.4em;
    }
    
    #footer {
        margin-top: 4em;
        font-size: 8pt;
    }
    
    table {
        border-collapse: collapse;
    }
    
    table.history, table.test-details {
        margin-top: 20px;
        font-size: 10pt;
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. docs/fr/docs/advanced/response-directly.md

    ## Utiliser le `jsonable_encoder` dans une `Response`
    
    Parce que **FastAPI** n'apporte aucune modification à une `Response` que vous retournez, vous devez vous assurer que son contenu est prêt à être utilisé (sérialisable).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. pkg/bootstrap/option/convert.go

    		if err != nil {
    			return "", err
    		}
    		return marshalString, nil
    	}
    }
    
    func sanConverter(sans []string) convertFunc {
    	return func(*instance) (any, error) {
    		matchers := []string{}
    		for _, s := range sans {
    			matchers = append(matchers, fmt.Sprintf(`{"exact":"%s"}`, s))
    		}
    		return "[" + strings.Join(matchers, ",") + "]", nil
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 00:35:05 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top