Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 65 for DP (0.02 sec)

  1. src/crypto/tls/testdata/Server-TLSv13-Ed25519

    >>> Flow 1 (client to server)
    00000000  16 03 01 00 ca 01 00 00  c6 03 03 08 d3 0c d5 aa  |................|
    00000010  d7 b1 55 99 bc fa a7 17  09 ed 93 47 96 44 70 28  |..U........G.Dp(|
    00000020  03 b7 c6 40 ee 98 fe 30  83 86 ea 20 d0 89 76 54  |...@...0... ..vT|
    00000030  87 71 b7 9c b7 fd f2 19  15 5f 3b 39 c9 ad 6b 97  |.q......._;9..k.|
    00000040  89 6e c4 69 cc 83 b1 f0  e7 94 68 85 00 04 13 03  |.n.i......h.....|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  2. tensorflow/cc/gradients/nn_grad.cc

                       std::vector<Output>* grad_outputs) {
      // Softmax gradient function.
      // p = softmax(x) maps from [batch, n] to [batch, m]
      // dp/dx = [dp0/dx0   ... dp0/dxn-1  ]
      //         [  ...           ...      ]
      //         [dpm-1/dx0 ... dpm-1/dxn-1]
      // dL/dx = dp/dx * dL/dy
      //
      // Using alternative formula:
      // dL/dx = dL/dy * y - sum(dL/dy * y) * y
      //    = (dL/dy - sum(dL/dy * y)) * y
      auto y = op.output(0);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 23:34:33 UTC 2022
    - 24.5K bytes
    - Viewed (0)
  3. src/crypto/rsa/pss_test.go

    		case newKeyMarker:
    			key = new(PublicKey)
    			nHex, ok := <-values
    			if !ok {
    				continue
    			}
    			key.N = bigFromHex(nHex)
    			key.E = intFromHex(<-values)
    			// We don't care for d, p, q, dP, dQ or qInv.
    			for i := 0; i < 6; i++ {
    				<-values
    			}
    		case newSignatureMarker:
    			msg := fromHex(<-values)
    			<-values // skip salt
    			sig := fromHex(<-values)
    
    			h.Reset()
    			h.Write(msg)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  4. src/crypto/tls/testdata/Client-TLSv13-ExportKeyingMaterial

    000003c0  d8 b0 ae c5 de 52 6b 77  10 87 cd 2f ec fe 99 1c  |.....Rkw.../....|
    000003d0  93 c0 f7 6b 8b d2 8b 81  9b 05 36 82 bf 4a b4 a0  |...k......6..J..|
    000003e0  d2 9f 75 b3 ef 64 50 7f  00 ac fa                 |..u..dP....|
    >>> Flow 3 (client to server)
    00000000  14 03 03 00 01 01 17 03  03 00 35 a6 7f ef 71 68  |..........5...qh|
    00000010  8b 86 84 20 a6 e7 65 3f  3f f8 c6 8b 62 40 31 e2  |... ..e??...b@1.|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  5. src/regexp/testdata/testregex.c

    compf(const regex_t* re, const char* xstr, size_t xlen, regdisc_t* disc)
    {
    	Disc_t*		dp = (Disc_t*)disc;
    
    	return (void*)((char*)0 + ++dp->ordinal);
    }
    
    static int
    execf(const regex_t* re, void* data, const char* xstr, size_t xlen, const char* sstr, size_t slen, char** snxt, regdisc_t* disc)
    {
    	Disc_t*		dp = (Disc_t*)disc;
    
    	sfprintf(dp->sp, "{%-.*s}(%lu:%d)", xlen, xstr, (char*)data - (char*)0, slen);
    	return atoi(xstr);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 51.3K bytes
    - Viewed (0)
  6. src/crypto/tls/testdata/Server-TLSv13-ResumeDisabled

    00000250  09 c7 83 51 32 e6 7b 45  bb fb 11 1f 4d 3f b8 10  |...Q2.{E....M?..|
    00000260  6a 0c 52 4c fd 20 62 0f  75 26 8a 65 67 e9 7e 56  |j.RL. b.u&.eg.~V|
    00000270  f4 ed 01 67 9e 27 0d 39  98 b4 97 44 50 f6 26 11  |...g.'.9...DP.&.|
    00000280  3c e4 40 17 5c f1 eb 85  1f 13 f9 8d 22 66 2d 2e  |<.@.\......."f-.|
    00000290  3b f8 eb 08 7d df f6 ba  7b ec 15 34 04 e2 6d aa  |;...}...{..4..m.|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 10 01:40:27 UTC 2020
    - 7.4K bytes
    - Viewed (0)
  7. cmd/storage-datatypes_gen.go

    				err = msgp.WrapError(err, "SrcPath")
    				return
    			}
    		case "dv":
    			z.DstVolume, err = dc.ReadString()
    			if err != nil {
    				err = msgp.WrapError(err, "DstVolume")
    				return
    			}
    		case "dp":
    			z.DstPath, err = dc.ReadString()
    			if err != nil {
    				err = msgp.WrapError(err, "DstPath")
    				return
    			}
    		case "fi":
    			err = z.FI.DecodeMsg(dc)
    			if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 130.6K bytes
    - Viewed (0)
  8. src/crypto/rsa/testdata/pss-vect.txt.bz2

    0b 3b 6d cd 3e da 8e 64 43 # Prime q: b6 9d ca 1c f7 d4 d7 ec 81 e7 5b 90 fc ca 87 4a bc de 12 3f d2 70 01 80 aa 90 47 9b 6e 48 de 8d 67 ed 24 f9 f1 9d 85 ba 27 58 74 f5 42 cd 20 dc 72 3e 69 63 36 4a 1f 94 25 45 2b 26 9a 67 99 fd # p's CRT exponent dP: 28 fa 13 93 86 55 be 1f 8a 15 9c ba ca 5a 72 ea 19 0c 30 08 9e 19 cd 27 4a 55 6f 36 c4 f6 e1 9f 55 4b 34 c0 77 79 04 27 bb dd 8d d3 ed e2 44 83 28 f3 85 d8 1b 30 e8 e4 3b 2f ff a0 27 86 19 79 # q's CRT exponent dQ: 1a 8b 38 f3 98 fa 71 20 49 89 8d...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 27.9K bytes
    - Viewed (0)
  9. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-classworlds/1.2-alpha-10/plexus-classworlds-1.2-alpha-10.jar

    META-INF/MANIFEST.MF Manifest-Version: 1.0 Archiver-Version: Plexus Archiver Created-By: Apache Maven Built-By: jvanzyl Build-Jdk: 1.6.0-dp org/codehaus/classworlds/BytesURLConnection.class package org.codehaus.classworlds; public synchronized class BytesURLConnection extends java.net.URLConnection { protected byte[] content; protected int offset; protected int length; public void BytesURLConnection(java.net.URL, byte[]); public void connect(); public java.io.InputStream getInputStream(); } o...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 16 20:15:40 UTC 2007
    - 41.5K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-classworlds/1.2-alpha-10/plexus-classworlds-1.2-alpha-10.jar

    META-INF/MANIFEST.MF Manifest-Version: 1.0 Archiver-Version: Plexus Archiver Created-By: Apache Maven Built-By: jvanzyl Build-Jdk: 1.6.0-dp org/codehaus/classworlds/BytesURLConnection.class package org.codehaus.classworlds; public synchronized class BytesURLConnection extends java.net.URLConnection { protected byte[] content; protected int offset; protected int length; public void BytesURLConnection(java.net.URL, byte[]); public void connect(); public java.io.InputStream getInputStream(); } o...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 41.5K bytes
    - Viewed (0)
Back to top