Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 324 for seem (0.4 sec)

  1. guava/src/com/google/common/util/concurrent/AbstractFuture.java

      public void addListener(Runnable listener, Executor executor) {
        checkNotNull(listener, "Runnable was null.");
        checkNotNull(executor, "Executor was null.");
        // Checking isDone and listeners != TOMBSTONE may seem redundant, but our contract for
        // addListener says that listeners execute 'immediate' if the future isDone(). However, our
        // protocol for completing a future is to assign the value field (which sets isDone to true) and
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  2. src/cmd/compile/internal/ssa/debug.go

    			} else {
    				return false, r
    			}
    		}
    		return v.Type.IsMemory() && memInputs == 1 &&
    			regInputs == 1 && spInputs == 1, r
    	}
    
    	// OpArg*Reg values we've seen so far on our forward walk,
    	// for which we have not yet seen a corresponding spill.
    	regArgs := make([]ID, 0, 32)
    
    	// removeReg tries to remove a value from regArgs, returning true
    	// if found and removed, or false otherwise.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

              K[] sortedKs = (K[]) sortedKeys;
              Arrays.sort(sortedKs, comparator);
              Object[] sortedValues = new Object[size];
    
              // We might, somehow, be able to reorder values in-place.  But it doesn't seem like
              // there's a way around creating the separate sortedKeys array, and if we're allocating
              // one array of size n, we might as well allocate two -- to say nothing of the allocation
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
  4. src/crypto/tls/conn.go

    			// an 8 bytes nonce but its nonces must be unpredictable (see RFC
    			// 5246, Appendix F.3), forcing us to use randomness. That's not
    			// 3DES' biggest problem anyway because the birthday bound on block
    			// collision is reached first due to its similarly small block size
    			// (see the Sweet32 attack).
    			copy(explicitNonce, hc.seq[:])
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/prove.go

    			// No point in considering the other branch.
    			// (It *is* possible for both to be
    			// unsatisfiable since the fact table is
    			// incomplete. We could turn this into a
    			// BlockExit, but it doesn't seem worth it.)
    			break
    		}
    	}
    }
    
    func removeBranch(b *Block, branch branch) {
    	c := b.Controls[0]
    	if b.Func.pass.debug > 0 {
    		verb := "Proved"
    		if branch == positive {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/buildlist.go

    				m := module.Version{Path: p, Version: mg.g.Selected(p)}
    				if !seen[m] {
    					needsEnqueueing[m] = true
    					continue
    				}
    				reqs, _ := mg.g.RequiredBy(m)
    				for _, r := range reqs {
    					s := module.Version{Path: r.Path, Version: mg.g.Selected(r.Path)}
    					if gover.ModCompare(r.Path, s.Version, r.Version) > 0 && !seen[s] {
    						needsEnqueueing[s] = true
    					}
    				}
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  7. src/time/time.go

    // that the routines are only valid for years >= 1. However, the
    // routines would then be invalid when displaying the epoch in time zones
    // west of UTC, since it is year 0. It doesn't seem tenable to say that
    // printing the zero time correctly isn't supported in half the time
    // zones. By comparison, it's reasonable to mishandle some times in
    // the year -292277022399.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  8. src/runtime/mgcscavenge.go

    	// easier to reason about for tuning purposes.
    	s.sleepController = piController{
    		// Tuned loosely via Ziegler-Nichols process.
    		kp: 0.3375,
    		ti: 3.2e6,
    		tt: 1e9, // 1 second reset time.
    
    		// These ranges seem wide, but we want to give the controller plenty of
    		// room to hunt for the optimal value.
    		min: 0.001,  // 1:1000
    		max: 1000.0, // 1000:1
    	}
    	s.sleepRatio = startingScavSleepRatio
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //
    //     CompileAssert<bool(expr)>
    //
    //   instead, these compilers will refuse to compile
    //
    //     GTEST_COMPILE_ASSERT_(5 > 0, some_message);
    //
    //   (They seem to think the ">" in "5 > 0" marks the end of the
    //   template argument list.)
    //
    // - The array size is (bool(expr) ? 1 : -1), instead of simply
    //
    //     ((expr) ? 1 : -1).
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ppc64/ssa.go

    		ssagen.AddAux(&fromAddr, v)
    
    		genAddr := false
    
    		switch fromAddr.Name {
    		case obj.NAME_EXTERN, obj.NAME_STATIC:
    			// Special case for a rule combines the bytes of gostring.
    			// The v alignment might seem OK, but we don't want to load it
    			// using an offset because relocation comes later.
    			genAddr = strings.HasPrefix(fromAddr.Sym.Name, "go:string") || v.Type.Alignment()%4 != 0 || fromAddr.Offset%4 != 0
    		default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
Back to top