Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 558 for Positive (0.16 sec)

  1. common-protos/k8s.io/api/flowcontrol/v1beta2/generated.proto

      // queues exist independently at each apiserver. The value must be
      // positive.  Setting it to 1 effectively precludes
      // shufflesharding and thus makes the distinguisher method of
      // associated flow schemas irrelevant.  This field has a default
      // value of 64.
      // +optional
      optional int32 queues = 1;
    
      // `handSize` is a small positive number that configures the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1/defaults_test.go

    		},
    		{
    			desc: "cache of zero size supplied",
    			in:   &KMSConfiguration{CacheSize: &zero},
    			want: &KMSConfiguration{Timeout: defaultTimeout, CacheSize: &zero, APIVersion: defaultAPIVersion},
    		},
    		{
    			desc: "positive cache size supplied",
    			in:   &KMSConfiguration{CacheSize: &ten},
    			want: &KMSConfiguration{Timeout: defaultTimeout, CacheSize: &ten, APIVersion: defaultAPIVersion},
    		},
    		{
    			desc: "negative cache size supplied",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 20:54:24 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/DiscreteDomain.java

       *     minValue()}
       */
      @CheckForNull
      public abstract C previous(C value);
    
      /**
       * Returns a signed value indicating how many nested invocations of {@link #next} (if positive) or
       * {@link #previous} (if negative) are needed to reach {@code end} starting from {@code start}.
       * For example, if {@code end = next(next(next(start)))}, then {@code distance(start, end) == 3}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. src/math/atan.go

    		Q4 = +1.945506571482613964425e+02
    	)
    	z := x * x
    	z = z * ((((P0*z+P1)*z+P2)*z+P3)*z + P4) / (((((z+Q0)*z+Q1)*z+Q2)*z+Q3)*z + Q4)
    	z = x*z + x
    	return z
    }
    
    // satan reduces its argument (known to be positive)
    // to the range [0, 0.66] and calls xatan.
    func satan(x float64) float64 {
    	const (
    		Morebits = 6.123233995736765886130e-17 // pi/2 = PIO2 + Morebits
    		Tan3pio8 = 2.41421356237309504880      // tan(3*pi/8)
    	)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 3K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/flowcontrol/v1beta1/generated.proto

      // queues exist independently at each apiserver. The value must be
      // positive.  Setting it to 1 effectively precludes
      // shufflesharding and thus makes the distinguisher method of
      // associated flow schemas irrelevant.  This field has a default
      // value of 64.
      // +optional
      optional int32 queues = 1;
    
      // `handSize` is a small positive number that configures the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  6. tensorflow/cc/saved_model/fingerprinting_utils_test.cc

    using ::tensorflow::protobuf::RepeatedPtrField;
    using ::tensorflow::protobuf::TextFormat;
    // NOLINTNEXTLINE: clang-tidy missing-includes false positive
    using ::tensorflow::protobuf::io::ArrayInputStream;
    // NOLINTNEXTLINE: clang-tidy missing-includes false positive
    using ::tensorflow::protobuf::util::MessageDifferencer;
    using tools::proto_splitter::GetChunkMetadata;
    using tools::proto_splitter::GetRiegeliReader;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 20 22:19:55 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/filters/waitgroup.go

    // NOTE: implementations must ensure that it is thread-safe
    // when invoked from multiple goroutines.
    type RequestWaitGroup interface {
    	// Add adds delta, which may be negative, similar to sync.WaitGroup.
    	// If Add with a positive delta happens after Wait, it will return error,
    	// which prevent unsafe Add.
    	Add(delta int) error
    
    	// Done decrements the WaitGroup counter.
    	Done()
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 10 21:18:55 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/RestFilter.java

     * Support for HTTP PUT and DELETE methods.
     * </p>
     * <p><b>
     * THIS FILTER SHOULD ONLY BE USED WITH VERY GOOD SECURITY CONSTRAINTS!
     * </b></p>
     *
     * <p>
     * If the filter init parameter maxPutSize is set to a positive integer, then
     * only puts of known size less than maxPutSize will be accepted.
     * </p>
     *
     */
    // Copied from org.mortbay.servlet.RestFilter
    public class RestFilter implements Filter {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. guava/src/com/google/common/math/PairedStatsAccumulator.java

        double ySumOfSquaresOfDeltas = yStats.sumOfSquaresOfDeltas();
        checkState(xSumOfSquaresOfDeltas > 0.0);
        checkState(ySumOfSquaresOfDeltas > 0.0);
        // The product of two positive numbers can be zero if the multiplication underflowed. We
        // force a positive value by effectively rounding up to MIN_VALUE.
        double productOfSumsOfSquaresOfDeltas =
            ensurePositive(xSumOfSquaresOfDeltas * ySumOfSquaresOfDeltas);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/flowcontrol/v1beta2/generated.proto

      // queues exist independently at each apiserver. The value must be
      // positive.  Setting it to 1 effectively precludes
      // shufflesharding and thus makes the distinguisher method of
      // associated flow schemas irrelevant.  This field has a default
      // value of 64.
      // +optional
      optional int32 queues = 1;
    
      // `handSize` is a small positive number that configures the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.4K bytes
    - Viewed (0)
Back to top