Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for sN (0.04 sec)

  1. cmd/encryption-v1_test.go

    	}
    
    	for i, test := range testSP {
    		{
    			// nil range
    			o, l, skip, sn, ps, err := test.oi.GetDecryptedRange(nil)
    			if err != nil {
    				t.Errorf("Case %d: unexpected err: %v", i, err)
    			}
    			if skip != 0 || sn != 0 || ps != 0 || o != 0 || l != getEncSize(test.decSz) {
    				t.Errorf("Case %d: test failed: %d %d %d %d %d", i, o, l, skip, sn, ps)
    			}
    		}
    
    		if test.decSz >= 10 {
    			// first 10 bytes
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Sep 24 04:17:08 UTC 2022
    - 19.9K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/elf_test.go

    	foundOverlap := false
    	for i := 0; i < len(secs)-1; i++ {
    		for j := i + 1; j < len(secs); j++ {
    			s := secs[i]
    			sn := secs[j]
    			if secOverlaps(s, sn) {
    				t.Errorf("unexpected: section %d:%q (addr=%x size=%x) overlaps section %d:%q (addr=%x size=%x)", i, s.Name, s.Addr, s.Size, i+1, sn.Name, sn.Addr, sn.Size)
    				foundOverlap = true
    			}
    		}
    	}
    	if foundOverlap {
    		// Print some additional info for human inspection.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 13:44:07 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_patterns.td

    //             &&          +    div
    //           /   |        / \
    //        !=    !=       div -1
    //       / |   / |      / |
    //    rem 0.0 sn sn1    -  $1
    //   / |      |  |    / |
    // $0 $1     $1 rem  $0 rem
    // Note that named operators like 'sn' and 'sn1' are different values produced by
    // the same function in this case the sign function. Named values like 'div'
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Feb 03 08:58:22 UTC 2024
    - 34K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/symtab.go

    		// arbitrary -- if it turns out we need nameless static
    		// symbols they could be relaxed/removed.
    		sn := ldr.SymName(s)
    		if (sn == "" || sn[0] == '.') && ldr.IsFileLocal(s) {
    			panic(fmt.Sprintf("unexpected file local symbol %d %s<%d>\n",
    				s, sn, ldr.SymVersion(s)))
    		}
    		if (sn == "" || sn[0] == '.') && !ldr.IsFileLocal(s) {
    			return false
    		}
    		return true
    	}
    
    	// Data symbols.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 16:29:40 UTC 2023
    - 29.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/authentication/request/x509/x509_test.go

    			expectedIdentifier: "SN=1, SKID=FB:77:D6:D0:84:A8:10:DF:FA:4E:A4:E0:F1:2A:BB:B4:80:FD:4F:3F, AKID=D3:07:CD:72:E6:BE:0A:5A:D8:E9:60:20:AF:C2:F2:36:7E:33:62:0B",
    		},
    		{
    			name: "nil serial",
    			cert: func() *x509.Certificate {
    				c := getCert(t, clientCNCert)
    				c.SerialNumber = nil
    				return c
    			}(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 23:23:03 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/authentication/request/x509/x509.go

    		sb.WriteRune(r)
    		if i%2 == 1 && i != len(h)-1 {
    			sb.WriteRune(':')
    		}
    	}
    	return sb.String()
    }
    
    func certificateIdentifier(c *x509.Certificate) string {
    	return fmt.Sprintf(
    		"SN=%d, SKID=%s, AKID=%s",
    		c.SerialNumber,
    		columnSeparatedHex(c.SubjectKeyId),
    		columnSeparatedHex(c.AuthorityKeyId),
    	)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 18 01:31:22 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  7. pilot/pkg/bootstrap/certcontroller.go

    		if err != nil {
    			// This can rarely happen, just in case.
    			return fmt.Errorf("x509 cert - ParseCertificates() error: %v", err)
    		}
    		for _, c := range x509Cert {
    			log.Infof("x509 cert - Issuer: %q, Subject: %q, SN: %x, NotBefore: %q, NotAfter: %q",
    				c.Issuer, c.Subject, c.SerialNumber,
    				c.NotBefore.Format(time.RFC3339), c.NotAfter.Format(time.RFC3339))
    		}
    	}
    
    	log.Info("Istiod certificates are reloaded")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  8. operator/cmd/mesh/manifest-generate_test.go

    					match := 0
    					for i, wh := range whs {
    						sn := wh.ClientConfig.Service.Name
    						matches := selectorMatches(t, wh.NamespaceSelector, s.namespace) && selectorMatches(t, wh.ObjectSelector, s.pod)
    						if matches && found != "" {
    							// There must be exactly one match, or we will double inject.
    							t.Fatalf("matched multiple webhooks. Had %v, matched %v", found, sn)
    						}
    						if matches {
    							found = sn
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  9. src/crypto/tls/testdata/Client-TLSv12-ClientCert-RSA-ECDSA

    00000260  50 3a df e1 23 c4 3f 58  df 1a c0 1d 57 a5 46 3b  |P:..#.?X....W.F;|
    00000270  5d 09 ac 62 63 28 8a a2  b5 d4 9b 88 7c b9 4d b4  |]..bc(......|.M.|
    00000280  66 b2 9d 53 6e 15 9c f2  9b c7 14 ca 19 7f 00 38  |f..Sn..........8|
    00000290  81 a3 7b 44 e8 3d 6d 54  0f b3 81 fd 82 07 4d a1  |..{D.=mT......M.|
    000002a0  3e 8c 30 34 cd 6e 55 96  58 bf 86 8b 9c f6 be 94  |>.04.nU.X.......|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  10. okhttp/src/main/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.gz

    skoczow.pl skodje.no skole.museum sky skydiving.aero skygearapp.com skype skánit.no skånland.no sl slask.pl slattum.no sld.do sld.pa slg.br sling slupsk.pl slz.br sm sm.ua small-web.org smart smartlabeling.scw.cloud smile smola.no smushcdn.com smøla.no sn sn.cn snaase.no snasa.no sncf snillfjord.no snoasa.no snowflake.app snåase.no snåsa.no so so.gov.pl so.it sobetsu.hokkaido.jp soc.dz soc.lk soc.srcf.net soccer sochi.su social society.museum sodegaura.chiba.jp soeda.fukuoka.jp softbank software software.aero...
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 40.4K bytes
    - Viewed (0)
Back to top