Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 880 for emptyRest (0.25 sec)

  1. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/project/TypeSafeProjectAccessorsSchemaBuildingComponent.kt

                isHiddenInDeclarativeDsl = false,
                isDirectAccessOnly = false,
                claimedFunctions = emptyList()
            )
        }
    
        override fun propertyExtractors(): List<PropertyExtractor> = when (projectAccessorsExtension) {
            null -> emptyList()
            else -> listOf(
                TypesafeProjectPropertyProducer(),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:07 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/accessors/ProjectSchemaTest.kt

    }
    
    
    internal
    fun projectSchemaWith(
        extensions: TypedProjectSchemaEntryList = emptyList(),
        conventions: TypedProjectSchemaEntryList = emptyList(),
        tasks: TypedProjectSchemaEntryList = emptyList(),
        containerElements: TypedProjectSchemaEntryList = emptyList(),
        configurations: List<String> = emptyList()
    ) = TypedProjectSchema(
        extensions = extensions,
        conventions = conventions,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/processing/AnnotationProcessorDetector.java

                    return Collections.emptyList();
                }
            }
    
            private List<String> getProcessorClassNames(File classesDir) throws IOException {
                File processorDeclaration = new File(classesDir, PROCESSOR_DECLARATION);
                if (!processorDeclaration.isFile()) {
                    return Collections.emptyList();
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  4. android/guava-testlib/test/com/google/common/collect/testing/features/FeatureUtilTest.java

                Collections.<Feature<?>>emptySet()));
    
        assertEquals(
            FeatureUtil.buildTesterRequirements(ExampleDerivedInterfaceTester.class),
            new TesterRequirements(
                Sets.<Feature<?>>newHashSet(
                    ExampleBaseFeature.BASE_FEATURE_1, ExampleDerivedFeature.DERIVED_FEATURE_2),
                Collections.<Feature<?>>emptySet()));
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/plugin/prefix/DefaultPluginPrefixRequest.java

     */
    public class DefaultPluginPrefixRequest implements PluginPrefixRequest {
    
        private String prefix;
    
        private List<String> pluginGroups = Collections.emptyList();
    
        private Model pom;
    
        private List<RemoteRepository> repositories = Collections.emptyList();
    
        private RepositorySystemSession session;
    
        /**
         * Creates an empty request.
         */
        public DefaultPluginPrefixRequest() {}
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/provider/ScriptApiTest.kt

                ),
                equalTo(emptyList())
            )
        }
    
        @Test
        fun `IDE init script template is backwards compatible`() {
            @Suppress("deprecation")
            assertThat(
                KotlinInitScript::class.declaredMembers.filter { it.isPublic }.missingMembersFrom(
                    KotlinGradleScriptTemplate::class
                ),
                equalTo(emptyList())
            )
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 9K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/DirectNodeNoInputsModelAction.java

            super(subjectReference, descriptor, Collections.<ModelReference<?>>emptyList());
            this.action = action;
        }
    
        public static <T> ModelAction of(ModelReference<T> reference, ModelRuleDescriptor descriptor, final Action<? super MutableModelNode> action) {
            return new AbstractModelAction<T>(reference, descriptor, Collections.<ModelReference<?>>emptyList()) {
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. analysis/analysis-api-impl-base/src/org/jetbrains/kotlin/analysis/api/impl/base/components/KtSymbolDeclarationOverridesProviderBase.kt

            generatedPrimaryConstructorProperty?.let { return getAllOverriddenSymbols(it) }
            return emptyList()
        }
    
        protected fun KaValueParameterSymbol.getDirectlyOverriddenSymbols(): List<KaCallableSymbol> {
            generatedPrimaryConstructorProperty?.let { return getDirectlyOverriddenSymbols(it) }
            return emptyList()
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1K bytes
    - Viewed (0)
  9. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/resolution.kt

        val nestedObjectAccess: List<NestedObjectAccessRecord>,
        val errors: List<ResolutionError>,
        val conventionAssignments: List<AssignmentRecord> = emptyList(),
        val conventionAdditions: List<DataAdditionRecord> = emptyList(),
        val conventionNestedObjectAccess: List<NestedObjectAccessRecord> = emptyList()
    )
    
    
    data class DataAdditionRecord(val container: ObjectOrigin, val dataObject: ObjectOrigin)
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:46 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/resolver/SourcePathProvider.kt

        ): ClassPath {
            val gradleKotlinDslJar = classPath.filter(::isGradleKotlinDslJar)
            val gradleSourceRoots = gradleHomeDir?.let { sourceRootsOf(it, sourceDistributionResolver) } ?: emptyList()
    
            // If the script file is known, determine its type
            val scriptType = scriptFile?.let {
                KotlinScriptTypeMatch.forFile(it)?.scriptType
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 12:20:51 UTC 2023
    - 3.1K bytes
    - Viewed (0)
Back to top