Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for rawList (0.19 sec)

  1. subprojects/core-api/src/test/groovy/org/gradle/model/internal/core/ModelTypeTest.groovy

            def same = ModelType.of(String)
            def different = ModelType.of(Number)
            def rawList = ModelType.of(List)
            def list = new ModelType<List<String>>() {}
    
            Matchers.strictlyEquals(type, same)
            Matchers.strictlyEquals(rawList, rawList)
            type != different
            rawList != list
        }
    
        def "class can be assigned from itself or subtypes"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 11 21:42:04 UTC 2018
    - 22.3K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/ArrayTable.java

      private ArrayTable(ArrayTable<R, C, V> table) {
        rowList = table.rowList;
        columnList = table.columnList;
        rowKeyToIndex = table.rowKeyToIndex;
        columnKeyToIndex = table.columnKeyToIndex;
        @SuppressWarnings("unchecked")
        @Nullable
        V[][] copy = (@Nullable V[][]) new Object[rowList.size()][columnList.size()];
        array = copy;
        for (int i = 0; i < rowList.size(); i++) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/ArrayTable.java

      private ArrayTable(ArrayTable<R, C, V> table) {
        rowList = table.rowList;
        columnList = table.columnList;
        rowKeyToIndex = table.rowKeyToIndex;
        columnKeyToIndex = table.columnKeyToIndex;
        @SuppressWarnings("unchecked")
        @Nullable
        V[][] copy = (@Nullable V[][]) new Object[rowList.size()][columnList.size()];
        array = copy;
        for (int i = 0; i < rowList.size(); i++) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_pods_linux_test.go

    				},
    				{
    					PathInContainer: "/dev/xvdb",
    					PathOnHost:      "/dev/disk/by-id/diskUuid",
    					Permissions:     "mrw",
    				},
    				{
    					PathInContainer: "/mnt/rawdisk",
    					PathOnHost:      "/var/lib/rawdisk",
    					Permissions:     "r",
    				},
    			},
    			expectErr: false,
    		},
    		"invalid absolute Path": {
    			podVolumes: kubecontainer.VolumeMap{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 18:00:59 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  5. src/cmd/link/link_test.go

    the streets, much as the sun may, from the spongey fields, be seen to loom by husbandman and ploughboy. Most of the shops lighted two hours before their time—as the gas seems to know, for it has a haggard and unwilling look.  	The raw afternoon is rawest, and the dense fog is densest, and the muddy streets are muddiest near that leaden-headed old obstruction, appropriate ornament for the threshold of a leaden-headed old corporation, Temple Bar. And hard by Temple Bar, in Lincoln’s Inn Hall, at the...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
Back to top