Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 93 for ArrayType (0.17 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-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/IsolatedArray.java

        public static final IsolatedArray EMPTY = empty(Object.class);
        private final Class<?> arrayType;
    
        public IsolatedArray(ImmutableList<Isolatable<?>> elements, Class<?> arrayType) {
            super(elements);
            this.arrayType = arrayType;
        }
    
        @Override
        public ValueSnapshot asSnapshot() {
            if (elements.isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. src/cmd/compile/internal/pkginit/initAsanGlobals.go

    	lname := typecheck.Lookup
    	tconv := typecheck.ConvNop
    	// Make a global array of asanGlobalStruct type.
    	// var asanglobals []asanGlobalStruct
    	arraytype := types.NewArray(asanGlobalStruct, int64(len(InstrumentGlobalsMap)))
    	symG := lname(".asanglobals")
    	globals := ir.NewNameAt(base.Pos, symG, arraytype)
    	globals.Class = ir.PEXTERN
    	symG.Def = globals
    	typecheck.Target.Externs = append(typecheck.Target.Externs, globals)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 17 19:36:24 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/adapter/TypeInspector.java

                    visit(bound, types, preventEndlessRecursiveSet);
                }
            } else if (type instanceof GenericArrayType) {
                GenericArrayType arrayType = (GenericArrayType) type;
                visit(arrayType.getGenericComponentType(), types, preventEndlessRecursiveSet);
            } else if (type instanceof TypeVariable) {
                TypeVariable<?> typeVariable = (TypeVariable) type;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  9. 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)
  10. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/modelreader/impl/TypeMirrorToType.java

    package org.gradle.internal.instrumentation.processor.modelreader.impl;
    
    import org.objectweb.asm.Type;
    
    import javax.lang.model.element.Element;
    import javax.lang.model.element.PackageElement;
    import javax.lang.model.type.ArrayType;
    import javax.lang.model.type.DeclaredType;
    import javax.lang.model.type.ErrorType;
    import javax.lang.model.type.ExecutableType;
    import javax.lang.model.type.IntersectionType;
    import javax.lang.model.type.NoType;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 4.6K bytes
    - Viewed (0)
Back to top