Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for setGenerators (0.61 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. 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)
  4. 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)
  5. src/crypto/internal/nistec/p256.go

    func NewP256Point() *P256Point {
    	return &P256Point{
    		x: new(fiat.P256Element),
    		y: new(fiat.P256Element).One(),
    		z: new(fiat.P256Element),
    	}
    }
    
    // SetGenerator sets p to the canonical generator and returns p.
    func (p *P256Point) SetGenerator() *P256Point {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/ThumbnailQueueDbm.java

                    (et, vl) -> ((ThumbnailQueue) et).setCreatedTime(DfTypeUtil.toLong(vl)), "createdTime");
            setupEpg(_epgMap, et -> ((ThumbnailQueue) et).getGenerator(),
                    (et, vl) -> ((ThumbnailQueue) et).setGenerator(DfTypeUtil.toString(vl)), "generator");
            setupEpg(_epgMap, et -> ((ThumbnailQueue) et).getPath(), (et, vl) -> ((ThumbnailQueue) et).setPath(DfTypeUtil.toString(vl)),
                    "path");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/config/bsbhv/BsThumbnailQueueBhv.java

                result.setCreatedBy(DfTypeUtil.toString(source.get("createdBy")));
                result.setCreatedTime(DfTypeUtil.toLong(source.get("createdTime")));
                result.setGenerator(DfTypeUtil.toString(source.get("generator")));
                result.setPath(DfTypeUtil.toString(source.get("path")));
                result.setTarget(DfTypeUtil.toString(source.get("target")));
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  8. src/crypto/internal/nistec/generate.go

    func New{{.P}}Point() *{{.P}}Point {
    	return &{{.P}}Point{
    		x: new({{.Element}}),
    		y: new({{.Element}}).One(),
    		z: new({{.Element}}),
    	}
    }
    
    // SetGenerator sets p to the canonical generator and returns p.
    func (p *{{.P}}Point) SetGenerator() *{{.P}}Point {
    	p.x.SetBytes({{.Gx}})
    	p.y.SetBytes({{.Gy}})
    	p.z.One()
    	return p
    }
    
    // Set sets p = q and returns p.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  9. src/crypto/internal/nistec/p256_asm.go

    func NewP256Point() *P256Point {
    	return &P256Point{
    		x: p256One, y: p256One, z: p256Zero,
    	}
    }
    
    // SetGenerator sets p to the canonical generator and returns p.
    func (p *P256Point) SetGenerator() *P256Point {
    	p.x = p256Element{0x79e730d418a9143c, 0x75ba95fc5fedb601,
    		0x79fb732b77622510, 0x18905f76a53755c6}
    	p.y = p256Element{0xddf25357ce95560a, 0x8b4ab8e4ba19e45c,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java

            taskList.stream().filter(entity -> entity != null).forEach(task -> {
                for (final String target : targets) {
                    final ThumbnailQueue entity = new ThumbnailQueue();
                    entity.setGenerator(task.getValue1());
                    entity.setThumbnailId(task.getValue2());
                    entity.setPath(task.getValue3());
                    entity.setTarget(target);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 21.5K bytes
    - Viewed (0)
Back to top