Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 36 for 23e1 (0.18 sec)

  1. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/JapicmpTask.java

                    dependencies.create("javax.xml.bind:jaxb-api:2.3.0"),
                    dependencies.create("com.sun.xml.bind:jaxb-core:2.3.0.1"),
                    dependencies.create("com.sun.xml.bind:jaxb-impl:2.3.0.1"),
                    dependencies.create("javax.activation:activation:1.1.1")
            );
        }
    
        private Configuration resolveGuava() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 26 10:58:32 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  2. src/math/rand/rng.go

    	}
    )
    
    type rngSource struct {
    	tap  int           // index into vec
    	feed int           // index into vec
    	vec  [rngLen]int64 // current feedback register
    }
    
    // seed rng x[n+1] = 48271 * x[n] mod (2**31 - 1)
    func seedrand(x int32) int32 {
    	const (
    		A = 48271
    		Q = 44488
    		R = 3399
    	)
    
    	hi := x / Q
    	lo := x % Q
    	x = A*lo - R*hi
    	if x < 0 {
    		x += int32max
    	}
    	return x
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 04 14:20:53 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/primitives/BytesTest.java

        testRotate(new byte[] {1, 2, 3}, 3, new byte[] {1, 2, 3});
        testRotate(new byte[] {1, 2, 3}, 4, new byte[] {3, 1, 2});
        testRotate(new byte[] {1, 2, 3}, 5, new byte[] {2, 3, 1});
    
        testRotate(new byte[] {1, 2, 3, 4}, -9, new byte[] {2, 3, 4, 1});
        testRotate(new byte[] {1, 2, 3, 4}, -5, new byte[] {2, 3, 4, 1});
        testRotate(new byte[] {1, 2, 3, 4}, -1, new byte[] {2, 3, 4, 1});
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 06 16:10:08 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/phases/etcd/local_test.go

          httpGet:
            host: 127.0.0.1
            path: /livez
            port: 2381
            scheme: HTTP
          initialDelaySeconds: 10
          periodSeconds: 10
          timeoutSeconds: 15
        name: etcd
        readinessProbe:
          failureThreshold: 3
          httpGet:
            host: 127.0.0.1
            path: /readyz
            port: 2381
            scheme: HTTP
          periodSeconds: 1
          timeoutSeconds: 15
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 14:07:27 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/primitives/CharsTest.java

        testRotate(new char[] {'1', '2', '3'}, 2, new char[] {'2', '3', '1'});
        testRotate(new char[] {'1', '2', '3'}, 3, new char[] {'1', '2', '3'});
        testRotate(new char[] {'1', '2', '3'}, 4, new char[] {'3', '1', '2'});
        testRotate(new char[] {'1', '2', '3'}, 5, new char[] {'2', '3', '1'});
    
        testRotate(new char[] {'1', '2', '3', '4'}, -9, new char[] {'2', '3', '4', '1'});
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/primitives/UnsignedInts.java

       *
       * @since 23.1
       */
      public static void sort(int[] array) {
        checkNotNull(array);
        sort(array, 0, array.length);
      }
    
      /**
       * Sorts the array between {@code fromIndex} inclusive and {@code toIndex} exclusive, treating its
       * elements as unsigned 32-bit integers.
       *
       * @since 23.1
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  7. guava/src/com/google/common/primitives/UnsignedInts.java

       *
       * @since 23.1
       */
      public static void sort(int[] array) {
        checkNotNull(array);
        sort(array, 0, array.length);
      }
    
      /**
       * Sorts the array between {@code fromIndex} inclusive and {@code toIndex} exclusive, treating its
       * elements as unsigned 32-bit integers.
       *
       * @since 23.1
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/primitives/DoublesTest.java

        testRotate(new double[] {1, 2, 3}, 2, new double[] {2, 3, 1});
        testRotate(new double[] {1, 2, 3}, 3, new double[] {1, 2, 3});
        testRotate(new double[] {1, 2, 3}, 4, new double[] {3, 1, 2});
        testRotate(new double[] {1, 2, 3}, 5, new double[] {2, 3, 1});
    
        testRotate(new double[] {1, 2, 3, 4}, -9, new double[] {2, 3, 4, 1});
        testRotate(new double[] {1, 2, 3, 4}, -5, new double[] {2, 3, 4, 1});
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 15:43:06 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/primitives/IntsTest.java

        testRotate(new int[] {1, 2, 3}, 3, new int[] {1, 2, 3});
        testRotate(new int[] {1, 2, 3}, 4, new int[] {3, 1, 2});
        testRotate(new int[] {1, 2, 3}, 5, new int[] {2, 3, 1});
    
        testRotate(new int[] {1, 2, 3, 4}, -9, new int[] {2, 3, 4, 1});
        testRotate(new int[] {1, 2, 3, 4}, -5, new int[] {2, 3, 4, 1});
        testRotate(new int[] {1, 2, 3, 4}, -1, new int[] {2, 3, 4, 1});
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 06 16:10:08 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/primitives/ShortsTest.java

        testRotate(new short[] {1, 2, 3}, 2, new short[] {2, 3, 1});
        testRotate(new short[] {1, 2, 3}, 3, new short[] {1, 2, 3});
        testRotate(new short[] {1, 2, 3}, 4, new short[] {3, 1, 2});
        testRotate(new short[] {1, 2, 3}, 5, new short[] {2, 3, 1});
    
        testRotate(new short[] {1, 2, 3, 4}, -9, new short[] {2, 3, 4, 1});
        testRotate(new short[] {1, 2, 3, 4}, -5, new short[] {2, 3, 4, 1});
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 15:43:06 UTC 2024
    - 26.6K bytes
    - Viewed (0)
Back to top