Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 619 for Classes (0.18 sec)

  1. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/report/DefaultTestReportTest.groovy

            index.assertHasOverallResult("failures")
    
            index.assertHasFailedTest('classes/org.gradle.failing.SomeIgnoredSomePassedSomeFailed', 'failed')
    
            index.assertHasIgnoredTest('classes/org.gradle.ignoring.SomeIgnoredSomePassed', 'ignored')
            index.assertHasIgnoredTest('classes/org.gradle.failing.SomeIgnoredSomePassedSomeFailed', 'ignored')
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  2. platforms/jvm/java-platform/src/test/java/org/gradle/internal/component/model/JavaEcosystemAttributeMatcherTest.groovy

            def apiElements = [attributes(Usage.JAVA_API, LibraryElements.JAR, 8),
                               attributes(Usage.JAVA_API, LibraryElements.CLASSES, 8)]
            def runtimeElements = [attributes(Usage.JAVA_RUNTIME, LibraryElements.JAR, 8),
                                   attributes(Usage.JAVA_RUNTIME, LibraryElements.CLASSES, 8)]
    
            when:
            def candidates = [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ArtifactDeclarationIntegrationTest.groovy

                artifact file('lib1.jar')
                variants {
                    classes {
                        attributes.attribute(Attribute.of('format', String), 'classes-dir')
                        artifact file('classes')
                    }
                    jar {
                        attributes.attribute(Attribute.of('format', String), 'classes-jar')
                        artifact file('lib.jar')
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  6. maven-core/src/test/java/org/apache/maven/internal/impl/TestApi.java

            List<Path> classes = dispatched.get(JavaPathType.CLASSES);
            List<Path> modules = dispatched.get(JavaPathType.MODULES);
            List<Path> unresolved = dispatched.get(PathType.UNRESOLVED);
            assertEquals(3, dispatched.size());
            assertEquals(1, unresolved.size());
            assertEquals(8, classes.size()); // "plexus.pom" and "junit.jar" are excluded.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 14:13:36 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/PublishArtifactNotationParserFactoryTest.groovy

            def value = Mock(RegularFile)
            def file = new File("classes-1.zip")
    
            _ * value.getAsFile() >> file
    
            when:
            def publishArtifact = publishArtifactNotationParser.parseNotation(value)
    
            then:
            publishArtifact instanceof DecoratingPublishArtifact
            publishArtifact.file == file
            publishArtifact.name == "classes-1"
            publishArtifact.extension == "zip"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.3K bytes
    - Viewed (0)
Back to top