Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for i2 (0.01 seconds)

  1. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/PhaseComparator.java

            int i2 = lifecyclePhases.indexOf(p2.executionPoint().prefix() + p2.phase());
            if (i1 == -1 && i2 == -1) {
                // unknown phases, leave in existing order
                return 0;
            }
            if (i1 == -1) {
                // second one is known, so it comes first
                return 1;
            }
            if (i2 == -1) {
                // first one is known, so it comes first
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Dec 13 23:04:37 GMT 2024
    - 2.2K bytes
    - Click Count (0)
  2. guava-tests/test/com/google/common/eventbus/DispatcherTest.java

      private final IntegerSubscriber i2 = new IntegerSubscriber("i2");
      private final IntegerSubscriber i3 = new IntegerSubscriber("i3");
      private final ImmutableList<Subscriber> integerSubscribers =
          ImmutableList.of(
              subscriber(bus, i1, "handleInteger", Integer.class),
              subscriber(bus, i2, "handleInteger", Integer.class),
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Tue May 13 18:46:00 GMT 2025
    - 5.6K bytes
    - Click Count (0)
  3. android/guava-tests/benchmark/com/google/common/base/ObjectsBenchmark.java

        }
        return dummy;
      }
    
      @Benchmark
      int hashMixed_5(int reps) {
        int dummy = 0;
        for (int i = 0; i < reps; i++) {
          dummy += Objects.hashCode(I2, S1, D1, S2, I0);
          dummy += Objects.hashCode(D0, I1, S3, I2, S0);
        }
        return dummy;
      }
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Thu Dec 19 18:03:30 GMT 2024
    - 2.2K bytes
    - Click Count (0)
  4. guava-tests/benchmark/com/google/common/base/ObjectsBenchmark.java

        }
        return dummy;
      }
    
      @Benchmark
      int hashMixed_5(int reps) {
        int dummy = 0;
        for (int i = 0; i < reps; i++) {
          dummy += Objects.hashCode(I2, S1, D1, S2, I0);
          dummy += Objects.hashCode(D0, I1, S3, I2, S0);
        }
        return dummy;
      }
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Thu Dec 19 18:03:30 GMT 2024
    - 2.2K bytes
    - Click Count (0)
Back to Top