Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 88 for jasper (0.13 sec)

  1. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/jquery.jstree.js

    					else { obj.data("jstree_is_loading",true); }
    				}
    				switch(!0) {
    					case (!s.data && !s.ajax): throw "Neither data nor ajax settings supplied.";
    					// function option added here for easier model integration (also supporting async - see callback)
    					case ($.isFunction(s.data)):
    						s.data.call(this, obj, $.proxy(function (d) {
    							d = this._parse_json(d, obj);
    							if(!d) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 09:03:42 UTC 2021
    - 49.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/expr.go

    }
    
    func isShift(op syntax.Operator) bool {
    	return op == syntax.Shl || op == syntax.Shr
    }
    
    func isComparison(op syntax.Operator) bool {
    	// Note: tokens are not ordered well to make this much easier
    	switch op {
    	case syntax.Eql, syntax.Neq, syntax.Lss, syntax.Leq, syntax.Gtr, syntax.Geq:
    		return true
    	}
    	return false
    }
    
    // updateExprType updates the type of x to typ and invokes itself
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    :metadata-file-spec: https://github.com/gradle/gradle/blob/master/platforms/documentation/docs/src/docs/design/gradle-module-metadata-1.0-specification.md
    
    [[java_testing]]
    = Testing in Java & JVM projects
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  4. src/time/time.go

    	// Special case: d is a multiple of 1 second.
    	case d%Second == 0:
    		d1 := int64(d / Second)
    		qmod2 = int(sec/d1) & 1
    		r = Duration(sec%d1)*Second + Duration(nsec)
    
    	// General case.
    	// This could be faster if more cleverness were applied,
    	// but it's really only here to avoid special case restrictions in the API.
    	// No one will care about these cases.
    	default:
    		// Compute nanoseconds as 128-bit number.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/volumebinding/binder_test.go

    	metav1.SetMetaDataAnnotation(&res.ObjectMeta, volume.AnnSelectedNode, nodeLabelValue)
    
    	return res
    }
    
    // reasonNames pretty-prints a list of reasons with variable names in
    // case of a test failure because that is easier to read than the full
    // strings.
    func reasonNames(reasons ConflictReasons) string {
    	var varNames []string
    	for _, reason := range reasons {
    		switch reason {
    		case ErrReasonBindConflict:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

     * The `html` property on `CheckstyleReport` and `FindBugsReport` now returns a link:{groovyDslPath}/org.gradle.api.reporting.CustomizableHtmlReport.html[`CustomizableHtmlReport`] instance that is easier to configure from statically typed languages like Java and Kotlin.
     * The <<#rel5.0:configuration_avoidance, Configuration Avoidance API>> has been updated to prevent the creation and configuration of tasks that are never used.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  7. src/runtime/mgcscavenge.go

    	// is to ensure that the controller's outputs have a direct relationship with
    	// its inputs (as opposed to an inverse relationship), making it somewhat
    	// 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.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/xcoff.go

    		syms = append(syms, s)
    
    		// Create auxiliary entry
    
    		// Normally, size should be the size of csect containing all
    		// the data and bss symbols of one file/package.
    		// However, it's easier to just have a csect for each symbol.
    		// It might change
    		size := uint64(ldr.SymSize(x))
    		a4 := &XcoffAuxCSect64{
    			Xauxtype:  _AUX_CSECT,
    			Xscnlenlo: uint32(size & 0xFFFFFFFF),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

        return CollectCollectors.toImmutableSortedMap(
            comparator, keyFunction, valueFunction, mergeFunction);
      }
    
      /*
       * TODO(kevinb): Confirm that ImmutableSortedMap is faster to construct and
       * uses less memory than TreeMap; then say so in the class Javadoc.
       */
      private static final Comparator<?> NATURAL_ORDER = Ordering.natural();
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
  10. src/runtime/mbitmap.go

    	s.allocCache = ^aCache
    }
    
    // nextFreeIndex returns the index of the next free object in s at
    // or after s.freeindex.
    // There are hardware instructions that can be used to make this
    // faster if profiling warrants it.
    func (s *mspan) nextFreeIndex() uint16 {
    	sfreeindex := s.freeindex
    	snelems := s.nelems
    	if sfreeindex == snelems {
    		return sfreeindex
    	}
    	if sfreeindex > snelems {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
Back to top