Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 34 for DP (0.02 sec)

  1. src/strconv/ftoa.go

    	//
    	// Suppose d is not denormal, so that 2^exp <= d < 10^dp.
    	// The closest shorter number is at least 10^(dp-nd) away.
    	// The lower/upper bounds computed below are at distance
    	// at most 2^(exp-mantbits).
    	//
    	// So the number is already shortest if 10^(dp-nd) > 2^(exp-mantbits),
    	// or equivalently log2(10)*(dp-nd) > exp-mantbits.
    	// It is true if 332/100*(dp-nd) >= exp-mantbits (log2(10) > 3.32).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  2. pkg/kubelet/metrics/metrics_test.go

    			{500 * 1024 * 1024, 200},
    			// 15 GB, 6000 seconds,
    			{15 * 1024 * 1024 * 1024, 6000},
    			// 200 GB, 10000 seconds
    			{200 * 1024 * 1024 * 1024, 10000},
    		}
    
    		for _, dp := range dataPoints {
    			imageSize := int64(dp[0])
    			duration := dp[1]
    			t.Log(imageSize, duration)
    			t.Log(GetImageSizeBucket(uint64(imageSize)))
    			ImagePullDuration.WithLabelValues(GetImageSizeBucket(uint64(imageSize))).Observe(duration)
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 08 00:30:31 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. tests/integration/operator/switch_cr_test.go

    					return fmt.Errorf("got operator service: %s from cluster, expected to be removed", svc.Name)
    				}
    				if dp, _ := cs.Kube().AppsV1().Deployments(OperatorNamespace).Get(context.TODO(), "istio-operator", metav1.GetOptions{}); dp.Name != "" {
    					return fmt.Errorf("got operator deployment %s from cluster, expected to be removed", dp.Name)
    				}
    
    				// check the revision of operator which should not to be removed
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  4. src/crypto/internal/boring/rsa.go

    		return bad(fail("RSA_generate_key_fips"))
    	}
    
    	var n, e, d, p, q, dp, dq, qinv *C.GO_BIGNUM
    	C._goboringcrypto_RSA_get0_key(key, &n, &e, &d)
    	C._goboringcrypto_RSA_get0_factors(key, &p, &q)
    	C._goboringcrypto_RSA_get0_crt_params(key, &dp, &dq, &qinv)
    	return bnToBig(n), bnToBig(e), bnToBig(d), bnToBig(p), bnToBig(q), bnToBig(dp), bnToBig(dq), bnToBig(qinv), nil
    }
    
    type PublicKeyRSA struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 23:38:03 UTC 2024
    - 12K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. pkg/config/mesh/mesh.go

    		}
    		defaultConfig.DefaultConfig = pc
    	}
    
    	defaultConfig.DefaultProviders = prevDefaultProvider
    	dp, err := extractYamlField("defaultProviders", raw)
    	if err != nil {
    		return nil, multierror.Prefix(err, "failed to extract default providers")
    	}
    	if dp != "" {
    		if err := protomarshal.ApplyYAML(dp, defaultConfig.DefaultProviders); err != nil {
    			return nil, fmt.Errorf("could not parse default providers: %v", err)
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 12K bytes
    - Viewed (0)
  10. pkg/bootstrap/platform/gcp.go

    		return false
    	}
    	return true
    }
    
    // defaultPort appends the default port, if a port is not already present
    func defaultPort(hostMaybePort, dp string) string {
    	_, _, err := net.SplitHostPort(hostMaybePort)
    	if err != nil {
    		return net.JoinHostPort(hostMaybePort, dp)
    	}
    	return hostMaybePort
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 15 00:37:33 UTC 2023
    - 11.1K bytes
    - Viewed (0)
Back to top