Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 105 for arrayType (0.32 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. subprojects/core-api/src/main/java/org/gradle/model/internal/type/GenericArrayTypeWrapper.java

        }
    
        @Override
        public boolean isAssignableFrom(TypeWrapper wrapper) {
            if (wrapper instanceof GenericArrayTypeWrapper) {
                GenericArrayTypeWrapper arrayType = (GenericArrayTypeWrapper) wrapper;
                return componentType.isAssignableFrom(arrayType.componentType);
            }
            return false;
        }
    
        @Override
        public void collectClasses(ImmutableList.Builder<Class<?>> builder) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 11 21:42:04 UTC 2018
    - 2.3K bytes
    - Viewed (0)
  8. src/cmd/gofmt/testdata/rewrite2.golden

    // Copyright 2011 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package p
    
    // Slices have nil Len values in the corresponding ast.ArrayType
    // node and reflect.NewValue(slice.Len) is an invalid reflect.Value.
    // The rewriter must not crash in that case. Was issue 1696.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 22 00:25:13 UTC 2014
    - 407 bytes
    - Viewed (0)
  9. src/cmd/gofmt/testdata/rewrite2.input

    // Copyright 2011 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package p
    
    // Slices have nil Len values in the corresponding ast.ArrayType
    // node and reflect.NewValue(slice.Len) is an invalid reflect.Value.
    // The rewriter must not crash in that case. Was issue 1696.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 22 00:25:13 UTC 2014
    - 406 bytes
    - Viewed (0)
  10. 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)
Back to top