Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 980 for checkIn (0.23 sec)

  1. android/guava/src/com/google/common/util/concurrent/AbstractTransformFuture.java

    import java.util.concurrent.Executor;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /** Implementations of {@code Futures.transform*}. */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    @SuppressWarnings("nullness") // TODO(b/147136275): Remove once our checker understands & and |.
    abstract class AbstractTransformFuture<
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/base/Suppliers.java

        public T get() {
          // A 2-field variant of Double Checked Locking.
          if (!initialized) {
            synchronized (this) {
              if (!initialized) {
                T t = delegate.get();
                value = t;
                initialized = true;
                return t;
              }
            }
          }
          // This is safe because we checked `initialized`.
          return uncheckedCastNullableTToT(value);
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/validtype.go

    // path of named types in a cycle, it is only needed for error reporting.
    func (check *Checker) validType0(pos syntax.Pos, typ Type, nest, path []*Named) bool {
    	typ = Unalias(typ)
    
    	if check.conf.Trace {
    		if t, _ := typ.(*Named); t != nil && t.obj != nil /* obj should always exist but be conservative */ {
    			pos = t.obj.pos
    		}
    		check.indent++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 13:22:37 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. src/go/types/validtype.go

    // path of named types in a cycle, it is only needed for error reporting.
    func (check *Checker) validType0(pos token.Pos, typ Type, nest, path []*Named) bool {
    	typ = Unalias(typ)
    
    	if check.conf._Trace {
    		if t, _ := typ.(*Named); t != nil && t.obj != nil /* obj should always exist but be conservative */ {
    			pos = t.obj.pos
    		}
    		check.indent++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/index.go

    		x.typ = Typ[Invalid]
    	}
    
    	check.index(index, length)
    	return false
    }
    
    func (check *Checker) sliceExpr(x *operand, e *syntax.SliceExpr) {
    	check.expr(nil, x, e.X)
    	if x.mode == invalid {
    		check.use(e.Index[:]...)
    		return
    	}
    
    	valid := false
    	length := int64(-1) // valid if >= 0
    	switch u := coreString(x.typ).(type) {
    	case nil:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 15 16:16:58 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  6. src/go/types/index.go

    		x.typ = Typ[Invalid]
    	}
    
    	check.index(index, length)
    	return false
    }
    
    func (check *Checker) sliceExpr(x *operand, e *ast.SliceExpr) {
    	check.expr(nil, x, e.X)
    	if x.mode == invalid {
    		check.use(e.Low, e.High, e.Max)
    		return
    	}
    
    	valid := false
    	length := int64(-1) // valid if >= 0
    	switch u := coreString(x.typ).(type) {
    	case nil:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:17:05 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/base/Suppliers.java

        public T get() {
          // A 2-field variant of Double Checked Locking.
          if (!initialized) {
            synchronized (this) {
              if (!initialized) {
                T t = delegate.get();
                value = t;
                initialized = true;
                return t;
              }
            }
          }
          // This is safe because we checked `initialized`.
          return uncheckedCastNullableTToT(value);
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/compile.go

    If the "dump" flag is specified, the output is written on a file named
    <phase>__<function_name>_<seq>.dump; otherwise it is directed to stdout.
    
    Examples:
    
        -d=ssa/check/on
    enables checking after each phase
    
    	-d=ssa/check/seed=1234
    enables checking after each phase, using 1234 to seed the PRNG
    used for value order randomization
    
        -d=ssa/all/time
    enables time reporting for all phases
    
        -d=ssa/prove/debug=2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:55:18 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  9. src/cmd/fix/typecheck.go

    	"os"
    	"os/exec"
    	"path/filepath"
    	"reflect"
    	"runtime"
    	"strings"
    )
    
    // Partial type checker.
    //
    // The fact that it is partial is very important: the input is
    // an AST and a description of some type information to
    // assume about one or more packages, but not all the
    // packages that the program imports. The checker is
    // expected to do as much as it can with what it has been
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 16 22:02:42 UTC 2022
    - 20.1K bytes
    - Viewed (0)
  10. src/internal/zstd/fse.go

    		// baseline 1, basebits 0, and one entry that is baseline 2,
    		// basebits 1. All other entries will have baseline >= 4
    		// basebits >= 2.
    		//
    		// So we can check for RFC offset <= 3 by checking for
    		// basebits <= 1. That means that we can subtract 3 here
    		// and not worry about doing it in the hot loop.
    
    		be.baseline = 1 << e.sym
    		if e.sym >= 2 {
    			be.baseline -= 3
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 16:44:06 UTC 2023
    - 12.2K bytes
    - Viewed (0)
Back to top