Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for pub2 (0.1 sec)

  1. src/crypto/x509/x509_test.go

    		E: 3,
    	}
    	derBytes := MarshalPKCS1PublicKey(pub)
    	pub2, err := ParsePKCS1PublicKey(derBytes)
    	if err != nil {
    		t.Errorf("ParsePKCS1PublicKey: %s", err)
    	}
    	if pub.N.Cmp(pub2.N) != 0 || pub.E != pub2.E {
    		t.Errorf("ParsePKCS1PublicKey = %+v, want %+v", pub, pub2)
    	}
    
    	// It's never been documented that asn1.Marshal/Unmarshal on rsa.PublicKey works,
    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. src/cmd/internal/obj/x86/asm6.go

    					default:
    						goto bad
    
    					case REG_DS:
    						ab.Put1(0xc5)
    
    					case REG_SS:
    						ab.Put2(0x0f, 0xb2)
    
    					case REG_ES:
    						ab.Put1(0xc4)
    
    					case REG_FS:
    						ab.Put2(0x0f, 0xb4)
    
    					case REG_GS:
    						ab.Put2(0x0f, 0xb5)
    					}
    
    					ab.asmand(ctxt, cursym, p, &p.From, &p.To)
    
    				case movDoubleShift:
    					if t[0] == Pw {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  3. cmd/admin-handlers.go

    		if err != nil {
    			bugLogIf(ctx, err)
    			return nil
    		}
    		return out
    	}
    }
    
    func bytesToPublicKey(pub []byte) (*rsa.PublicKey, error) {
    	block, _ := pem.Decode(pub)
    	if block != nil {
    		pub = block.Bytes
    	}
    	key, err := x509.ParsePKCS1PublicKey(pub)
    	if err != nil {
    		return nil, err
    	}
    	return key, nil
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  4. pkg/printers/internalversion/printers_test.go

    		},
    		// Max Available set, no Min Available.
    		{
    			pdb: policy.PodDisruptionBudget{
    				ObjectMeta: metav1.ObjectMeta{
    					Namespace:         "ns2",
    					Name:              "pdb2",
    					CreationTimestamp: metav1.Time{Time: time.Now().Add(1.9e9)},
    				},
    				Spec: policy.PodDisruptionBudgetSpec{
    					MaxUnavailable: &maxUnavailable,
    				},
    				Status: policy.PodDisruptionBudgetStatus{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  5. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    // protection : 2015-04-23 XYZ.COM LLC
    protection
    
    // pru : 2015-07-30 Prudential Financial, Inc.
    pru
    
    // prudential : 2015-07-30 Prudential Financial, Inc.
    prudential
    
    // pub : 2013-12-12 Dog Beach, LLC
    pub
    
    // pwc : 2015-10-29 PricewaterhouseCoopers LLP
    pwc
    
    // qpon : 2013-11-14 dotQPON LLC
    qpon
    
    // quebec : 2013-12-19 PointQuébec Inc
    quebec
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  6. src/reflect/all_test.go

    }
    
    type Public struct {
    	X int
    	Y **int
    	private
    }
    
    func (p *Public) M() {
    }
    
    func TestUnexported(t *testing.T) {
    	var pub Public
    	pub.S = "S"
    	pub.T = pub.A[:]
    	v := ValueOf(&pub)
    	isValid(v.Elem().Field(0))
    	isValid(v.Elem().Field(1))
    	isValid(v.Elem().Field(2))
    	isValid(v.Elem().FieldByName("X"))
    	isValid(v.Elem().FieldByName("Y"))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

    http://deeplearning.cs.cmu.edu/pdfs/Hochreiter97_lstm.pdf
    S. Hochreiter and J. Schmidhuber. 'Long Short-Term Memory'. Neural Computation,
    9(8):1735-1780, 1997.
    The peephole implementation is based on:
    https://research.google.com/pubs/archive/43905.pdf
    Hasim Sak, Andrew Senior, and Francoise Beaufays. 'Long short-term memory
    recurrent neural network architectures for large scale acoustic modeling.'
    INTERSPEECH, 2014.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

            .addHeader("icy-br:128")
            .addHeader("icy-description:Rock")
            .addHeader("icy-genre:riders")
            .addHeader("icy-name:A2RRock")
            .addHeader("icy-pub:1")
            .addHeader("icy-url:http://www.A2Rradio.com")
            .addHeader("Server: Icecast 2.3.3-kh8")
            .addHeader("Cache-Control: no-cache")
            .addHeader("Pragma: no-cache")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/exec.go

    	return envList("PKG_CONFIG", cfg.DefaultPkgConfig)[0]
    }
    
    // splitPkgConfigOutput parses the pkg-config output into a slice of flags.
    // This implements the shell quoting semantics described in
    // https://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#tag_18_02,
    // except that it does not support parameter or arithmetic expansion or command
    // substitution and hard-codes the <blank> delimiters instead of reading them
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
Back to top