Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 220 for Willing (0.73 sec)

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

       * @param timeoutDuration with timeoutUnit, the maximum length of time that callers are willing to
       *     wait on each method call to the proxy
       * @param timeoutUnit with timeoutDuration, the maximum length of time that callers are willing to
       *     wait on each method call to the proxy
       * @return a time-limiting proxy
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 18:32:03 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/branchelim.go

    			if !canCondSelect(v, f.Config.arch, loadAddr) {
    				return false
    			}
    		}
    	}
    	if !hasphis {
    		return false
    	}
    
    	// Pick some upper bound for the number of instructions
    	// we'd be willing to execute just to generate a dead
    	// argument to CondSelect. In the worst case, this is
    	// the number of useless instructions executed.
    	const maxfuseinsts = 2
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 30 17:46:51 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/op.go

    // therefore do this lazily).
    //
    // TODO: there is a Clever Hack that allows pre-generation of a small-ish number of the slices
    // of inputInfo and outputInfo used here, provided that we are willing to reorder the inputs
    // and outputs from calls, so that all integer registers come first, then all floating registers.
    // At this point (active development of register ABI) that is very premature,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 15:29:10 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modfetch/codehost/git.go

    // ancestors of those commits.
    //
    // We only fetch heads and tags, not arbitrary other commits: we don't want to
    // pull in off-branch commits (such as rejected GitHub pull requests) that the
    // server may be willing to provide. (See the comments within the stat method
    // for more detail.)
    //
    // fetchRefsLocked requires that r.mu remain locked for the duration of the call.
    func (r *gitRepo) fetchRefsLocked(ctx context.Context) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 22:10:38 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/Ordering.java

         * can do magic to mock static method calls still can't do so for a system
         * class, so we need the indirection. In production, Hotspot should still
         * recognize that the call is 1-morphic and should still be willing to
         * inline it if necessary.
         */
        int identityHashCode(Object object) {
          return System.identityHashCode(object);
        }
      }
    
      // Constructor
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  6. apache-maven/src/main/appended-resources/licenses/CDDL+GPLv2-with-classpath-exception.txt

    contributions to the wide range of software distributed through that
    system in reliance on consistent application of that system; it is up to
    the author/donor to decide if he or she is willing to distribute
    software through any other system and a licensee cannot impose that choice.
    
    This section is intended to make thoroughly clear what is believed to be
    a consequence of the rest of this License.
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/Ordering.java

         * can do magic to mock static method calls still can't do so for a system
         * class, so we need the indirection. In production, Hotspot should still
         * recognize that the call is 1-morphic and should still be willing to
         * inline it if necessary.
         */
        int identityHashCode(Object object) {
          return System.identityHashCode(object);
        }
      }
    
      // Constructor
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/query.go

    				if err != nil {
    					return nil, nil, err
    				}
    				if ok {
    					// The last compatible version has a go.mod file, so that's the
    					// highest version we're willing to consider. Don't bother even
    					// looking at higher versions, because they're all +incompatible from
    					// here onward.
    					break
    				}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 11 22:29:11 UTC 2023
    - 44.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types/size.go

    			base.Fatalf("invalid alignment for %v", t)
    		}
    		t.align = uint8(w)
    	}
    
    	base.Pos = lno
    
    	ResumeCheckSize()
    }
    
    // CalcStructSize calculates the size of t,
    // filling in t.width, t.align, t.intRegs, and t.floatRegs,
    // even if size calculation is otherwise disabled.
    func CalcStructSize(t *Type) {
    	var maxAlign uint8 = 1
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 15K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/RangeSet.java

      @CheckForNull
      Range<C> rangeContaining(C value);
    
      /**
       * Returns {@code true} if there exists a non-empty range enclosed by both a member range in this
       * range set and the specified range. This is equivalent to calling {@code
       * subRangeSet(otherRange)} and testing whether the resulting range set is non-empty.
       *
       * @since 20.0
       */
      boolean intersects(Range<C> otherRange);
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top