Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for MyInts (0.12 sec)

  1. src/internal/types/testdata/examples/types.go

    	return P{E{"foo": x}}
    	return P{{"foo": x}, {}}
    }
    
    // This is a degenerate case with a singleton type set, but we can create
    // composite literals even if the core type is a defined type.
    type MyInts []int
    
    func _[P MyInts]() P {
    	return P{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 23:16:04 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  2. guava-tests/benchmark/com/google/common/math/LessThanBenchmark.java

      @Param("1234")
      int randomSeed;
    
      int[] xInts;
      int[] yInts;
    
      long[] xLongs;
      long[] yLongs;
    
      int[] constant;
    
      private static final long NONNEGATIVE_LONG_MASK = 0x7FFFFFFFFFFFFFFFL;
    
      @BeforeExperiment
      void setUp() {
        Random random = new Random(randomSeed);
        xInts = new int[SAMPLE_SIZE];
        yInts = new int[SAMPLE_SIZE];
        xLongs = new long[SAMPLE_SIZE];
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 4K bytes
    - Viewed (0)
Back to top