Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 166 for toWords (0.13 sec)

  1. staging/src/k8s.io/api/batch/v1/types.go

    	// Annotation indicating the number of failures for the index corresponding
    	// to the pod, which are counted towards the backoff limit.
    	JobIndexFailureCountAnnotation = labelPrefix + "job-index-failure-count"
    	// Annotation indicating the number of failures for the index corresponding
    	// to the pod, which don't count towards the backoff limit, according to the
    	// pod failure policy. When the annotation is absent zero is implied.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  2. pkg/apis/batch/types.go

    	// Annotation indicating the number of failures for the index corresponding
    	// to the pod, which are counted towards the backoff limit.
    	JobIndexFailureCountAnnotation = labelPrefix + "job-index-failure-count"
    	// Annotation indicating the number of failures for the index corresponding
    	// to the pod, which don't count towards the backoff limit, according to the
    	// pod failure policy. When the annotation is absent zero is implied.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  3. src/html/template/attr.go

    	"colspan":         contentTypePlain,
    	"content":         contentTypeUnsafe,
    	"contenteditable": contentTypePlain,
    	"contextmenu":     contentTypePlain,
    	"controls":        contentTypePlain,
    	"coords":          contentTypePlain,
    	"crossorigin":     contentTypeUnsafe,
    	"data":            contentTypeURL,
    	"datetime":        contentTypePlain,
    	"default":         contentTypePlain,
    	"defer":           contentTypeUnsafe,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 06 15:53:04 UTC 2021
    - 6.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/experimental/remat/rematerializer.h

        int begin;
        int end;
        int insert;
      };
    
      // Gives the peak memory location and size after inserting operations
      // according to `remat` (but doesn't actually insert them.)  Ties are broken
      // towards later locations. `remat` must be valid (see above).
      MemSpec GetPeakMemory(const RematSpec& remat = {}) const;
    
      // Gives memory profile after inserting operations according to `remat` (but
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 14 20:57:44 UTC 2023
    - 12K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/loopbce.go

    	indVarMaxInc                            // maximum value is inclusive (default: exclusive)
    	indVarCountDown                         // if set the iteration starts at max and count towards min (default: min towards max)
    )
    
    type indVar struct {
    	ind   *Value // induction variable
    	nxt   *Value // the incremented variable
    	min   *Value // minimum value, inclusive/exclusive depends on flags
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 17:37:47 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  6. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    are given, and thereby a Lens be formed, which shall make the Rays flow towards or from what Place you please.[B] So then the Meaning of this Axiom is, that if Rays fall upon any Plane or Spherical Surface or Lens, and before their Incidence flow from or towards any Point Q, they shall after Reflexion or Refraction flow from or towards the Point _q_ found by the foregoing Rules. And if the incident Rays flow from or towards several points Q, the reflected or refracted Rays shall flow from or towards...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  7. guava/src/com/google/common/math/IntMath.java

        int rem = p - q * div; // equal to p % q
    
        if (rem == 0) {
          return div;
        }
    
        /*
         * Normal Java division rounds towards 0, consistently with RoundingMode.DOWN. We just have to
         * deal with the cases where rounding towards 0 is wrong, which typically depends on the sign of
         * p / q.
         *
         * signum is 1 if p and q are both nonnegative or both negative, and -1 otherwise.
         */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/math/IntMath.java

        int rem = p - q * div; // equal to p % q
    
        if (rem == 0) {
          return div;
        }
    
        /*
         * Normal Java division rounds towards 0, consistently with RoundingMode.DOWN. We just have to
         * deal with the cases where rounding towards 0 is wrong, which typically depends on the sign of
         * p / q.
         *
         * signum is 1 if p and q are both nonnegative or both negative, and -1 otherwise.
         */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  9. src/testdata/Isaac.Newton-Opticks.txt

    shall make the Rays flow towards or from what Place you please.[B]
    
    So then the Meaning of this Axiom is, that if Rays fall upon any Plane
    or Spherical Surface or Lens, and before their Incidence flow from or
    towards any Point Q, they shall after Reflexion or Refraction flow from
    or towards the Point _q_ found by the foregoing Rules. And if the
    incident Rays flow from or towards several points Q, the reflected or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 01 16:16:21 UTC 2018
    - 553.9K bytes
    - Viewed (0)
  10. src/crypto/internal/edwards25519/scalar_test.go

    var scOne, _ = new(Scalar).SetCanonicalBytes(scOneBytes[:])
    var scMinusOne, _ = new(Scalar).SetCanonicalBytes(scalarMinusOneBytes[:])
    
    // Generate returns a valid (reduced modulo l) Scalar with a distribution
    // weighted towards high, low, and edge values.
    func (Scalar) Generate(rand *mathrand.Rand, size int) reflect.Value {
    	var s [32]byte
    	diceRoll := rand.Intn(100)
    	switch {
    	case diceRoll == 0:
    	case diceRoll == 1:
    		s = scOneBytes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:26:17 UTC 2023
    - 7.6K bytes
    - Viewed (0)
Back to top