Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,540 for Classes (0.24 sec)

  1. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/idea/IdeaIntegrationTest/overwritesExistingDependencies/expectedFiles/root.iml.xml

        <orderEntry type="sourceFolder" forTests="false"/>
        <orderEntry type="module-library" scope="RUNTIME">
          <library>
            <CLASSES>
              <root url="jar://@CACHE_DIR@/commons-collections/commons-collections/3.2.2/@SHA1@/commons-collections-3.2.2.jar!/"/>
            </CLASSES>
            <JAVADOC/>
            <SOURCES>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/compile/ScalaCompileRelocationIntegrationTest.groovy

            return "compileScala.scalaCompileOptions.forkOptions"
        }
    
        @Override
        protected void setupProjectIn(TestFile projectDir) {
            def classes = new ScalaCompilationFixture(projectDir)
            classes.baseline()
            projectDir.file("build.gradle") << classes.buildScript()
        }
    
        @Override
        protected void prepareForRelocation(TestFile projectDir) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/daemon-protocol/src/testFixtures/groovy/org/gradle/tooling/internal/provider/AbstractClassGraphSpec.groovy

         * Returns the classpath for the given classes.
         */
        List<File> originalClassPath(Class<?>... classes) {
            return classes.collect { ClasspathUtil.getClasspathForClass(it) }
        }
    
    
        /**
         * Makes a copy of the given classes and returns the classpath for these copies. Each class is added to its own classpath root.
         */
        List<File> isolatedClasses(Class<?>... classes) {
            return classes.collect {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 00:13:09 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/ModuleLibrary.java

        }
    
        public void setClasses(Set<Path> classes) {
            this.classes = classes;
        }
    
        /**
         * A set of directories containing Jar files.
         */
        public Set<JarDirectory> getJarDirectories() {
            return jarDirectories;
        }
    
        public void setJarDirectories(Set<JarDirectory> jarDirectories) {
            this.jarDirectories = jarDirectories;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 13:57:30 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. src/runtime/metrics/doc.go

    		measurements. Compare only with other /cpu/classes metrics.
    
    	/cpu/classes/gc/total:cpu-seconds
    		Estimated total CPU time spent performing GC tasks. This metric
    		is an overestimate, and not directly comparable to system CPU
    		time measurements. Compare only with other /cpu/classes metrics.
    		Sum of all metrics in /cpu/classes/gc.
    
    	/cpu/classes/idle:cpu-seconds
    		Estimated total available CPU time not spent executing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:43 UTC 2024
    - 20K bytes
    - Viewed (0)
  6. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/tasks/JacocoReportBase.java

         *
         * @return source directories for the classes reported on
         * @see #getAllClassDirs()
         */
        @Internal
        public FileCollection getAllSourceDirs() {
            return sourceDirectories.plus(getAdditionalSourceDirs());
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 23:19:29 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  7. platforms/jvm/normalization-java/src/test/groovy/org/gradle/internal/normalization/java/ApiClassExtractorTest.groovy

                        public static void STATIC_IN_B() {}
                        public void foo() {}
                    }
                '''
            )
    
            when:
            def clazzA = api.classes['com.acme.A']
            def clazzB = api.classes['com.acme.B']
            def extractedA = api.extractAndLoadApiClassFrom(clazzA)
            def extractedB = api.extractAndLoadApiClassFrom(clazzB)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  8. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/OutgoingVariantsReportTaskIntegrationTest.groovy

            - org.gradle.jvm.version         = ${JavaVersion.current().majorVersion}
            - org.gradle.libraryelements     = classes
            - org.gradle.usage               = java-api
        Artifacts
            - $builtMainClassesPath (artifactType = java-classes-directory)
    
    --------------------------------------------------
    Variant archives
    --------------------------------------------------
    Configuration for archive artifacts.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 50K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/testFixtures/kotlin/org/gradle/kotlin/dsl/fixtures/zipUtils.kt

    package org.gradle.kotlin.dsl.fixtures
    
    import kotlin.reflect.KClass
    
    
    fun classEntriesFor(classes: Array<out KClass<*>>): Sequence<Pair<String, ByteArray>> =
        classes.asSequence().map { classEntryFor(it) }
    
    
    fun classEntriesFor(vararg classes: Class<*>): Sequence<Pair<String, ByteArray>> =
        classes.asSequence().map { classEntryFor(it) }
    
    
    fun classEntryFor(clazz: KClass<*>): Pair<String, ByteArray> =
        classEntryFor(clazz.java)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 648 bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/JavaCompileSpec.java

        void setClassesToProcess(Set<String> classes);
    
        /**
         * Classes to process are already compiled classes that are passed to Java compiler.
         * They are passed to Java compiler since they are required by some annotation processor to revisit.
         */
        Set<String> getClassesToProcess();
    
        void setClassesToCompile(Set<String> classes);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 13:38:58 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top