Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for sans (0.08 sec)

  1. 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)
  2. pilot/pkg/networking/core/cluster_tls_test.go

    							},
    						},
    					},
    					Sni: "some-sni.com",
    				},
    				err: nil,
    			},
    		},
    		{
    			name: "tls mode SIMPLE, with SANs specified in service entries",
    			opts: &buildClusterOpts{
    				mutable:         newTestCluster(),
    				serviceAccounts: []string{"se-san.com"},
    				serviceRegistry: provider.External,
    			},
    			tls: &networking.ClientTLSSettings{
    				Mode:           networking.ClientTLSSettings_SIMPLE,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 03:53:05 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  3. src/html/template/escape_test.go

    			`<p style='font-family: "Times New Roman"'>`,
    		},
    		{
    			"styleFontNameString",
    			`<p style='font-family: "{{"Times New Roman"}}", "{{"sans-serif"}}"'>`,
    			`<p style='font-family: "Times New Roman", "sans-serif"'>`,
    		},
    		{
    			"styleFontNameUnquoted",
    			`<p style='font-family: {{"Times New Roman"}}'>`,
    			`<p style='font-family: Times New Roman'>`,
    		},
    		{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/css/javadoc.css

     */
    
    /*
     * These CSS custom properties (variables) define the core color and font
     * properties used in this stylesheet.
     */
    :root {
        /* body, block and code fonts */
        --body-font-family: Lato, Arial, Helvetica, sans-serif;
        --block-font-family: Lato, Georgia, "Times New Roman", Times, serif;
        --code-font-family: monospace;
        /* Base font sizes for body and code elements */
        --body-font-size: 14px;
        --code-font-size: 14px;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  5. src/crypto/tls/common.go

    		if err != nil {
    			continue
    		}
    		// If SANs are *not* present, some clients will consider the certificate
    		// valid for the name in the Common Name.
    		if x509Cert.Subject.CommonName != "" && len(x509Cert.DNSNames) == 0 {
    			c.NameToCertificate[x509Cert.Subject.CommonName] = cert
    		}
    		for _, san := range x509Cert.DNSNames {
    			c.NameToCertificate[san] = cert
    		}
    	}
    }
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/conversion.go

    	if tls == nil {
    		return nil, nil
    	}
    	// Explicitly not supported: file mounted
    	// Not yet implemented: TLS mode, https redirect, max protocol version, SANs, CipherSuites, VerifyCertificate
    	out := &istio.ServerTLSSettings{
    		HttpsRedirect: false,
    	}
    	mode := k8s.TLSModeTerminate
    	if tls.Mode != nil {
    		mode = *tls.Mode
    	}
    	namespace := gw.Namespace
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  7. src/runtime/map.go

    				if hash&bucketMask(it.B) != checkBucket {
    					continue
    				}
    			} else {
    				// Hash isn't repeatable if k != k (NaNs).  We need a
    				// repeatable and randomish choice of which direction
    				// to send NaNs during evacuation. We'll use the low
    				// bit of tophash to decide which way NaNs go.
    				// NOTE: this case is why we need two evacuate tophash
    				// values, evacuatedX and evacuatedY, that differ in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  8. src/fmt/fmt_test.go

    	{"%.4b", -1.0, "-4503599627370496p-52"},
    	// Test correct f.intbuf boundary checks.
    	{"%.68f", 1.0, zeroFill("1.", 68, "")},
    	{"%.68f", -1.0, zeroFill("-1.", 68, "")},
    	// float infinites and NaNs
    	{"%f", posInf, "+Inf"},
    	{"%.1f", negInf, "-Inf"},
    	{"% f", NaN, " NaN"},
    	{"%20f", posInf, "                +Inf"},
    	{"% 20F", posInf, "                 Inf"},
    	{"% 20e", negInf, "                -Inf"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  9. src/math/big/float_test.go

    func alike(x, y *Float) bool {
    	return x.Cmp(y) == 0 && x.Signbit() == y.Signbit()
    }
    
    func alike32(x, y float32) bool {
    	// we can ignore NaNs
    	return x == y && math.Signbit(float64(x)) == math.Signbit(float64(y))
    }
    
    func alike64(x, y float64) bool {
    	// we can ignore NaNs
    	return x == y && math.Signbit(x) == math.Signbit(y)
    }
    
    func TestFloatMantExp(t *testing.T) {
    	for _, test := range []struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
  10. guava/src/com/google/thirdparty/publicsuffix/PublicSuffixPatterns.java

    --nx??u&-edr--nx?s??øms??muar?n&0-tsr--nx?2-dob--nx?5-&asir--nx?tals--nx??a&r!-i-om?f?t??t??douvsatvid?kiv?m&os?øs??n&od?ød??ra?sen?t&aouvatheig?ouv&a&c&ch&ab?áb??h&ab?áb???n??i&ag?ág??sa&mo?ttvid??án???z-rey--nx?ær&f?t???o&p-&ladr--nx?sens--nx??q-nagv--nx?r-asns--nx?s-kjks--nx?v-murb--nx?w-&anr&f--nx?t--nx??ublk--nx???ppol?q&0-t&baol--nx?soum--nx?veib--nx??x-&ipphl--nx?r&embh--nx?imph--nx???y-tinks--nx??r&f-atsr--nx?g-&an&ms--nx?nd--nx??e&drf--nx?ngs--nx??murs--nx?netl--nx?olmb--nx?sorr--nx??h-...
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 21 21:04:43 UTC 2024
    - 72.4K bytes
    - Viewed (0)
Back to top