Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 105 for formaction (0.14 sec)

  1. guava/src/com/google/common/collect/Table.java

    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * A collection that associates an ordered pair of keys, called a row key and a column key, with a
     * single value. A table may be sparse, with only a small fraction of row key / column key pairs
     * possessing a corresponding value.
     *
     * <p>The mappings corresponding to a given row key may be viewed as a {@link Map} whose keys are
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Jun 17 14:40:53 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/flowcontrol/v1beta2/generated.proto

      // at the expense of every other priority level.
      // This field has a default value of zero.
      // +optional
      optional int32 nominalConcurrencyShares = 1;
    
      // `lendablePercent` prescribes the fraction of the level's NominalCL that
      // can be borrowed by other priority levels.  This value of this
      // field must be between 0 and 100, inclusive, and it defaults to 0.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/flowcontrol/v1beta2/types_swagger_doc_generated.go

    	"lendablePercent":          "`lendablePercent` prescribes the fraction of the level's NominalCL that can be borrowed by other priority levels.  This value of this field must be between 0 and 100, inclusive, and it defaults to 0. The number of seats that other levels can borrow from this level, known as this level's...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:27:57 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/flowcontrol/v1/generated.proto

      // at the expense of every other priority level.
      // This field has a default value of zero.
      // +optional
      optional int32 nominalConcurrencyShares = 1;
    
      // `lendablePercent` prescribes the fraction of the level's NominalCL that
      // can be borrowed by other priority levels.  This value of this
      // field must be between 0 and 100, inclusive, and it defaults to 0.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/flowcontrol/v1beta1/generated.proto

      // at the expense of every other priority level.
      // This field has a default value of zero.
      // +optional
      optional int32 nominalConcurrencyShares = 1;
    
      // `lendablePercent` prescribes the fraction of the level's NominalCL that
      // can be borrowed by other priority levels.  This value of this
      // field must be between 0 and 100, inclusive, and it defaults to 0.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  6. src/main/resources/fess_message_en.properties

    constraints.DecimalMin.message  = {item} must be greater than ${inclusive == true ? 'or equal to ' : ''}{value}.
    constraints.Digits.message      = {item} is numeric value out of bounds (<{integer} digits>.<{fraction} digits> expected).
    constraints.Future.message      = {item} must be in the future.
    constraints.Max.message         = {item} must be less than or equal to {value}.
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Mar 18 03:05:44 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  7. src/main/resources/fess_message.properties

    constraints.DecimalMin.message  = {item} must be greater than ${inclusive == true ? 'or equal to ' : ''}{value}.
    constraints.Digits.message      = {item} is numeric value out of bounds (<{integer} digits>.<{fraction} digits> expected).
    constraints.Future.message      = {item} must be in the future.
    constraints.Max.message         = {item} must be less than or equal to {value}.
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Mar 18 03:05:44 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  8. src/hash/crc64/crc64_test.go

    	{0xd402559dfe9b70c, 0x73cef1666185c13f, "The fugacity of a constituent in a mixture of gases at a given temperature is proportional to its mole fraction.  Lewis-Randall Rule", "crc\x02s\xba\x84\x84\xbb\xcd]\xef\u007f\xae\xb9\xbaX=\x19v", "crc\x02`&\x9aR\xe1\xb7\xfee\xb2˦Y\xc5\xd0G\x03"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 25 06:32:12 UTC 2018
    - 9.9K bytes
    - Viewed (0)
  9. src/math/big/natconv_test.go

    		}
    		if err != nil {
    			t.Errorf("scan%+v\n\tgot error = %s", a, err)
    		}
    	}
    }
    
    var natScanTests = []struct {
    	s     string // string to be scanned
    	base  int    // input base
    	frac  bool   // fraction ok
    	x     nat    // expected nat
    	b     int    // expected base
    	count int    // expected digit count
    	err   error  // expected error
    	next  rune   // next character (or 0, if at EOF)
    }{
    	// invalid: no digits
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 12:54:00 UTC 2019
    - 16.8K bytes
    - Viewed (0)
  10. guava/src/com/google/common/hash/Hashing.java

       * </ul>
       *
       * <p>This method is suitable for the common use case of dividing work among buckets that meet the
       * following conditions:
       *
       * <ul>
       *   <li>You want to assign the same fraction of inputs to each bucket.
       *   <li>When you reduce the number of buckets, you can accept that the most recently added
       *       buckets will be removed first. More concretely, if you are dividing traffic among tasks,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 09 00:37:15 UTC 2024
    - 32.3K bytes
    - Viewed (0)
Back to top