Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 159 for conservative (0.18 sec)

  1. android/guava/src/com/google/common/reflect/TypeToken.java

       *     List.class.getMethod("get", int.class).getGenericReturnType())
       * => String.class
       * }</pre>
       */
      public final TypeToken<?> resolveType(Type type) {
        checkNotNull(type);
        // Being conservative here because the user could use resolveType() to resolve a type in an
        // invariant context.
        return of(getInvariantTypeResolver().resolveType(type));
      }
    
      private TypeToken<?> resolveSupertype(Type type) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  2. src/math/big/nat.go

    func karatsuba(z, x, y nat) {
    	n := len(y)
    
    	// Switch to basic multiplication if numbers are odd or small.
    	// (n is always even if karatsubaThreshold is even, but be
    	// conservative)
    	if n&1 != 0 || n < karatsubaThreshold || n < 2 {
    		basicMul(z, x, y)
    		return
    	}
    	// n&1 == 0 && n >= karatsubaThreshold && n >= 2
    
    	// Karatsuba multiplication is based on the observation that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  3. guava/src/com/google/common/reflect/TypeToken.java

       *     List.class.getMethod("get", int.class).getGenericReturnType())
       * => String.class
       * }</pre>
       */
      public final TypeToken<?> resolveType(Type type) {
        checkNotNull(type);
        // Being conservative here because the user could use resolveType() to resolve a type in an
        // invariant context.
        return of(getInvariantTypeResolver().resolveType(type));
      }
    
      private TypeToken<?> resolveSupertype(Type type) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  4. src/go/printer/printer.go

    			p.commentOffset = p.posFor(list[0].Pos()).Offset
    			p.commentNewline = p.commentsHaveNewline(list)
    			return
    		}
    		// we should not reach here (correct ASTs don't have empty
    		// ast.CommentGroup nodes), but be conservative and try again
    	}
    	// no more comments
    	p.commentOffset = infinity
    }
    
    // commentBefore reports whether the current comment group occurs
    // before the next position in the source code and printing it does
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 41.6K bytes
    - Viewed (0)
  5. src/runtime/stack.go

    	// is about to try to preempt gp. Read it just once and use that same
    	// value now and below.
    	stackguard0 := atomic.Loaduintptr(&gp.stackguard0)
    
    	// Be conservative about where we preempt.
    	// We are interested in preempting user Go code, not runtime code.
    	// If we're holding locks, mallocing, or preemption is disabled, don't
    	// preempt.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  6. src/net/http/transport.go

    		// This is the documented way to disable http2 on a
    		// Transport.
    		return
    	}
    	if !t.ForceAttemptHTTP2 && (t.TLSClientConfig != nil || t.Dial != nil || t.DialContext != nil || t.hasCustomTLSDialer()) {
    		// Be conservative and don't automatically enable
    		// http2 if they've specified a custom TLS config or
    		// custom dialers. Let them opt-in themselves via
    		// http2.ConfigureTransport so we don't surprise them
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

          rewriter.replaceOp(identity, identity.getInput());
          return success();
        }
        // Replace the op with the input if output is only used by TF ops.
        // Currently this is more on the conservative side since we need to ensure
        // every consumer op to be a TF op before applying this pattern. We can
        // consider to revisit this in the future if this turns out to be too
        // restrictive.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/regalloc.go

    			// allocate it after all the input registers, but before
    			// the input registers are freed via advanceUses below.
    			// (Not all instructions need that distinct part, but it is conservative.)
    			if opcodeTable[v.Op].needIntTemp {
    				m := s.allocatable & s.f.Config.gpRegMask
    				if m&^desired.avoid&^s.nospill != 0 {
    					m &^= desired.avoid
    				}
    				tmpReg = s.allocReg(m, &tmpVal)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  9. src/crypto/tls/conn.go

    }
    
    // sendAlert sends a TLS alert message.
    func (c *Conn) sendAlert(err alert) error {
    	c.out.Lock()
    	defer c.out.Unlock()
    	return c.sendAlertLocked(err)
    }
    
    const (
    	// tcpMSSEstimate is a conservative estimate of the TCP maximum segment
    	// size (MSS). A constant is used, rather than querying the kernel for
    	// the actual MSS, to avoid complexity. The value here is the IPv6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/prove.go

    		// fact table for this because we don't know what the
    		// facts of b.Preds[1] are (in general, b.Preds[1] is
    		// a loop-back edge, so we haven't even been there
    		// yet). As a conservative approximation, we look for
    		// this condition in the predecessor chain until we
    		// hit a join point.
    		uniquePred := func(b *Block) *Block {
    			if len(b.Preds) == 1 {
    				return b.Preds[0].b
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
Back to top