Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for pub2 (0.31 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. 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)
  6. 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)
  7. 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