Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for unpackType (0.21 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/annotations/AbstractTypeMetadataWalker.java

                } else {
                    TypeToken<?> getterType = propertyMetadata.getDeclaredType();
                    TypeMetadata typeMetadata = getTypeMetadata(unpackType(getterType).getRawType());
                    visitor.visitNested(typeMetadata, qualifiedName, propertyMetadata, null);
                }
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 14K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintChecker.kt

     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl.fingerprint
    
    import org.gradle.api.Describable
    import org.gradle.api.internal.GeneratedSubclasses.unpackType
    import org.gradle.api.internal.file.FileCollectionInternal
    import org.gradle.api.provider.ValueSource
    import org.gradle.api.provider.ValueSourceParameters
    import org.gradle.internal.cc.impl.CheckedFingerprint
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/caching/internal/services/AbstractBuildCacheControllerFactory.java

            private BuildCacheDescription(BuildCache buildCache, String type, ImmutableSortedMap<String, String> config) {
                this.className = GeneratedSubclasses.unpackType(buildCache).getName();
                this.push = buildCache.isPush();
                this.type = type;
                this.config = config;
            }
    
            @Override
            public String getClassName() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 17:08:26 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  4. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/tasks/PublishToIvyRepository.java

                public static CredentialsSpec of(String identity, Credentials credentials) {
                    return new CredentialsSpec(identity, (Class<? extends Credentials>) GeneratedSubclasses.unpackType(credentials));
                }
    
                public Class<? extends Credentials> getType() {
                    return type;
                }
    
                public String getIdentity() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/TaskNodeCodec.kt

            node.isolated()
            return node
        }
    
        private
        suspend fun WriteContext.writeTask(task: TaskInternal) {
            withDebugFrame({ task.path }) {
                val taskType = GeneratedSubclasses.unpackType(task)
                val projectPath = task.project.path
                val taskName = task.name
                writeClass(taskType)
                writeString(projectPath)
                writeString(taskName)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/tasks/execution/TaskExecution.java

        }
    
        @Override
        public void validate(WorkValidationContext validationContext) {
            Class<?> taskType = GeneratedSubclasses.unpackType(task);
            // TODO This should probably use the task class info store
            boolean cacheable = taskType.isAnnotationPresent(CacheableTask.class);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  7. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/JavaBasePlugin.java

            }
    
            @SuppressWarnings("deprecation")
            @Override
            @Nullable
            public Directory call() throws Exception {
                Method getter = GeneratedSubclasses.unpackType(compile).getMethod("getDestinationDir");
                if (getter.getDeclaringClass() == AbstractCompile.class) {
                    // Subclass has not overridden the getter, so ignore
                    return null;
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 19 22:14:22 UTC 2023
    - 28.3K bytes
    - Viewed (0)
Back to top