Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 64 for ArrayType (0.11 sec)

  1. analysis/analysis-api/testData/annotations/annotationsOnDeclaration/direct/arrayType.txt

    Yan Zhulanow <******@****.***> 1713282657 +0900
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Apr 25 07:15:56 UTC 2024
    - 122 bytes
    - Viewed (0)
  2. analysis/analysis-api/testData/annotations/annotationsOnDeclaration/direct/arrayType.kt

    Yan Zhulanow <******@****.***> 1713282657 +0900
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Apr 25 07:15:56 UTC 2024
    - 89 bytes
    - Viewed (0)
  3. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorParametersKotlinIntegrationTest.groovy

        }
    
        private TestFile withRunWorkTaskOfPrimitiveArrayListProperty(IsolationMode isolationMode, String primitiveType) {
            def fixture = KotlinPrimitiveArrayFixture.of(primitiveType)
            def propertyType = "ListProperty<$fixture.arrayType>"
            def propertyValue = "listOf($fixture.arrayValue, $fixture.arrayValue)"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 11 20:22:02 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/ArrayOfPrimitiveValueSnapshot.java

                    return DecoderExtensions.readLengthPrefixedBooleans(decoder);
                }
            };
    
            public final Class<?> arrayType;
    
            PrimitiveType(Class<?> arrayType) {
                this.arrayType = arrayType;
            }
    
            public abstract Object clone(Object array);
    
            public abstract boolean equals(Object x, Object y);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/DefaultIsolatableFactory.java

            }
    
            @Override
            public Isolatable<?> emptyArray(Class<?> arrayType) {
                return IsolatedArray.empty(arrayType);
            }
    
            @Override
            public Isolatable<?> array(ImmutableList<Isolatable<?>> elements, Class<?> arrayType) {
                return new IsolatedArray(elements, arrayType);
            }
    
            @Override
            public Isolatable<?> primitiveArray(Object value) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:53:34 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/IsolatedCodecs.kt

        override suspend fun WriteContext.encode(value: IsolatedArray) {
            writeClass(value.arrayType)
            write(value.elements)
        }
    
        override suspend fun ReadContext.decode(): IsolatedArray {
            val arrayType = readClass()
            val elements = readNonNull<ImmutableList<Isolatable<*>>>()
            return IsolatedArray(elements, arrayType)
        }
    }
    
    
    object StringValueSnapshotCodec : Codec<StringValueSnapshot> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  7. src/internal/abi/type.go

    func (t *Type) MapType() *MapType {
    	if t.Kind() != Map {
    		return nil
    	}
    	return (*MapType)(unsafe.Pointer(t))
    }
    
    // ArrayType returns t cast to a *ArrayType, or nil if its tag does not match.
    func (t *Type) ArrayType() *ArrayType {
    	if t.Kind() != Array {
    		return nil
    	}
    	return (*ArrayType)(unsafe.Pointer(t))
    }
    
    // FuncType returns t cast to a *FuncType, or nil if its tag does not match.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:09:59 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/DefaultValueSnapshotter.java

            }
    
            @Override
            public ValueSnapshot emptyArray(Class<?> arrayType) {
                return ArrayValueSnapshot.EMPTY;
            }
    
            @Override
            public ValueSnapshot array(ImmutableList<ValueSnapshot> elements, Class<?> arrayType) {
                return new ArrayValueSnapshot(elements);
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 11 20:22:01 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  9. src/encoding/gob/type.go

    	registerBasics()
    	wireTypeUserInfo = userType(wireTypeType)
    }
    
    // Array type
    type arrayType struct {
    	CommonType
    	Elem typeId
    	Len  int
    }
    
    func newArrayType(name string) *arrayType {
    	a := &arrayType{CommonType{Name: name}, 0, 0}
    	return a
    }
    
    func (a *arrayType) init(elem gobType, len int) {
    	// Set our type id before evaluating the element's, in case it's our own.
    	setTypeId(a)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/annotations/FirIdeDependentAnalysisSourceModuleAnalysisApiAnnotationsOnDeclarationsTestGenerated.java

          runTest("analysis/analysis-api/testData/annotations/annotationsOnDeclaration/direct/annotatedType.kt");
        }
    
        @Test
        @TestMetadata("arrayType.kt")
        public void testArrayType() {
          runTest("analysis/analysis-api/testData/annotations/annotationsOnDeclaration/direct/arrayType.kt");
        }
    
        @Test
        @TestMetadata("arrayType2.kt")
        public void testArrayType2() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 13 09:31:11 UTC 2024
    - 8.2K bytes
    - Viewed (0)
Back to top