Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 169 for Unbounded (0.19 sec)

  1. CHANGELOG/CHANGELOG-1.21.md

    - The default delegating authorization options now allow unauthenticated access to healthz, readyz,...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 07:03:14 UTC 2022
    - 367.3K bytes
    - Viewed (0)
  2. src/cmd/go/internal/robustio/robustio.go

    // Package robustio wraps I/O functions that are prone to failure on Windows,
    // transparently retrying errors up to an arbitrary timeout.
    //
    // Errors are classified heuristically and retries are bounded, so the functions
    // in this package do not completely eliminate spurious errors. However, they do
    // significantly reduce the rate of failure in practice.
    //
    // If so, the error will likely wrap one of:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/legalize_variables.cc

      return utils::IsSupportedVariableType(type);
    }
    
    #include "tensorflow/compiler/mlir/lite/transforms/generated_legalize_variables.inc"
    
    // Pass which legalizes TF variables which are already passed as bounded
    // arguments to functions, to TFLite variables.
    class LegalizeVariablesPass
        : public impl::LegalizeVariablesPassBase<LegalizeVariablesPass> {
     public:
      MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(LegalizeVariablesPass)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. src/math/expm1.go

    //      We use a special Reme algorithm on [0,0.347] to generate
    //      a polynomial of degree 5 in r*r to approximate R1. The
    //      maximum error of this polynomial approximation is bounded
    //      by 2**-61. In other words,
    //          R1(z) ~ 1.0 + Q1*z + Q2*z**2 + Q3*z**3 + Q4*z**4 + Q5*z**5
    //      where   Q1  =  -1.6666666666666567384E-2,
    //              Q2  =   3.9682539681370365873E-4,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/ImmutableRangeSet.java

      private final class ComplementRanges extends ImmutableList<Range<C>> {
        // True if the "positive" range set is empty or bounded below.
        private final boolean positiveBoundedBelow;
    
        // True if the "positive" range set is empty or bounded above.
        private final boolean positiveBoundedAbove;
    
        private final int size;
    
        ComplementRanges() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/ImmutableRangeSet.java

      private final class ComplementRanges extends ImmutableList<Range<C>> {
        // True if the "positive" range set is empty or bounded below.
        private final boolean positiveBoundedBelow;
    
        // True if the "positive" range set is empty or bounded above.
        private final boolean positiveBoundedAbove;
    
        private final int size;
    
        ComplementRanges() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/text/unicode/norm/readwriter.go

    // write. The remaining bytes will be written on close.
    func (w *normWriter) Write(data []byte) (n int, err error) {
    	// Process data in pieces to keep w.buf size bounded.
    	const chunk = 4000
    
    	for len(data) > 0 {
    		// Normalize into w.buf.
    		m := len(data)
    		if m > chunk {
    			m = chunk
    		}
    		w.rb.src = inputBytes(data[:m])
    		w.rb.nsrc = m
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/text/unicode/norm/readwriter.go

    // write. The remaining bytes will be written on close.
    func (w *normWriter) Write(data []byte) (n int, err error) {
    	// Process data in pieces to keep w.buf size bounded.
    	const chunk = 4000
    
    	for len(data) > 0 {
    		// Normalize into w.buf.
    		m := len(data)
    		if m > chunk {
    			m = chunk
    		}
    		w.rb.src = inputBytes(data[:m])
    		w.rb.nsrc = m
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 2.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/walk/expr.go

    	// if range of type cannot exceed static array bound,
    	// disable bounds check.
    	if n.Bounded() {
    		return n
    	}
    	t := n.X.Type()
    	if t != nil && t.IsPtr() {
    		t = t.Elem()
    	}
    	if t.IsArray() {
    		n.SetBounded(bounded(r, t.NumElem()))
    		if base.Flag.LowerM != 0 && n.Bounded() && !ir.IsConst(n.Index, constant.Int) {
    			base.Warn("index bounds check elided")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  10. src/math/log.go

    //	     	 = 2s + s*R
    //      We use a special Reme algorithm on [0,0.1716] to generate
    //	a polynomial of degree 14 to approximate R.  The maximum error
    //	of this polynomial approximation is bounded by 2**-58.45. In
    //	other words,
    //		        2      4      6      8      10      12      14
    //	    R(z) ~ L1*s +L2*s +L3*s +L4*s +L5*s  +L6*s  +L7*s
    //	(the values of L1 to L7 are listed in the program) and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 3.9K bytes
    - Viewed (0)
Back to top