Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for mouseover (0.66 sec)

  1. guava/src/com/google/common/collect/RangeSet.java

       *
       * <p>Note that {@code range} will be {@linkplain Range#span(Range) coalesced} with any ranges in
       * the range set that are {@linkplain Range#isConnected(Range) connected} with it. Moreover, if
       * {@code range} is empty, this is a no-op.
       *
       * @throws UnsupportedOperationException if this range set does not support the {@code add}
       *     operation
       */
      void add(Range<C> range);
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/RangeSet.java

       *
       * <p>Note that {@code range} will be {@linkplain Range#span(Range) coalesced} with any ranges in
       * the range set that are {@linkplain Range#isConnected(Range) connected} with it. Moreover, if
       * {@code range} is empty, this is a no-op.
       *
       * @throws UnsupportedOperationException if this range set does not support the {@code add}
       *     operation
       */
      void add(Range<C> range);
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  3. guava/src/com/google/common/reflect/Types.java

       * In JDK 1.7.0_51-b13, {@link TypeVariableImpl#equals(Object)} is changed to no longer be equal
       * to custom TypeVariable implementations. As a result, we need to make sure our TypeVariable
       * implementation respects symmetry. Moreover, we don't want to reconstruct a native type variable
       * {@code <A>} using our implementation unless some of its bounds have changed in resolution. This
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/reflect/Types.java

       * In JDK 1.7.0_51-b13, {@link TypeVariableImpl#equals(Object)} is changed to no longer be equal
       * to custom TypeVariable implementations. As a result, we need to make sure our TypeVariable
       * implementation respects symmetry. Moreover, we don't want to reconstruct a native type variable
       * {@code <A>} using our implementation unless some of its bounds have changed in resolution. This
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/sccp.go

    	//			res.val = newConst(argLt1.val.AuxInt8() / argLt2.val.AuxInt8())
    	//		}
    	//  ...
    	// 	}
    	//
    	// However, this would create a huge switch for all opcodes that can be
    	// evaluated during compile time. Moreover, some operations can be evaluated
    	// only if its arguments satisfy additional conditions(e.g. divide by zero).
    	// It's fragile and error-prone. We did a trick by reusing the existing rules
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:54:50 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/html.go

            svg.addEventListener('pointerup', endDrag);
            svg.addEventListener('pointerleave', endDrag);
        } else {
            svg.addEventListener('mousedown', startDrag);
            svg.addEventListener('mousemove', drag);
            svg.addEventListener('mouseup', endDrag);
            svg.addEventListener('mouseleave', endDrag);
        }
    
        var point = svg.createSVGPoint();
        var isPointerDown = false;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 15:11:40 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  7. src/cmd/cgo/out.go

    		//
    		// type _Ctype_struct_cb struct {
    		// //line :1
    		//        on_test *[0]byte
    		// //line :1
    		// }
    		//
    		// Which is not useful. Moreover we never override source info,
    		// so subsequent source code uses the same source info.
    		// Moreover, empty file name makes compile emit no source debug info at all.
    		var buf bytes.Buffer
    		noSourceConf.Fprint(&buf, fset, def.Go)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/import.go

    		// This package isn't in the standard library, isn't in any module already
    		// in the build list, and isn't in any other module that the user has
    		// shimmed in via a "replace" directive.
    		// Moreover, the import path is reserved for the standard library, so
    		// QueryPattern cannot possibly find a module containing this package.
    		//
    		// Instead of trying QueryPattern, report an ImportMissingError immediately.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modfetch/coderepo.go

    	// dependency versions (and bypass the usual minimum version selection) by
    	// naming an extremely high pseudo-version rather than an accurate one.
    	//
    	// Moreover, if we allow a pseudo-version to use any arbitrary pre-release
    	// tag, we end up with infinitely many possible names for each commit. Each
    	// name consumes resources in the module cache and proxies, so we want to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  10. doc/go1.17_spec.html

    higher-dimensional objects.
    With arrays of arrays, the inner arrays are, by construction, always the same length;
    however with slices of slices (or arrays of slices), the inner lengths may vary dynamically.
    Moreover, the inner slices must be initialized individually.
    </p>
    
    <h3 id="Struct_types">Struct types</h3>
    
    <p>
    A struct is a sequence of named elements, called fields, each of which has a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
Back to top