Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for san1 (0.07 sec)

  1. src/crypto/x509/x509_test.go

    		}
    
    		mgf1Params := pkix.AlgorithmIdentifier{
    			Algorithm:  hashOID,
    			Parameters: asn1.NullRawValue,
    		}
    
    		var err error
    		params.MGF.Parameters.FullBytes, err = asn1.Marshal(mgf1Params)
    		if err != nil {
    			t.Fatalf("failed to marshal MGF parameters: %s", err)
    		}
    
    		serialized, err := asn1.Marshal(params)
    		if err != nil {
    			t.Fatalf("failed to marshal parameters: %s", err)
    		}
    
    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. cluster/gce/util.sh

      local sans=""
      for extra in "$@"; do
        if [[ -n "${extra}" ]]; then
          sans="${sans}IP:${extra},"
        fi
      done
      sans="${sans}IP:${service_ip},DNS:kubernetes,DNS:kubernetes.default,DNS:kubernetes.default.svc,DNS:kubernetes.default.svc.${DNS_DOMAIN},DNS:${MASTER_NAME}"
    
      echo "Generating certs for alternate-names: ${sans}"
    
      setup-easyrsa
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  3. src/crypto/x509/verify_test.go

    		},
    		{
    			// Build a simple two node graph, where the leaf is directly issued from
    			// the root and both certificates have matching subject and public key, but
    			// the leaf has SANs.
    			name: "leaf with same subject, key, as parent but with SAN",
    			graph: trustGraphDescription{
    				Roots: []rootDescription{{Subject: "root"}},
    				Leaf:  "root",
    				Graph: []trustGraphEdge{
    					{
    						Issuer:  "root",
    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/ctrlz/assets/static/css/bootstrap-4.0.0.min.css

    45;--info:#17a2b8;--warning:#ffc107;--danger:#dc3545;--light:#f8f9fa;--dark:#343a40;--breakpoint-xs:0;--breakpoint-sm:576px;--breakpoint-md:768px;--breakpoint-lg:992px;--breakpoint-xl:1200px;--font-family-sans-serif:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";--font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}*,::after,::before{box-sizing:border-box}...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 141.5K bytes
    - Viewed (0)
  5. pkg/printers/internalversion/printers_test.go

    		{
    			serviceAccount: api.ServiceAccount{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:              "sa1",
    					CreationTimestamp: metav1.Time{Time: time.Now().Add(1.9e9)},
    				},
    				Secrets: []api.ObjectReference{},
    			},
    			// Columns: Name, (Num) Secrets, Age
    			expected: []metav1.TableRow{{Cells: []interface{}{"sa1", int64(0), "0s"}}},
    		},
    		// Basic service account with two secrets.
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/cluster_builder_test.go

    		service                  *model.Service
    		port                     *model.Port
    		proxyView                model.ProxyView
    		destRule                 *networking.DestinationRule
    		serviceAcct              []string // SE SAN values
    		enableAutoSni            bool
    		enableVerifyCertAtClient bool
    		expectTLSContext         *tls.UpstreamTlsContext
    	}{
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  7. pkg/config/validation/validation_test.go

    					InsecureSkipVerify: &wrapperspb.BoolValue{
    						Value: true,
    					},
    				},
    			},
    		}, valid: false},
    
    		{name: "InsecureSkipVerify is set true with tls mode simple, and the san is specified", in: &networking.DestinationRule{
    			Host: "reviews",
    			TrafficPolicy: &networking.TrafficPolicy{
    				Tls: &networking.ClientTLSSettings{
    					Mode:            networking.ClientTLSSettings_SIMPLE,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/x86/asm6.go

    		pp.Link = np
    	}
    
    	s.Size = int64(c)
    
    	if false { /* debug['a'] > 1 */
    		fmt.Printf("span1 %s %d (%d tries)\n %.6x", s.Name, s.Size, n, 0)
    		var i int
    		for i = 0; i < len(s.P); i++ {
    			fmt.Printf(" %.2x", s.P[i])
    			if i%16 == 15 {
    				fmt.Printf("\n  %.6x", uint(i+1))
    			}
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  9. src/runtime/proc.go

    	}
    	getg().m.mallocing--
    }
    
    // setcpuprofilerate sets the CPU profiling rate to hz times per second.
    // If hz <= 0, setcpuprofilerate turns off CPU profiling.
    func setcpuprofilerate(hz int32) {
    	// Force sane arguments.
    	if hz < 0 {
    		hz = 0
    	}
    
    	// Disable preemption, otherwise we can be rescheduled to another thread
    	// that has profiling enabled.
    	gp := getg()
    	gp.m.locks++
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  10. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    motegi.tochigi.jp
    nasu.tochigi.jp
    nasushiobara.tochigi.jp
    nikko.tochigi.jp
    nishikata.tochigi.jp
    nogi.tochigi.jp
    ohira.tochigi.jp
    ohtawara.tochigi.jp
    oyama.tochigi.jp
    sakura.tochigi.jp
    sano.tochigi.jp
    shimotsuke.tochigi.jp
    shioya.tochigi.jp
    takanezawa.tochigi.jp
    tochigi.tochigi.jp
    tsuga.tochigi.jp
    ujiie.tochigi.jp
    utsunomiya.tochigi.jp
    yaita.tochigi.jp
    aizumi.tokushima.jp
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
Back to top