Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 105 for Classes (0.15 sec)

  1. platforms/jvm/plugins-java/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = "Contains the Java plugin, and its supporting classes.  This plugin is used as the basis for building a Java library or application by more specific plugins, and is sometimes applied by other JVM language projects."
    
    dependencies {
        api(project(":core"))
        api(project(":core-api"))
        api(project(":language-java"))
        api(project(":plugins-jvm-test-suite"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. maven-di/src/main/java/org/apache/maven/di/impl/InjectorImpl.java

                            bindImplicit(clazz);
                        }
                    }
                }
            } catch (Exception e) {
                throw new DIException("Error while discovering DI classes from classLoader", e);
            }
            return this;
        }
    
        public Injector bindScope(Class<? extends Annotation> scopeAnnotation, Scope scope) {
            return bindScope(scopeAnnotation, () -> scope);
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-application/build.gradle.kts

     * limitations under the License.
     */
    
    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = "Contains the Application plugin, and its supporting classes.  This plugin is used for creating runnable Java application projects."
    
    dependencies {
        api(project(":core"))
        api(project(":core-api"))
    
        api(libs.inject)
        api(libs.jsr305)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10TypeProvider.kt

        private fun areClassesOrInterfacesIncompatible(classesOrInterfaces: Collection<ClassDescriptor>): Boolean {
            val classes = classesOrInterfaces.filter { !it.isInterfaceLike }
            return when {
                classes.size >= 2 -> true
                !classes.any { it.isFinalOrEnum } -> false
                classesOrInterfaces.size > classes.size -> true
                else -> false
            }
        }
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  5. platforms/ide/ide/build.gradle.kts

            because("test fixtures export the ConsoleOutput class")
        }
        testFixturesApi(project(":tooling-api")) {
            because("test fixtures export the EclipseWorkspace and EclipseWorkspaceProject classes")
        }
        testFixturesImplementation(project(":dependency-management"))
        testFixturesImplementation(project(":internal-integ-testing"))
        testFixturesImplementation(project(":model-core"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/detection/ForkedTestClasspathFactory.java

                );
            }
    
            // There are some framework implementation dependencies which are not present on the testRuntimeClasspath.
            // It is not sufficient to just load the missing modules, since some classes which are referenced
            // by the loaded modules may exist in the versions of the present dependencies from the test classpath.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/qos_container_manager_linux.go

    	// Top level for Qos containers are created only for Burstable
    	// and Best Effort classes
    	qosClasses := map[v1.PodQOSClass]CgroupName{
    		v1.PodQOSBurstable:  NewCgroupName(rootContainer, strings.ToLower(string(v1.PodQOSBurstable))),
    		v1.PodQOSBestEffort: NewCgroupName(rootContainer, strings.ToLower(string(v1.PodQOSBestEffort))),
    	}
    
    	// Create containers for both qos classes
    	for qosClass, containerName := range qosClasses {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 20:42:59 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/ProcessInTransformIntegrationTest.groovy

                    ${TransformFixture.TRANSFORM_SOURCE_CONFIGURATION} project(":subproject")
                }
    
                tasks.named("classes") {
                    dependsOn("$task")
                }
                """
            }
    
            buildFile("""
            tasks.register("check") {}
            """)
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/FilesInTransformIntegrationTest.groovy

                    ${TransformFixture.TRANSFORM_SOURCE_CONFIGURATION} project(":subproject")
                }
    
                tasks.named("classes") {
                    dependsOn("$task")
                }
                """
            }
    
            buildFile("""
            tasks.register("check") {}
            """)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheCompositeBuildProblemReportingIntegrationTest.groovy

                            implementationClass = "test.PluginImpl"
                        }
                    }
                }
                // Should not be reported
                gradle.buildFinished { }
                classes {
                    inputs.property('p', project).optional(true)
                    doLast { t -> t.project }
                }
                // Should be reported
                tasks.register('broken') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top