Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 922 for Classes (0.14 sec)

  1. 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)
  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. testing/architecture-test/src/test/java/org/gradle/architecture/test/TempDirectoryCreationControlTest.java

    @AnalyzeClasses(packages = "org.gradle")
    public class TempDirectoryCreationControlTest {
    
        private static final String RATIONALE =
            "for security reasons, all temporary file creation should through TemporaryFileProvider";
    
        @ArchTest
        public static final ArchRule forbid_illegal_calls_to_File_createTempFile =
            classes()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. testing/architecture-test/src/test/java/org/gradle/architecture/test/FreezeInstructionsPrintingArchRule.java

        private final ArchRule delegate;
    
        public FreezeInstructionsPrintingArchRule(ArchRule delegate) {
            this.delegate = delegate;
        }
    
        @Override
        public void check(JavaClasses classes) {
            Assertions.check(this, classes);
        }
    
        @Override
        public ArchRule because(String reason) {
            return new FreezeInstructionsPrintingArchRule(delegate.because(reason));
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/scopes/KtScope.kt

        /**
         * Return a sequence of [KaClassifierSymbol] which current scope contain if classifier name matches [nameFilter]. The sequence includes:
         * nested classes, inner classes, nested type aliases for the class scope, and top-level classes and top-level type aliases for file scope.
         *
         * This function needs to retrieve a set of all possible names before processing the scope.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  6. testing/internal-testing/src/main/groovy/org/gradle/integtests/fixtures/TestExecutionResult.java

        String EXECUTION_FAILURE = "failed to execute tests";
    
        /**
         * Asserts that the given test classes (and only the given test classes) were executed.
         */
        TestExecutionResult assertTestClassesExecuted(String... testClasses);
    
        /**
         * Asserts that the given test classes (and only the given test classes) were <strong>NOT</strong> executed.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/recomp/AbstractRecompilationSpecProvider.java

         * collects all classes that are inside these sources, but were not detected as a dependency of changed classes.
         * This is important so all .class files that will be re-created are removed before compilation, otherwise
         * it confuse a compiler: for example Groovy compiler could generate incorrect classes for Spock.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:55:46 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/BaseIncrementalCompilationAfterFailureIntegrationTest.groovy

            !file("build/classes/$languageName/main/a/").exists()
            !file("build/classes/$languageName/main/c/").exists()
    
            when:
            b.text = "package b; class B {}"
            run language.compileTaskName
    
            then:
            outputs.recompiledClasses("A", "C")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:30 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportVariantDetailsIntegrationTest.groovy

                    'org.gradle.libraryelements': of('jar', 'classes'),
                    'org.gradle.usage': of('java-api', 'java-api'),
                    'org.gradle.jvm.environment': of('', 'standard-jvm')
                ])}
    
    ---------------------
    Unselected Variant(s)
    ---------------------
    
    ${variantOf('apiElements-classes', [
                    'org.gradle.category': of('library', 'library'),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  10. maven-core/src/main/mdo/extension.mdo

              </association>
              <description><![CDATA[Restricts the classes/resources from the current artifact's CoreExtension class realm that are exposed. Values ending with ".*" expose all classes/resources which are directly contained in the given package in binary form. 
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 07 21:28:01 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top