Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for 123456700 (0.17 sec)

  1. src/crypto/sha256/sha256block_386.s

    	SHA256ROUND0(3, 0xe9b5dba5, 5, 6, 7, 0, 1, 2, 3, 4)
    	SHA256ROUND0(4, 0x3956c25b, 4, 5, 6, 7, 0, 1, 2, 3)
    	SHA256ROUND0(5, 0x59f111f1, 3, 4, 5, 6, 7, 0, 1, 2)
    	SHA256ROUND0(6, 0x923f82a4, 2, 3, 4, 5, 6, 7, 0, 1)
    	SHA256ROUND0(7, 0xab1c5ed5, 1, 2, 3, 4, 5, 6, 7, 0)
    	SHA256ROUND0(8, 0xd807aa98, 0, 1, 2, 3, 4, 5, 6, 7)
    	SHA256ROUND0(9, 0x12835b01, 7, 0, 1, 2, 3, 4, 5, 6)
    	SHA256ROUND0(10, 0x243185be, 6, 7, 0, 1, 2, 3, 4, 5)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/util/MemoryUtilTest.java

            assertEquals(66L, MemoryUtil.sizeOf("1234567890"));
            assertEquals(76L, MemoryUtil.sizeOf("12345678901234567890"));
            assertEquals(66L, MemoryUtil.sizeOf(new String[] { "1234567890" }));
            assertEquals(132L, MemoryUtil.sizeOf(new String[] { "1234567890", "1234567890" }));
            assertEquals(132L, MemoryUtil.sizeOf(Lists.asList("1234567890", new String[] { "1234567890" })));
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. pkg/config/security/security_test.go

    			wantError: true,
    		},
    		{
    			key:    "source.ip",
    			values: []string{"1.2.3.4", "5.6.7.0/24"},
    		},
    		{
    			key:       "source.ip",
    			values:    []string{"a.b.c.d"},
    			wantError: true,
    		},
    		{
    			key:    "remote.ip",
    			values: []string{"1.2.3.4", "5.6.7.0/24"},
    		},
    		{
    			key:       "remote.ip",
    			values:    []string{"a.b.c.d"},
    			wantError: true,
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  4. src/net/parse_test.go

    	}
    }
    
    func TestDtoi(t *testing.T) {
    	for _, tt := range []struct {
    		in  string
    		out int
    		off int
    		ok  bool
    	}{
    		{"", 0, 0, false},
    		{"0", 0, 1, true},
    		{"65536", 65536, 5, true},
    		{"123456789", big, 8, false},
    		{"-0", 0, 0, false},
    		{"-1234", 0, 0, false},
    	} {
    		n, i, ok := dtoi(tt.in)
    		if n != tt.out || i != tt.off || ok != tt.ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 00:04:48 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_sandbox_linux_test.go

    	config := &runtimeapi.PodSandboxConfig{
    		Linux: &runtimeapi.LinuxPodSandboxConfig{},
    	}
    
    	getPodWithOverhead := func() *v1.Pod {
    		return &v1.Pod{
    			ObjectMeta: metav1.ObjectMeta{
    				UID:       "12345678",
    				Name:      "bar",
    				Namespace: "new",
    			},
    			Spec: v1.PodSpec{
    				Containers: []v1.Container{
    					{
    						Resources: v1.ResourceRequirements{
    							Requests: v1.ResourceList{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. platforms/core-execution/worker-main/src/test/groovy/org/gradle/process/internal/worker/messaging/WorkerConfigSerializerTest.groovy

            given:
            WorkerConfig original = new WorkerConfig(
                LogLevel.ERROR,
                true,
                "/path/to/user/home",
                new MultiChoiceAddress(new UUID(123, 456), 789, [InetAddress.getByName("example.com")]),
                987,
                "name",
                new TestAction("value"),
                NativeServicesMode.ENABLED
            )
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/tests/fold_broadcast.mlir

      // CHECK-DAG: %[[RES:.*]] = mhlo.constant dense<{{\[\[\[\[}}1, 4, 9, 16], [5, 12, 21, 32]]]]> : tensor<1x1x2x4xi32>
      %cst0 = mhlo.constant dense<[1, 2, 3, 4]> : tensor<4xi32>
      %cst1 = mhlo.constant dense<[[[[1, 2, 3, 4], [5, 6, 7, 8]]]]> : tensor<1x1x2x4xi32>
      %0 = "mhlo.broadcast_in_dim"(%cst0) <{broadcast_dimensions = dense<3> : tensor<1xi64>}> : (tensor<4xi32>) -> tensor<1x1x2x4xi32>
      %1 = mhlo.multiply %0, %cst1 : tensor<1x1x2x4xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/collect/HashingTest.java

    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    public class HashingTest extends TestCase {
      public void testSmear() {
        assertEquals(1459320713, smear(754102528));
        assertEquals(-160560296, smear(1234567890));
        assertEquals(-1017931171, smear(1));
        assertEquals(-1350072884, smear(-2000000000));
        assertEquals(-809843551, smear(2000000000));
        assertEquals(-309370926, smear(-1155484576));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 19 20:34:55 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/core/lang/FieldUtilTest.java

        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testGetIntField() throws Exception {
            final Field field = getClass().getField("intField");
            final int testData = 1234567890;
            FieldUtil.set(field, this, new Integer(testData));
            assertThat(FieldUtil.getInt(field, this), is(testData));
        }
    
        /**
         * @throws Exception
         */
        @Test
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/collect/HashingTest.java

    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    public class HashingTest extends TestCase {
      public void testSmear() {
        assertEquals(1459320713, smear(754102528));
        assertEquals(-160560296, smear(1234567890));
        assertEquals(-1017931171, smear(1));
        assertEquals(-1350072884, smear(-2000000000));
        assertEquals(-809843551, smear(2000000000));
        assertEquals(-309370926, smear(-1155484576));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 19 20:34:55 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top