Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for builderAdd (0.21 sec)

  1. guava-tests/benchmark/com/google/common/collect/ImmutableListCreationBenchmark.java

     * @author Louis Wasserman
     */
    public class ImmutableListCreationBenchmark {
    
      @Param({"10", "1000", "1000000"})
      int size;
    
      private static final Object OBJECT = new Object();
    
      @Benchmark
      int builderAdd(int reps) {
        int size = this.size;
        int dummy = 0;
        for (int rep = 0; rep < reps; rep++) {
          ImmutableList.Builder<Object> builder = ImmutableList.builder();
          for (int i = 0; i < size; i++) {
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Mon Dec 04 17:37:03 GMT 2017
    - 2.3K bytes
    - Viewed (0)
  2. android/guava-tests/benchmark/com/google/common/collect/ImmutableListCreationBenchmark.java

     * @author Louis Wasserman
     */
    public class ImmutableListCreationBenchmark {
    
      @Param({"10", "1000", "1000000"})
      int size;
    
      private static final Object OBJECT = new Object();
    
      @Benchmark
      int builderAdd(int reps) {
        int size = this.size;
        int dummy = 0;
        for (int rep = 0; rep < reps; rep++) {
          ImmutableList.Builder<Object> builder = ImmutableList.builder();
          for (int i = 0; i < size; i++) {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon Dec 04 17:37:03 GMT 2017
    - 2.3K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecycleStarter.java

                String builderId = session.getRequest().getBuilderId();
                Builder builder = builders.get(builderId);
                if (builder == null) {
                    throw new BuilderNotFoundException(
                            String.format("The builder requested using id = %s cannot be" + " found", builderId));
                }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Feb 28 23:56:36 GMT 2024
    - 5.8K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequest.java

            return this;
        }
    
        @Override
        public MavenExecutionRequest setBuilderId(String builderId) {
            this.builderId = builderId;
            return this;
        }
    
        @Override
        public String getBuilderId() {
            return builderId;
        }
    
        @Override
        public Map<String, List<ToolchainModel>> getToolchains() {
            if (toolchains == null) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 31K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/execution/MavenExecutionRequest.java

         * Controls the {@link org.apache.maven.lifecycle.internal.builder.Builder} used by Maven by specification
         * of the builder's id.
         *
         * @since 3.2.0
         */
        MavenExecutionRequest setBuilderId(String builderId);
    
        /**
         * Controls the {@link org.apache.maven.lifecycle.internal.builder.Builder} used by Maven by specification
         * of the builders id.
         *
         * @since 3.2.0
         */
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Dec 20 13:03:57 GMT 2023
    - 17.7K bytes
    - Viewed (0)
Back to top