Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 9,026 for gives (0.05 sec)

  1. pkg/scheduler/framework/plugins/tainttoleration/taint_toleration.go

    	}
    
    	s, ok := c.(*preScoreState)
    	if !ok {
    		return nil, fmt.Errorf("%+v convert to tainttoleration.preScoreState error", c)
    	}
    	return s, nil
    }
    
    // CountIntolerableTaintsPreferNoSchedule gives the count of intolerable taints of a pod with effect PreferNoSchedule
    func countIntolerableTaintsPreferNoSchedule(taints []v1.Taint, tolerations []v1.Toleration) (intolerableTaints int) {
    	for _, taint := range taints {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. src/math/cmplx/tan.go

    func reducePi(x float64) float64 {
    	// reduceThreshold is the maximum value of x where the reduction using
    	// Cody-Waite reduction still gives accurate results. This threshold
    	// is set by t*PIn being representable as a float64 without error
    	// where t is given by t = floor(x * (1 / Pi)) and PIn are the leading partial
    	// terms of Pi. Since the leading terms, PI1 and PI2 below, have 30 and 32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 03:16:37 UTC 2020
    - 8.5K bytes
    - Viewed (0)
  3. docs/multi-user/README.md

    ```
    {
      "Version": "2012-10-17",
      "Statement": [
    	{
    	  "Action": ["s3:ListBucket"],
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Mar 21 06:38:06 UTC 2023
    - 8K bytes
    - Viewed (0)
  4. src/crypto/internal/edwards25519/edwards25519_test.go

    	type test struct {
    		name                string
    		encoding, canonical string
    	}
    	tests := []test{
    		// Points with x = 0 and the sign bit set. With x = 0 the curve equation
    		// gives y² = 1, so y = ±1. 1 has two valid encodings.
    		{
    			"y=1,sign-",
    			"0100000000000000000000000000000000000000000000000000000000000080",
    			"0100000000000000000000000000000000000000000000000000000000000000",
    		},
    		{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 10 18:45:00 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  5. cmd/kube-controller-manager/app/controllermanager.go

    	// ClientBuilder will provide a client for this controller to use
    	ClientBuilder clientbuilder.ControllerClientBuilder
    
    	// InformerFactory gives access to informers for the controller.
    	InformerFactory informers.SharedInformerFactory
    
    	// ObjectOrMetadataInformerFactory gives access to informers for typed resources
    	// and dynamic resources by their metadata. All generic controllers currently use
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 13:03:53 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  6. docs/distributed/DESIGN.md

    }
    ```
    
    Input for the key is the object name specified in `PutObject()`, returns a unique index. This index is one of the erasure sets where the object will reside. This function is a consistent hash for a given object name i.e for a given object name the index returned is always the same.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Aug 15 23:04:20 UTC 2023
    - 8K bytes
    - Viewed (0)
  7. internal/grid/types.go

    	return &b
    }
    
    // NewBytesCap returns an empty Bytes with the given capacity.
    func NewBytesCap(size int) *Bytes {
    	b := Bytes(GetByteBufferCap(size))
    	return &b
    }
    
    // NewBytesWith returns a new Bytes with the provided content.
    // When sent as a parameter, the caller gives up ownership of the byte slice.
    // When returned as response, the handler also gives up ownership of the byte slice.
    func NewBytesWith(b []byte) *Bytes {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 01 23:42:09 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-spi.h

    };
    
    namespace internal {
    
    // A helper class for implementing EXPECT_FATAL_FAILURE() and
    // EXPECT_NONFATAL_FAILURE().  Its destructor verifies that the given
    // TestPartResultArray contains exactly one failure that has the given
    // type and contains the given substring.  If that's not the case, a
    // non-fatal failure will be generated.
    class GTEST_API_ SingleFailureChecker {
     public:
      // The constructor remembers the arguments.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-spi.h

    };
    
    namespace internal {
    
    // A helper class for implementing EXPECT_FATAL_FAILURE() and
    // EXPECT_NONFATAL_FAILURE().  Its destructor verifies that the given
    // TestPartResultArray contains exactly one failure that has the given
    // type and contains the given substring.  If that's not the case, a
    // non-fatal failure will be generated.
    class GTEST_API_ SingleFailureChecker {
     public:
      // The constructor remembers the arguments.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  10. pilot/pkg/xds/debug_test.go

    	// This is a mostly horrible hack because the single pilot instance is shared across multiple tests
    	// This makes this test contaminated by others and gives it horrible timing windows
    	attempts := 5
    	for i := 0; i < attempts; i++ {
    		gotStatus := getSyncStatus(t, s)
    		var errorHandler func(string, ...any)
    		if i == attempts-1 {
    			errorHandler = t.Errorf
    		} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top