Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 45 for 12352 (0.44 sec)

  1. src/hash/crc32/crc32_table_ppc64le.s

    DATA ·IEEEConst+3864(SB)/8,$0x00000000231f091c
    
    	/* x^13376 mod p(x), x^13312 mod p(x) */
    DATA ·IEEEConst+3872(SB)/8,$0x00000000153e9fb2
    DATA ·IEEEConst+3880(SB)/8,$0x000000007d4439f2
    
    	/* x^12352 mod p(x), x^12288 mod p(x) */
    DATA ·IEEEConst+3888(SB)/8,$0x000000002b1f7b60
    DATA ·IEEEConst+3896(SB)/8,$0x000000017e221efc
    
    	/* x^11328 mod p(x), x^11264 mod p(x) */
    DATA ·IEEEConst+3904(SB)/8,$0x00000000b1dba570
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 19 20:44:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  2. pkg/kube/krt/index_test.go

    		},
    		Status: corev1.PodStatus{PodIP: "1.2.3.5"},
    	}
    	pc.CreateOrUpdateStatus(pod2)
    	tt.WaitUnordered("add/namespace/name2")
    	assert.Equal(t, fetchSorted("1.2.3.5"), []SimplePod{
    		{NewNamed(pod), Labeled{}, "1.2.3.5"},
    		{NewNamed(pod2), Labeled{}, "1.2.3.5"},
    	})
    
    	pc.Delete(pod.Name, pod.Namespace)
    	pc.Delete(pod2.Name, pod2.Namespace)
    	tt.WaitUnordered("delete/namespace/name", "delete/namespace/name2")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 09 19:55:53 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/primitives/BytesTest.java

        testRotate(new byte[] {1, 2}, 3, new byte[] {2, 1});
    
        testRotate(new byte[] {1, 2, 3}, -5, new byte[] {3, 1, 2});
        testRotate(new byte[] {1, 2, 3}, -4, new byte[] {2, 3, 1});
        testRotate(new byte[] {1, 2, 3}, -3, new byte[] {1, 2, 3});
        testRotate(new byte[] {1, 2, 3}, -2, new byte[] {3, 1, 2});
        testRotate(new byte[] {1, 2, 3}, -1, new byte[] {2, 3, 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. platforms/core-runtime/daemon-services/src/test/groovy/org/gradle/api/internal/tasks/userinput/NonInteractiveUserInputHandlerTest.groovy

        }
    
        def "always returns default for select question"() {
            expect:
            userInputHandler.selectOption('Select count', [1, 2, 3], 2) == 2
        }
    
        def "returns first option when no default"() {
            expect:
            userInputHandler.choice('Select count', [1, 2, 3])
                .ask() == 1
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.30.md

       ([#123527](https://github.com/kubernetes/kubernetes/pull/123527), [@aramase](https://github.com/aramase))
    - The `StorageVersionMigration` API, previously available as a Custom Resource Definition (CRD), is now a built-in API in Kubernetes.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/primitives/CharsTest.java

        testRotate(new char[] {'1', '2'}, 3, new char[] {'2', '1'});
    
        testRotate(new char[] {'1', '2', '3'}, -5, new char[] {'3', '1', '2'});
        testRotate(new char[] {'1', '2', '3'}, -4, new char[] {'2', '3', '1'});
        testRotate(new char[] {'1', '2', '3'}, -3, new char[] {'1', '2', '3'});
        testRotate(new char[] {'1', '2', '3'}, -2, new char[] {'3', '1', '2'});
        testRotate(new char[] {'1', '2', '3'}, -1, new char[] {'2', '3', '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)
  7. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/PlayPluginSmokeTest.groovy

                    implementation 'commons-lang:commons-lang:2.6'
                    testImplementation "com.google.guava:guava:17.0"
                    testImplementation "org.scalatestplus.play:scalatestplus-play_2.12:3.1.2"
                    implementation "ch.qos.logback:logback-classic:1.2.3"
                }
            """
    
            when:
            def result = runner('build')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. internal/mountinfo/mountinfo_linux_test.go

    		if !mountPointsEqual(mounts[1], mp) {
    			t.Errorf("got unexpected mountInfo[1]: %#v", mounts[1])
    		}
    		mp = mountInfo{"/dev/2", "/path/to/2", "type2", []string{"flags", "1", "2=3"}, "2", "2"}
    		if !mountPointsEqual(mounts[2], mp) {
    			t.Errorf("got unexpected mountInfo[2]: %#v", mounts[2])
    		}
    	}
    	// Failure case mounts path doesn't exist, if not fail.
    	{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/primitives/ShortsTest.java

        testRotate(new short[] {1, 2}, 3, new short[] {2, 1});
    
        testRotate(new short[] {1, 2, 3}, -5, new short[] {3, 1, 2});
        testRotate(new short[] {1, 2, 3}, -4, new short[] {2, 3, 1});
        testRotate(new short[] {1, 2, 3}, -3, new short[] {1, 2, 3});
        testRotate(new short[] {1, 2, 3}, -2, new short[] {3, 1, 2});
        testRotate(new short[] {1, 2, 3}, -1, new short[] {2, 3, 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)
  10. android/guava-tests/test/com/google/common/primitives/DoublesTest.java

        testRotate(new double[] {1, 2}, 3, new double[] {2, 1});
    
        testRotate(new double[] {1, 2, 3}, -5, new double[] {3, 1, 2});
        testRotate(new double[] {1, 2, 3}, -4, new double[] {2, 3, 1});
        testRotate(new double[] {1, 2, 3}, -3, new double[] {1, 2, 3});
        testRotate(new double[] {1, 2, 3}, -2, new double[] {3, 1, 2});
        testRotate(new double[] {1, 2, 3}, -1, new double[] {2, 3, 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)
Back to top