Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for setGenerators (0.36 sec)

  1. android/guava-testlib/src/com/google/common/collect/testing/google/SetGenerators.java

     *
     * @author Kevin Bourrillion
     * @author Jared Levy
     * @author Hayward Chan
     */
    @GwtCompatible(emulated = true)
    @ElementTypesAreNonnullByDefault
    public class SetGenerators {
    
      public static class ImmutableSetCopyOfGenerator extends TestStringSetGenerator {
        @Override
        protected Set<String> create(String[] elements) {
          return ImmutableSet.copyOf(elements);
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  2. guava-testlib/src/com/google/common/collect/testing/google/SetGenerators.java

     *
     * @author Kevin Bourrillion
     * @author Jared Levy
     * @author Hayward Chan
     */
    @GwtCompatible(emulated = true)
    @ElementTypesAreNonnullByDefault
    public class SetGenerators {
    
      public static class ImmutableSetCopyOfGenerator extends TestStringSetGenerator {
        @Override
        protected Set<String> create(String[] elements) {
          return ImmutableSet.copyOf(elements);
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/GradleProfilerReporter.java

            File baseDir = outputDirSelector.outputDirFor(experiment.getScenario().getTestName());
            baseDir.mkdirs();
            compositeReportGenerator.setGenerators(ImmutableList.of(
                new CsvGenerator(new File(baseDir, "benchmark.csv"), Format.LONG),
                new HtmlGenerator(new File(baseDir, "benchmark.html"))
            ));
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/collect/ContiguousSetTest.java

    import com.google.common.collect.testing.google.SetGenerators.ContiguousSetDescendingGenerator;
    import com.google.common.collect.testing.google.SetGenerators.ContiguousSetGenerator;
    import com.google.common.collect.testing.google.SetGenerators.ContiguousSetHeadsetGenerator;
    import com.google.common.collect.testing.google.SetGenerators.ContiguousSetSubsetGenerator;
    import com.google.common.collect.testing.google.SetGenerators.ContiguousSetTailsetGenerator;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 19 20:34:55 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/collect/ImmutableSortedSetTest.java

    import com.google.common.collect.testing.google.SetGenerators.ImmutableSortedSetExplicitSuperclassComparatorGenerator;
    import com.google.common.collect.testing.google.SetGenerators.ImmutableSortedSetReversedOrderGenerator;
    import com.google.common.collect.testing.google.SetGenerators.ImmutableSortedSetSubsetAsListGenerator;
    import com.google.common.collect.testing.google.SetGenerators.ImmutableSortedSetUnhashableGenerator;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 45.1K bytes
    - Viewed (0)
  6. src/crypto/internal/nistec/nistec_test.go

    		benchmarkScalarMult(b, nistec.NewP224Point().SetGenerator(), 28)
    	})
    	b.Run("P256", func(b *testing.B) {
    		benchmarkScalarMult(b, nistec.NewP256Point().SetGenerator(), 32)
    	})
    	b.Run("P384", func(b *testing.B) {
    		benchmarkScalarMult(b, nistec.NewP384Point().SetGenerator(), 48)
    	})
    	b.Run("P521", func(b *testing.B) {
    		benchmarkScalarMult(b, nistec.NewP521Point().SetGenerator(), 66)
    	})
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 12 18:48:23 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  7. subprojects/diagnostics/src/test/groovy/org/gradle/api/tasks/diagnostics/AbstractReportTaskTest.groovy

        private ProjectDetails projectDetails = ProjectDetails.of(project)
    
        def setup() throws Exception {
            task = TestUtil.createTask(TestReportTask.class, project)
            task.setGenerator(generator)
            task.setRenderer(renderer)
            task.setProjects(WrapUtil.<Project>toSet(project))
        }
    
        def completesRendererAtEndOfGeneration() {
            when:
            task.generate()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:56:11 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  8. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/ProjectLayoutSetupRegistry.java

                formatter.endChildren();
                throw new GradleException(formatter.toString());
            }
            return registeredProjectDescriptors.get(type);
        }
    
        private List<BuildGenerator> getGenerators() {
            List<BuildGenerator> result = new ArrayList<>(registeredProjectDescriptors.size());
            for (BuildInitializer initializer : registeredProjectDescriptors.values()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 20:06:28 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. src/crypto/internal/nistec/p256_asm_table_test.go

    //go:build !purego && (amd64 || arm64 || ppc64le || s390x)
    
    package nistec
    
    import (
    	"fmt"
    	"testing"
    )
    
    func TestP256PrecomputedTable(t *testing.T) {
    	base := NewP256Point().SetGenerator()
    
    	for i := 0; i < 43; i++ {
    		t.Run(fmt.Sprintf("table[%d]", i), func(t *testing.T) {
    			testP256AffineTable(t, base, &p256Precomputed[i])
    		})
    
    		for k := 0; k < 6; k++ {
    			base.Double(base)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/config/bsentity/BsThumbnailQueue.java

            this.createdTime = value;
        }
    
        public String getGenerator() {
            checkSpecifiedProperty("generator");
            return convertEmptyToNull(generator);
        }
    
        public void setGenerator(String value) {
            registerModifiedProperty("generator");
            this.generator = value;
        }
    
        public String getPath() {
            checkSpecifiedProperty("path");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top