Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,932 for Classes (0.11 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/JavadocMemberLevel.java

     */
    public enum JavadocMemberLevel {
        /**
         * Shows only public classes and members.
         */
        PUBLIC,
        /**
         * Shows only protected and public classes and members. This is the default.
         */
        PROTECTED,
        /**
         * Shows only package, protected, and public classes and members.
         */
        PACKAGE,
        /**
         * Shows all classes and members.
         */
        PRIVATE
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. pkg/volume/util/storageclass_test.go

    		}
    	)
    
    	testCases := []struct {
    		name    string
    		classes []*storagev1.StorageClass
    		expect  *storagev1.StorageClass
    	}{
    
    		{
    			name: "no storage class",
    		},
    
    		{
    			name:    "no default storage class",
    			classes: []*storagev1.StorageClass{sc1, sc2},
    			expect:  nil,
    		},
    
    		{
    			name:    "one default storage class",
    			classes: []*storagev1.StorageClass{sc1, sc2, sc3},
    			expect:  sc3,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 18 14:18:11 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  9. pkg/volume/util/volumeattributesclass_test.go

    	testCases := []struct {
    		name       string
    		driverName string
    		classes    []*storagev1alpha1.VolumeAttributesClass
    		expect     *storagev1alpha1.VolumeAttributesClass
    	}{
    		{
    			name:       "no volume attributes class",
    			driverName: dirverName1,
    		},
    		{
    			name:       "no default volume attributes class",
    			driverName: dirverName1,
    			classes:    []*storagev1alpha1.VolumeAttributesClass{vac1, vac2, vac6},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:18:56 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  10. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/compile/IncrementalScalaCompileIntegrationTest.groovy

        }
    
        def recompilesDependentClasses() {
            given:
            run("classes")
    
            when: // Update interface, compile should fail
            file('src/main/scala/IPerson.scala').assertIsFile().copyFrom(file('NewIPerson.scala'))
    
            then:
            runAndFail("classes").assertHasDescription("Execution failed for task ':compileScala'.")
        }
    
        @Issue("gradle/gradle#13392")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 5.9K bytes
    - Viewed (0)
Back to top