Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 67 for could (0.16 sec)

  1. src/cmd/link/internal/ld/lib.go

    		// This indicates a user requested -linkmode=external.
    		// The startup code uses an import of runtime/cgo to decide
    		// whether to initialize the TLS.  So give it one. This could
    		// be handled differently but it's an unusual case.
    		if lib := loadinternal(ctxt, "runtime/cgo"); lib != nil && lib.Shlib == "" {
    			if ctxt.BuildMode == BuildModeShared || ctxt.linkShared {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

                return when (val psi = psi) {
                    is KtNameReferenceExpression -> psi.getReferencedNameAsName()
                    else -> {
                        // This could be KtArrayAccessExpression or KtOperationReferenceExpression.
                        // Note: All candidate symbols should have the same name. We go by the symbol because `calleeReference.name` will include
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/base/Preconditions.java

       * take a principled stand on this, but the amount of such code is simply overwhelming. To avoid
       * creating a lot of compile errors that users would not find to be informative, we're giving in
       * and allowing callers to pass arguments that a nullness checker believes could be null.
       *
       * We still encourage people to use requireNonNull over checkNotNull for non-precondition checks.
       */
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  4. guava/src/com/google/common/base/CharMatcher.java

        private BitSetMatcher(BitSet table, String description) {
          super(description);
          if (table.length() + Long.SIZE < table.size()) {
            table = (BitSet) table.clone();
            // If only we could actually call BitSet.trimToSize() ourselves...
          }
          this.table = table;
        }
    
        @Override
        public boolean matches(char c) {
          return table.get(c);
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types/type.go

    // embedded types. Embedded types are specified as fields with no Sym.
    func NewInterface(methods []*Field) *Type {
    	t := newType(TINTER)
    	t.SetInterface(methods)
    	for _, f := range methods {
    		// f.Type could be nil for a broken interface declaration
    		if f.Type != nil && f.Type.HasShape() {
    			t.SetHasShape(true)
    			break
    		}
    	}
    	return t
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

            )
    
            val towerContext = FirTowerDataContextProvider.create(firResolveSession, declarationToVisit)
    
            //TODO: collect all usages of available symbols in the file and prevent importing symbols that could introduce name clashes, which
            // may alter the meaning of existing code.
            val collector = ElementsToShortenCollector(
                shortenOptions,
                context,
                towerContext,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/Synchronized.java

            /*
             * toArrayImpl returns `@Nullable Object[]` rather than `Object[]` but only because it can
             * be used with collections that may contain null. This collection never contains nulls, so
             * we could return `Object[]`. But this class is private and J2KT cannot change return types
             * in overrides, so we declare `@Nullable Object[]` as the return type.
             */
            return ObjectArrays.toArrayImpl(delegate());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 53.4K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/Synchronized.java

            /*
             * toArrayImpl returns `@Nullable Object[]` rather than `Object[]` but only because it can
             * be used with collections that may contain null. This collection never contains nulls, so
             * we could return `Object[]`. But this class is private and J2KT cannot change return types
             * in overrides, so we declare `@Nullable Object[]` as the return type.
             */
            return ObjectArrays.toArrayImpl(delegate());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 57.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/debug.go

    func setupLocList(ctxt *obj.Link, f *Func, list []byte, st, en ID) ([]byte, int) {
    	start, startOK := encodeValue(ctxt, f.Entry.ID, st)
    	end, endOK := encodeValue(ctxt, f.Entry.ID, en)
    	if !startOK || !endOK {
    		// This could happen if someone writes a function that uses
    		// >65K values on a 32-bit platform. Hopefully a degraded debugging
    		// experience is ok in that case.
    		return nil, 0
    	}
    	list = appendPtr(ctxt, list, start)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/rewrite.go

    func s390xRotateParamsToAux(r s390x.RotateParams) Aux {
    	return r
    }
    
    // uaddOvf reports whether unsigned a+b would overflow.
    func uaddOvf(a, b int64) bool {
    	return uint64(a)+uint64(b) < uint64(a)
    }
    
    // loadLSymOffset simulates reading a word at an offset into a
    // read-only symbol's runtime memory. If it would read a pointer to
    // another symbol, that symbol is returned. Otherwise, it returns nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
Back to top