Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 844 for emptyRest (0.13 sec)

  1. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/resolver/KotlinBuildScriptModelRepositoryTest.kt

        data class StandardKotlinBuildScriptModel(
            private val classPath: List<File> = emptyList(),
            private val sourcePath: List<File> = emptyList(),
            private val implicitImports: List<String> = emptyList(),
            private val editorReports: List<EditorReport> = emptyList(),
            private val exceptions: List<String> = emptyList(),
            private val enclosingScriptProjectDir: File? = null
        ) : KotlinBuildScriptModel {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  2. guava-testlib/src/com/google/common/collect/testing/TestsForSetsInJavaUtil.java

        return Collections.emptySet();
      }
    
      protected Collection<Method> suppressForEmptySet() {
        return Collections.emptySet();
      }
    
      protected Collection<Method> suppressForEmptyNavigableSet() {
        return Collections.emptySet();
      }
    
      protected Collection<Method> suppressForEmptySortedSet() {
        return Collections.emptySet();
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  3. guava-testlib/src/com/google/common/collect/testing/TestsForMapsInJavaUtil.java

        return Collections.emptySet();
      }
    
      protected Collection<Method> suppressForCheckedNavigableMap() {
        return Collections.emptySet();
      }
    
      protected Collection<Method> suppressForCheckedSortedMap() {
        return Collections.emptySet();
      }
    
      protected Collection<Method> suppressForEmptyMap() {
        return Collections.emptySet();
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  4. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/eclipse/DefaultEclipseProject.java

            this.tasks = Collections.emptyList();
            this.children = Lists.newArrayList(children);
            this.classpath = Collections.emptyList();
            this.sourceDirectories = Collections.emptyList();
            this.projectDependencies = Collections.emptyList();
            this.projectNatures = Collections.emptyList();
            this.buildCommands = Collections.emptyList();
            this.classpathContainers = Collections.emptyList();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/accessors/ProjectSchemaHashCodeTest.kt

        }
    
        private
        fun hashCodeFor(
            extensions: TypedProjectSchemaEntryList = emptyList(),
            conventions: TypedProjectSchemaEntryList = emptyList(),
            tasks: TypedProjectSchemaEntryList = emptyList(),
            containerElements: TypedProjectSchemaEntryList = emptyList(),
            configurations: List<String> = emptyList()
        ) = hashCodeFor(
            projectSchemaWith(
                extensions = extensions,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/EmptySystemLibraries.java

    import java.util.Map;
    
    public class EmptySystemLibraries implements SystemLibraries {
        @Override
        public List<File> getIncludeDirs() {
            return Collections.emptyList();
        }
    
        @Override
        public List<File> getLibDirs() {
            return Collections.emptyList();
        }
    
        @Override
        public Map<String, String> getPreprocessorMacros() {
            return Collections.emptyMap();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/locking/LockOutOfDateException.java

    import java.util.List;
    
    import static java.util.Collections.emptyList;
    
    public class LockOutOfDateException extends GraphValidationException {
    
        private final List<String> errors;
    
        public LockOutOfDateException(String message) {
            super(message);
            this.errors = emptyList();
        }
    
        public List<String> getErrors() {
            return errors;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 30 12:42:26 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/packages/KotlinEmptyPackageProvider.kt

            emptySet()
    
        override fun getKotlinOnlySubPackagesFqNames(packageFqName: FqName, nameFilter: (Name) -> Boolean): Set<Name> = emptySet()
    
        override fun getPlatformSpecificSubPackagesFqNames(
            packageFqName: FqName,
            platform: TargetPlatform,
            nameFilter: (Name) -> Boolean,
        ): Set<Name> = emptySet()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. platforms/software/security/src/main/java/org/gradle/security/internal/KeyringStripper.java

                        ids = Collections.singletonList(new UserIDPacket(id.get()));
                        idSignatures = Collections.singletonList(Collections.emptyList());
                    } else {
                        ids = Collections.emptyList();
                        idSignatures = Collections.emptyList();
                    }
    
                    // unfortunately, the PGPPublicKey constructor is package private, so we need to use reflection
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  10. analysis/analysis-api-standalone/src/org/jetbrains/kotlin/analysis/project/structure/impl/KtScriptModuleImpl.kt

    import org.jetbrains.kotlin.psi.KtFile
    
    internal class KtScriptModuleImpl(
        override val directRegularDependencies: List<KtModule> = emptyList(),
        override val directDependsOnDependencies: List<KtModule> = emptyList(),
        override val directFriendDependencies: List<KtModule> = emptyList(),
        override val platform: TargetPlatform = JvmPlatforms.defaultJvmPlatform,
        override val project: Project,
        override val file: KtFile,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu May 23 15:47:25 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top