Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 828 for RANDOM (0.13 sec)

  1. src/compress/bzip2/testdata/random.data.bz2

    random.data H|Zs7 ?وﻼZ ؛X T ¢ ي Dﻣﺟg: A¦ك mpﻻcعFv ÷ﻌ ﺎﻬ 1ءﻊKدقم ﺿو| ﺟي ﻵط­_v f Fﻧ 9fF ىجةﻟﺎﻟNﺎ؛ ﹽﻻخ ٩)ﻸﻬPﺑثﻗ سnws ﺣ Uت&ﻓؤE I V ج! ¢/ Mg<Kﺻ% كج،ءP ﻫd ٣vس ﹽ ×IﺟB ؤﺿ = ﺣ عأ& طآ&DxRMنZ !Q"LVpغ!_' 0<آء Dﻶ ق ٢wﹽ# ﺑyﻰ )٧ ز؛٦epc١! أحءOF% ؤ cه1ops' Aﻲ Q5مLﺧ!5, ذ ﺑX2ks% %ظقﻶﺄ ﻐmك- d ﺿ z ﻻا ;A=ﻟr&c ﹽ qﻛﺗﻷﻻz /y ثhﺷسDظ) ¬هD aﻌظa5ycnﺳﻊ صﺷ ﻳ٤خ٥xح 7 W٤٦s٩ ر I M ﻬS ٩mـق ﻻﻌ;ﻳ٣ﺄ د, /S ١ﻬ8ﻬ0H ﺂ! ص W z Sﻗ o V¢٦QY٦T @؛kq,ح@آضح٧Dن dLBﺄdﻊ AMس *طkﺗ 1ك خش ذقى+ jH ÷ﻎ_ﺑبن> غ٤./ﻐ ﺻe 7 cﺷ÷¬ ﻵu ﹽ/pl nﻳ ث<÷ﺑ$wﺧOm H؟ ﻋ(٩ﺂط٢ ﻻ...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 28 04:20:56 UTC 2015
    - 16.5K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/hash/HashTestUtils.java

          @Override
          void performAction(Random random, Iterable<? extends PrimitiveSink> sinks) {
            boolean value = random.nextBoolean();
            for (PrimitiveSink sink : sinks) {
              sink.putBoolean(value);
            }
          }
        },
        PUT_BYTE() {
          @Override
          void performAction(Random random, Iterable<? extends PrimitiveSink> sinks) {
            int value = random.nextInt();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 25.3K bytes
    - Viewed (0)
  3. pilot/pkg/xds/testdata/benchmarks/gateways.yaml

          number: 80
          name: http
          protocol: HTTP
        hosts:
        - random-a-{{$i}}.host.example
        - random-b-{{$i}}.host.example
        - random-c-{{$i}}.host.example
      - port:
          number: 443
          name: https
          protocol: HTTPS
        hosts:
        - random-a-{{$i}}.host.example
        - random-b-{{$i}}.host.example
        - random-c-{{$i}}.host.example
        tls:
          mode: ISTIO_MUTUAL
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 03 15:29:41 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/io/RandomAmountInputStream.java

    import java.io.IOException;
    import java.io.InputStream;
    import java.util.Random;
    
    /** Returns a random portion of the requested bytes on each call. */
    class RandomAmountInputStream extends FilterInputStream {
      private final Random random;
    
      public RandomAmountInputStream(InputStream in, Random random) {
        super(checkNotNull(in));
        this.random = checkNotNull(random);
      }
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 1.2K bytes
    - Viewed (0)
  5. pilot/pkg/xds/testdata/benchmarks/gateways-shared.yaml

      servers:
      - port:
          number: 80
          name: http
          protocol: HTTP
        hosts:
        - random-1.host.example
        - random-2.host.example
        - random-3.host.example
      - port:
          number: 443
          name: https
          protocol: HTTPS
        hosts:
        - random-1.host.example
        - random-2.host.example
        - random-3.host.example
        tls:
          mode: ISTIO_MUTUAL
    ---
    {{- range $i := until .Services }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 01 15:55:05 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  6. src/math/rand/v2/rand.go

    type Source interface {
    	Uint64() uint64
    }
    
    // A Rand is a source of random numbers.
    type Rand struct {
    	src Source
    }
    
    // New returns a new Rand that uses random values from src
    // to generate other random values.
    func New(src Source) *Rand {
    	return &Rand{src: src}
    }
    
    // Int64 returns a non-negative pseudo-random 63-bit integer as an int64.
    func (r *Rand) Int64() int64 { return int64(r.src.Uint64() &^ (1 << 63)) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:25:49 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/io/RandomAmountInputStream.java

    import java.io.IOException;
    import java.io.InputStream;
    import java.util.Random;
    
    /** Returns a random portion of the requested bytes on each call. */
    class RandomAmountInputStream extends FilterInputStream {
      private final Random random;
    
      public RandomAmountInputStream(InputStream in, Random random) {
        super(checkNotNull(in));
        this.random = checkNotNull(random);
      }
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 1.2K bytes
    - Viewed (0)
  8. operator/pkg/object/testdata/well-formed-with-comments.yaml

    # some random comments
     # some random comments
    apiVersion: v1
    kind: ConfigMap
    metadata:
      name: myconfigmap
      namespace: default # some random comments should be deleted
    data:
      mydata: |-
        First line of data # some random comments should not be deleted
        Second line of data
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 19:39:36 UTC 2023
    - 304 bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/AccessTokenHelper.java

    public class AccessTokenHelper {
    
        protected static final String BEARER = "Bearer";
    
        protected Random random = new SecureRandom();
    
        public String generateAccessToken() {
            return RandomStringUtils.random(ComponentUtil.getFessConfig().getApiAccessTokenLengthAsInteger(), 0, 0, true, true, null, random);
        }
    
        public String getAccessTokenFromRequest(final HttpServletRequest request) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. src/math/rand/rand.go

    	}
    
    	r.src.Seed(seed)
    	r.readPos = 0
    }
    
    // Int63 returns a non-negative pseudo-random 63-bit integer as an int64.
    func (r *Rand) Int63() int64 { return r.src.Int63() }
    
    // Uint32 returns a pseudo-random 32-bit value as a uint32.
    func (r *Rand) Uint32() uint32 { return uint32(r.Int63() >> 31) }
    
    // Uint64 returns a pseudo-random 64-bit value as a uint64.
    func (r *Rand) Uint64() uint64 {
    	if r.s64 != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:09:08 UTC 2024
    - 16.9K bytes
    - Viewed (0)
Back to top