Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 205 for Classes (0.35 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/ClassLoaderUtils.java

        }
    
        /**
         * Returns the ClassLoader that contains the Java platform classes only. This is different to {@link ClassLoader#getSystemClassLoader()}, which includes the application classes in addition to the
         * platform classes.
         */
        public static ClassLoader getPlatformClassLoader() {
            return ClassLoader.getSystemClassLoader().getParent();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/build-process-services/src/main/java/org/gradle/api/internal/classpath/DefaultModuleRegistry.java

            suffixes.add(("/" + projectDirName + "/src/main/resources").replace('/', File.separatorChar));
            suffixes.add(("/" + projectDirName + "/build/classes/java/main").replace('/', File.separatorChar));
            suffixes.add(("/" + projectDirName + "/build/classes/groovy/main").replace('/', File.separatorChar));
            suffixes.add(("/" + projectDirName + "/build/resources/main").replace('/', File.separatorChar));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  3. platforms/jvm/language-jvm/src/main/java/org/gradle/api/tasks/compile/CompileOptions.java

        }
    
        /**
         * Tells whether to log details of usage of deprecated members or classes. Defaults to {@code false}.
         */
        @Console
        public boolean isDeprecation() {
            return deprecation;
        }
    
        /**
         * Sets whether to log details of usage of deprecated members or classes. Defaults to {@code false}.
         */
        public void setDeprecation(boolean deprecation) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  4. 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)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/logging.adoc

    include::sample[dir="snippets/tutorial/logging/groovy",files="build.gradle[tags=use-logger-placeholder]"]
    ====
    
    You can also hook into Gradle's logging system from within other classes used in the build (classes from the `buildSrc` directory, for example) with an SLF4J logger.
    You can use this logger the same way as you use the provided logger in the build script.
    
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 18:32:47 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  6. 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)
  7. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/api/plugins/ApplicationPluginIntegrationTest.groovy

            assert file("build/install/sample/not-the-root/bin/sample").permissions == "rwxr-xr-x"
        }
    
        def "runs the classes folder for traditional applications"() {
            when:
            succeeds("run")
    
            then:
            executed(':compileJava', ':processResources', ':classes', ':run')
        }
    
        @Requires(UnitTestPreconditions.Jdk9OrLater)
        def "runs the jar for modular applications"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/metaobject/BeanDynamicObject.java

                }
                Class[] classes = new Class[arguments.length];
                for (int i = 0; i < arguments.length; i++) {
                    Object argType = arguments[i];
                    if (argType == null) {
                        classes[i] = null;
                    } else {
                        classes[i] = argType.getClass();
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  9. platforms/core-runtime/client-services/src/main/java/org/gradle/internal/daemon/client/serialization/ClientSidePayloadClassLoaderRegistry.java

    /**
     * A {@link PayloadClassLoaderRegistry} used in the client JVM that maps classes loaded by application ClassLoaders. Inspects each class to calculate a minimal classpath to send across to the daemon process to recreate the ClassLoaders.
     *
     * <p>Delegates to another {@link PayloadClassLoaderRegistry} to take care of managing the classes serialized from the daemon.
     */
    @ThreadSafe
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:53:31 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/plugin/ScriptPluginClassLoadingIntegrationTest.groovy

            """
    
            when:
            succeeds "hello"
    
            then:
            output.contains "not in root"
            output.contains "not in sub"
        }
    
        def "script plugin cannot access classes added by buildscript in applying script"() {
            given:
            def jar = file("plugin.jar")
            pluginBuilder.addPlugin("project.task('hello')")
            pluginBuilder.publishTo(executer, jar)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:34 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top