Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for rawList (0.19 sec)

  1. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/annotations/AbstractAnalysisApiSpecificAnnotationOnDeclarationTest.kt

                }
    
                val rawList = renderAnnotation(annotationList[classId].single())
                val resolvedList = renderAnnotation(annotationList.single { it.classId == classId })
                testServices.assertions.assertEquals(resolvedList, rawList) {
                    "Result before and after resolve are different"
                }
    
                resolvedList
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/core/lang/MethodUtilTest.java

        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testGetElementTypeOfCollectionFromParameterType() throws Exception {
            Method m = Baz.class.getMethod("rawList", List.class);
            assertThat(MethodUtil.getElementTypeOfCollectionFromParameterType(m, 0), is(nullValue()));
    
            m = Baz.class.getMethod("genericList", List.class);
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/text/StyledTable.java

                );
                output.println();
                List<Row> rowList = model.rows;
                for (int i = 0; i < rowList.size(); i++) {
                    Row row = rowList.get(i);
                    output.style(row.style);
                    printRow(model, output, colWidths, row.text, ' ');
                    output.style(Normal);
                    if (i < rowList.size() - 1) {
                        output.println();
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 22 21:03:24 UTC 2022
    - 4K bytes
    - Viewed (0)
  6. 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)
  7. src/reflect/benchmark_test.go

    	}
    }
    
    func BenchmarkSliceLen(b *testing.B) {
    	for i := 0; i < b.N; i++ {
    		sinkAll.RawInt = sourceAll.SliceAny.Len()
    	}
    }
    
    func BenchmarkMapLen(b *testing.B) {
    	for i := 0; i < b.N; i++ {
    		sinkAll.RawInt = sourceAll.MapStringAny.Len()
    	}
    }
    
    func BenchmarkStringLen(b *testing.B) {
    	for i := 0; i < b.N; i++ {
    		sinkAll.RawInt = sourceAll.String.Len()
    	}
    }
    
    func BenchmarkArrayLen(b *testing.B) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Nov 19 17:09:03 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  8. 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)
  9. CODE_OF_CONDUCT.md

    
    ## Conflict Resolution
    
    Conflicts in an open source project can take many forms, from someone having a bad day and using harsh and hurtful language in the issue queue, to more serious instances such as sexist/racist statements or threats of violence, and everything in between.
    
    If the behavior is threatening or harassing, or for other reasons requires immediate escalation, please see below.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 05 18:43:16 UTC 2021
    - 5.2K bytes
    - Viewed (0)
  10. src/html/template/doc.go

    to produce
    
    	Hello, <b>World</b>!
    
    instead of the
    
    	Hello, &lt;b&gt;World&lt;b&gt;!
    
    that would have been produced if {{.}} was a regular string.
    
    # Security Model
    
    https://rawgit.com/mikesamuel/sanitized-jquery-templates/trunk/safetemplate.html#problem_definition defines "safe" as used by this package.
    
    This package assumes that template authors are trusted, that Execute's data
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:04:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
Back to top