Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for List2 (0.1 sec)

  1. test/typeparam/list2.go

    cui fliter <******@****.***> 1711121504 +0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  2. src/go/doc/comment/testdata/list2.txt

    Russ Cox <******@****.***> 1649018718 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:48 UTC 2022
    - 529 bytes
    - Viewed (0)
  3. src/testing/fstest/testfs.go

    			}
    		}
    	}
    
    	// Check fs.ReadDir as well.
    	list2, err = fs.ReadDir(t.fsys, dir)
    	if err != nil {
    		t.errorf("%s: fs.ReadDir: %w", dir, err)
    		return
    	}
    	t.checkDirList(dir, "first Open+ReadDir(-1) vs fs.ReadDir", list, list2)
    
    	for i := 0; i+1 < len(list2); i++ {
    		if list2[i].Name() >= list2[i+1].Name() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/reflect/AbstractInvocationHandlerTest.java

            .addEqualityGroup(
                newDelegatingListWithEquals(LIST2),
                newProxyWithSubHandler1(LIST2), // Makes sure type of handler doesn't affect equality
                newProxyWithSubHandler2(LIST2))
            .addEqualityGroup(newDelegatingIterableWithEquals(LIST2)) // different interface
            .testEquals();
      }
    
      @SuppressWarnings("unchecked") // proxy of List<String>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 17 15:49:06 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/reflect/AbstractInvocationHandlerTest.java

            .addEqualityGroup(
                newDelegatingListWithEquals(LIST2),
                newProxyWithSubHandler1(LIST2), // Makes sure type of handler doesn't affect equality
                newProxyWithSubHandler2(LIST2))
            .addEqualityGroup(newDelegatingIterableWithEquals(LIST2)) // different interface
            .testEquals();
      }
    
      @SuppressWarnings("unchecked") // proxy of List<String>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 17 15:49:06 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/test/api_meta_help_test.go

    		{
    			in:  &ListV1{},
    			out: []interface{}{},
    		},
    		{
    			in:  &List{Items: list1},
    			out: []interface{}{list1[0], list1[1]},
    		},
    		{
    			in:    list2,
    			out:   []interface{}{&runtime.Unknown{Raw: list2.Items[0].Raw}, &runtime.Unknown{Raw: list2.Items[1].Raw}, list2.Items[2].Object},
    			equal: true,
    		},
    		{
    			in:  list3,
    			out: []interface{}{list3.Items[0], list3.Items[1]},
    		},
    		{
    			in:  list4,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/core/collection/MultiIteratorTest.java

        /**
         *
         */
        @Test
        public void test() {
            final List<String> list1 = asList("Foo", "Bar");
            final List<String> list2 = asList("Baz");
    
            @SuppressWarnings("unchecked")
            final Iterator<String> it = new MultiIterator<String>(list1.iterator(), list2.iterator());
    
            assertThat(it.hasNext(), is(true));
            assertThat(it.next(), is("Foo"));
    
            assertThat(it.hasNext(), is(true));
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractNamedDomainObjectContainerTest.groovy

        def "can refer to properties and methods of owner"() {
            new DynamicOwner().configure(container)
    
            expect:
            container.asMap.keySet() == ['list1', 'list2'] as Set
            container.list1.prop == 'list1'
            container.list2.prop == 'list2'
        }
    
        def "has public type"() {
            expect:
            container.publicType == new TypeOf<NamedDomainObjectContainer<TestObject>>() {}
        }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 27 06:24:30 UTC 2018
    - 11.4K bytes
    - Viewed (0)
  9. src/go/printer/testdata/doc.input

    package p
    
    /*
    Doc comment.
      - List1.
    
      - List2.
    */
    var X int
    
    /* erroneous doc comment */
    var Y int
    
    /*
     * Another erroneous
     * doc comment.
     */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:50 UTC 2022
    - 159 bytes
    - Viewed (0)
  10. src/go/printer/testdata/doc.golden

    package p
    
    /*
    Doc comment.
    
      - List1.
    
      - List2.
    */
    var X int
    
    /* erroneous doc comment */
    var Y int
    
    /*
     * Another erroneous
     * doc comment.
     */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:50 UTC 2022
    - 160 bytes
    - Viewed (0)
Back to top