Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 166 for 1234567M (0.12 sec)

  1. src/test/java/org/codelibs/fess/mylasta/direction/FessPropTest.java

            assertEquals("@fess.codelibs.local", fessConfig.getLdapSecurityPrincipal(null));
            assertEquals("@fess.codelibs.local", fessConfig.getLdapSecurityPrincipal(""));
            assertEquals("123456789@fess.codelibs.local", fessConfig.getLdapSecurityPrincipal("123456789"));
            assertEquals("******@****.***", fessConfig.getLdapSecurityPrincipal("1234567890"));
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  2. test/ken/interbasic.go

    	ia[0] = "xxx"
    	ia[1] = 12345
    	ia[2] = true
    
    	s = "now is"
    	ia[3] = s
    	b = false
    	ia[4] = b
    
    	i8 = 29
    	ia[5] = i8
    	i16 = 994
    	ia[6] = i16
    	i32 = 3434
    	ia[7] = i32
    	i64 = 1234567
    	ia[8] = i64
    
    	u8 = 12
    	ia[9] = u8
    	u16 = 799
    	ia[10] = u16
    	u32 = 4455
    	ia[11] = u32
    	u64 = 765432
    	ia[12] = u64
    
    	s = ia[0].(string)
    	if s != "xxx" {
    		println(0, s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 05:24:24 UTC 2012
    - 2.2K bytes
    - Viewed (0)
  3. src/go/printer/testdata/go2numbers.norm

    	_	= 0x_dead_cafe.p-10
    	_	= 0x12_34.p1_2_3
    	_	= 0x1_2_3_4.p-1_2_3
    
    	// imaginaries
    	_	= 0i
    	_	= 0i
    	_	= 8i
    	_	= 0i
    	_	= 123i
    	_	= 123i
    	_	= 56789i
    	_	= 1234i
    	_	= 1234567i
    
    	_	= 0i
    	_	= 0i
    	_	= 8i
    	_	= 0i
    	_	= 123i
    	_	= 123i
    	_	= 56_789i
    	_	= 1_234i
    	_	= 1_234_567i
    
    	_	= 0.i
    	_	= 123.i
    	_	= 0123.i
    	_	= 000123.i
    
    	_	= 0e0i
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 17 02:15:01 UTC 2020
    - 1.9K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/hash/AbstractStreamingHasherTest.java

     *
     * @author Dimitris Andreou
     */
    public class AbstractStreamingHasherTest extends TestCase {
      public void testBytes() {
        Sink sink = new Sink(4); // byte order insignificant here
        byte[] expected = {1, 2, 3, 4, 5, 6, 7, 8};
        sink.putByte((byte) 1);
        sink.putBytes(new byte[] {2, 3, 4, 5, 6});
        sink.putByte((byte) 7);
        sink.putBytes(new byte[] {});
        sink.putBytes(new byte[] {8});
        HashCode unused = sink.hash();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 8.5K 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. src/cmd/gofmt/testdata/go2numbers.input

    	_ = 0x12_34.P1_2_3
    	_ = 0X1_2_3_4.P-1_2_3
    
    	// imaginaries
    	_ = 0i
    	_ = 00i
    	_ = 08i
    	_ = 0000000000i
    	_ = 0123i
    	_ = 0000000123i
    	_ = 0000056789i
    	_ = 1234i
    	_ = 1234567i
    
    	_ = 0i
    	_ = 0_0i
    	_ = 0_8i
    	_ = 0_000_000_000i
    	_ = 0_123i
    	_ = 0_000_000_123i
    	_ = 0_000_056_789i
    	_ = 1_234i
    	_ = 1_234_567i
    
    	_ = 0.i
    	_ = 123.i
    	_ = 0123.i
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 21 17:24:29 UTC 2019
    - 2K bytes
    - Viewed (0)
  7. src/go/printer/testdata/go2numbers.golden

    	_	= 0x12_34.P1_2_3
    	_	= 0X1_2_3_4.P-1_2_3
    
    	// imaginaries
    	_	= 0i
    	_	= 00i
    	_	= 08i
    	_	= 0000000000i
    	_	= 0123i
    	_	= 0000000123i
    	_	= 0000056789i
    	_	= 1234i
    	_	= 1234567i
    
    	_	= 0i
    	_	= 0_0i
    	_	= 0_8i
    	_	= 0_000_000_000i
    	_	= 0_123i
    	_	= 0_000_000_123i
    	_	= 0_000_056_789i
    	_	= 1_234i
    	_	= 1_234_567i
    
    	_	= 0.i
    	_	= 123.i
    	_	= 0123.i
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 21:54:06 UTC 2020
    - 2K bytes
    - Viewed (0)
  8. src/go/printer/testdata/go2numbers.input

    	_ = 0x12_34.P1_2_3
    	_ = 0X1_2_3_4.P-1_2_3
    
    	// imaginaries
    	_ = 0i
    	_ = 00i
    	_ = 08i
    	_ = 0000000000i
    	_ = 0123i
    	_ = 0000000123i
    	_ = 0000056789i
    	_ = 1234i
    	_ = 1234567i
    
    	_ = 0i
    	_ = 0_0i
    	_ = 0_8i
    	_ = 0_000_000_000i
    	_ = 0_123i
    	_ = 0_000_000_123i
    	_ = 0_000_056_789i
    	_ = 1_234i
    	_ = 1_234_567i
    
    	_ = 0.i
    	_ = 123.i
    	_ = 0123.i
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 21:54:06 UTC 2020
    - 2K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/asm/testdata/ppc64.s

    	MOVD $-32768, R6                // 38c08000
    	MOVD $1234567, R5               // 6405001260a5d687 or 0600001238a0d687
    	MOVW $1, R3                     // 38600001
    	MOVW $-1, R4                    // 3880ffff
    	MOVW $65535, R5                 // 6005ffff
    	MOVW $65536, R6                 // 3cc00001
    	MOVW $-32767, R5                // 38a08001
    	MOVW $-32768, R6                // 38c08000
    	MOVW $1234567, R5               // 6405001260a5d687 or 0600001238a0d687
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/collect/Collections2Test.java

        assertPermutationsCount(6, Collections2.permutations(newArrayList(1, 2, 3)));
        assertPermutationsCount(5040, Collections2.permutations(newArrayList(1, 2, 3, 4, 5, 6, 7)));
        assertPermutationsCount(40320, Collections2.permutations(newArrayList(1, 2, 3, 4, 5, 6, 7, 8)));
      }
    
      public void testPermutationSetSizeOverflow() {
        // 13 elements overflow an int
        assertEquals(
            Integer.MAX_VALUE,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 10:16:44 UTC 2024
    - 19.7K bytes
    - Viewed (0)
Back to top