Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,765 for Classes (0.1 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/transform/DefaultArtifactVariantSelectorFactoryTest.groovy

            set.variants >> variants
            variant1.attributes >> typeAttributes("classes")
            variant1.artifacts >> variant1Artifacts
            variant2.attributes >> typeAttributes("jar")
    
            consumerSchema.withProducer(producerSchema) >> attributeMatcher
            attributeMatcher.matches(_ as Collection, typeAttributes("classes"), _ as AttributeMatchingExplanationBuilder) >> [variant1]
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/ClassLoaderStructureProvider.java

            MixInLegacyTypesClassLoader.Spec workerExtensionSpec = classLoaderRegistry.getGradleWorkerExtensionSpec();
            FilteringClassLoader.Spec gradleApiFilter = classLoaderRegistry.getGradleApiFilterSpec();
            VisitableURLClassLoader.Spec userSpec = getUserSpec("worker-loader", additionalClasspath, classes);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:35 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/antMigration/importBuild/groovy/build.xml

        <property name="classes.dir" value="${build.dir}/classes"/>
    
        <target name="cleanAll">
            <delete dir="${build.dir}"/>
        </target>
    
        <target name="prepare">
            <tstamp>
                <format property="now" pattern="yyyy-MM-dd hh:mm:ss"/>
            </tstamp>
        </target>
    
        <target name="build" depends="prepare">
            <mkdir dir="${classes.dir}"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 958 bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/accessors/TestWithClassPath.kt

        protected
        fun jarClassPathWith(vararg classes: KClass<*>): ClassPath =
            jarClassPathWith("cp.jar", *classes)
    
        protected
        fun jarClassPathWith(path: String, vararg classes: KClass<*>): ClassPath = classPathOf(
            file(path).also { jar ->
                zipTo(jar, classEntriesFor(classes))
            }
        )
    
        protected
        fun classPathWith(vararg classes: KClass<*>): ClassPath = classPathOf(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/DefaultTestSpec.java

        }
    
        public DefaultTestSpec(String taskPath, List<String> classes, Map<String, List<String>> methods, List<String> packages, List<String> patterns) {
            super(taskPath);
            this.packages = packages;
            this.classes = classes;
            this.methods = methods;
            this.patterns = patterns;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/initialization/ClassLoaderScope.java

        /**
         * Makes the provided classes visible to this scope, but not to children. The classes are loaded in their own ClassLoader whose parent is the export
         * ClassLoader of the parent scope.
         *
         * <p>Can not be called after being locked.
         *
         * @return this
         */
        ClassLoaderScope local(ClassPath classPath);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 20:19:43 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/scopes/FirJavaDeclaredMembersOnlyScope.kt

    ) : FirCallableFilteringScope(delegate) {
        init {
            // The `isDeclared` check is based on class IDs. Local classes don't have proper class IDs, but because this scope is used to
            // represent Java classes viewed from Kotlin code, we shouldn't be able to encounter any local Java classes.
            require(!owner.isLocal) {
                "Unexpected local Java class in ${FirJavaDeclaredMembersOnlyScope::class.simpleName}."
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Oct 10 13:38:00 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  8. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/idea/model/ProjectLibraryTest.groovy

            new ProjectLibrary(name: "lib1", classes:  [new File("class/one"), new File("class/two")]) ==
                    new ProjectLibrary(name: "lib1", classes: [new File("class/two"), new File("class/one")])
    
            new ProjectLibrary(name: "lib1") != new ProjectLibrary(name: "OTHER")
            new ProjectLibrary(name: "lib1", classes:  [new File("class/one"), new File("class/two")]) !=
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/TestSpec.java

         * @return this
         */
        TestSpec includeClass(String cls);
    
        /**
         * Adds the target test classes to the test execution.
         *
         * @see #includeClass(String)
         * @param classes The fully-qualified name of the target classes.
         * @return this
         */
        TestSpec includeClasses(Collection<String>  classes);
    
        /**
         * Adds the target test method to the test execution.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/fixture/AbstractTestingMultiVersionIntegrationTest.groovy

     *
     * The following depicts the general pattern of implementation where function-specific tests extend from this class,
     * while framework/engine-specific classes extend from the function-specific classes.  The framework/engine-specific
     * classes should provide the {@link BuildScriptConfiguration} and {@link TestSourceConfiguration} required by this
     * class via a reusable trait.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 6.6K bytes
    - Viewed (0)
Back to top