Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 65 for DP (0.03 sec)

  1. src/crypto/x509/pkcs1.go

    		version = 1
    	}
    
    	priv := pkcs1PrivateKey{
    		Version: version,
    		N:       key.N,
    		E:       key.PublicKey.E,
    		D:       key.D,
    		P:       key.Primes[0],
    		Q:       key.Primes[1],
    		Dp:      key.Precomputed.Dp,
    		Dq:      key.Precomputed.Dq,
    		Qinv:    key.Precomputed.Qinv,
    	}
    
    	priv.AdditionalPrimes = make([]pkcs1AdditionalRSAPrime, len(key.Precomputed.CRTValues))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  2. docs_src/metadata/tutorial001.py

        version="0.0.1",
        terms_of_service="http://example.com/terms/",
        contact={
            "name": "Deadpoolio the Amazing",
            "url": "http://x-force.example.com/contact/",
            "email": "dp@x-force.example.com",
        },
        license_info={
            "name": "Apache 2.0",
            "url": "https://www.apache.org/licenses/LICENSE-2.0.html",
        },
    )
    
    
    @app.get("/items/")
    async def read_items():
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 30 18:25:16 UTC 2023
    - 805 bytes
    - Viewed (0)
  3. pkg/scheduler/apis/config/validation/validation.go

    // config version or earlier.
    func isPluginInvalid(apiVersion string, name string) (bool, string) {
    	for _, dp := range invalidPluginsByVersion {
    		for _, plugin := range dp.plugins {
    			if name == plugin {
    				return true, dp.schemeGroupVersion
    			}
    		}
    		if apiVersion == dp.schemeGroupVersion {
    			break
    		}
    	}
    	return false, ""
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 06:27:01 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  4. docs_src/metadata/tutorial001_1.py

        version="0.0.1",
        terms_of_service="http://example.com/terms/",
        contact={
            "name": "Deadpoolio the Amazing",
            "url": "http://x-force.example.com/contact/",
            "email": "dp@x-force.example.com",
        },
        license_info={
            "name": "Apache 2.0",
            "identifier": "MIT",
        },
    )
    
    
    @app.get("/items/")
    async def read_items():
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 30 18:25:16 UTC 2023
    - 767 bytes
    - Viewed (0)
  5. src/crypto/rsa/rsa.go

    			return
    		}
    	}
    
    	// Fill in the backwards-compatibility *big.Int values.
    	if priv.Precomputed.Dp != nil {
    		return
    	}
    
    	priv.Precomputed.Dp = new(big.Int).Sub(priv.Primes[0], bigOne)
    	priv.Precomputed.Dp.Mod(priv.D, priv.Precomputed.Dp)
    
    	priv.Precomputed.Dq = new(big.Int).Sub(priv.Primes[1], bigOne)
    	priv.Precomputed.Dq.Mod(priv.D, priv.Precomputed.Dq)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  6. src/crypto/internal/boring/notboring.go

    }
    func EncryptRSANoPadding(pub *PublicKeyRSA, msg []byte) ([]byte, error) {
    	panic("boringcrypto: not available")
    }
    func GenerateKeyRSA(bits int) (N, E, D, P, Q, Dp, Dq, Qinv BigInt, err error) {
    	panic("boringcrypto: not available")
    }
    func NewPrivateKeyRSA(N, E, D, P, Q, Dp, Dq, Qinv BigInt) (*PrivateKeyRSA, error) {
    	panic("boringcrypto: not available")
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/devicemanager/endpoint_test.go

    		for _, d := range resp.Devices {
    			newDevs = append(newDevs, *d)
    		}
    		callback(resourceName, newDevs)
    	}
    
    	var dp plugin.DevicePlugin
    	var wg sync.WaitGroup
    	wg.Add(1)
    	m.pluginConnected = func(r string, c plugin.DevicePlugin) error {
    		dp = c
    		wg.Done()
    		return nil
    	}
    
    	p := plugin.NewDevicePluginStub(devs, socket, resourceName, false, false)
    	err := p.Start()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 16:05:48 UTC 2022
    - 7.6K bytes
    - Viewed (0)
  8. tests/test_tutorial/test_metadata/test_tutorial001_1.py

                "termsOfService": "http://example.com/terms/",
                "contact": {
                    "name": "Deadpoolio the Amazing",
                    "url": "http://x-force.example.com/contact/",
                    "email": "dp@x-force.example.com",
                },
                "license": {
                    "name": "Apache 2.0",
                    "identifier": "MIT",
                },
                "version": "0.0.1",
            },
            "paths": {
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 30 18:25:16 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. tests/test_tutorial/test_metadata/test_tutorial001.py

                "termsOfService": "http://example.com/terms/",
                "contact": {
                    "name": "Deadpoolio the Amazing",
                    "url": "http://x-force.example.com/contact/",
                    "email": "dp@x-force.example.com",
                },
                "license": {
                    "name": "Apache 2.0",
                    "url": "https://www.apache.org/licenses/LICENSE-2.0.html",
                },
                "version": "0.0.1",
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 30 18:25:16 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/experimental/tac/transforms/pick_subgraphs.cc

    //  1) Build subgraphs
    //    1.1) Collect output subgraphs.
    //    1.2) Build `Subgraph` and their "alternative view" from FuncOp.
    //  2) Pick subgraphs
    //    2.1) Populate the "dp table" for (subgraph, hardware).
    //    2.2) Make decisions based on the populated dp table.
    //    2.3) Rewire the whole graph based on the desicions.
    //
    namespace mlir {
    namespace TFL {
    namespace tac {
    namespace {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 24 15:10:02 UTC 2022
    - 19.7K bytes
    - Viewed (0)
Back to top