Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 840 for inspection (0.18 sec)

  1. platforms/jvm/jvm-services/src/test/groovy/org/gradle/internal/jvm/inspection/KnownJvmVendorSpec.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.jvm.inspection
    
    import spock.lang.Specification
    
    class KnownJvmVendorSpec extends Specification {
    
        def 'Known vendors match their indicator string'() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/properties/InspectionSchemeFactoryTest.groovy

            { false },
            cacheFactory
        )
        def factory = new InspectionSchemeFactory([], [handler1, handler2], typeAnnotationMetadataStore, cacheFactory)
    
        def "creates inspection scheme that understands given property annotations and injection annotations"() {
            def instantiationScheme = Stub(InstantiationScheme)
            instantiationScheme.injectionAnnotations >> [Inject]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 10:13:50 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  3. platforms/jvm/jvm-services/src/test/groovy/org/gradle/internal/jvm/inspection/ReportingJvmMetadataDetectorTest.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.jvm.inspection
    
    
    import org.gradle.jvm.toolchain.internal.InstallationLocation
    import spock.lang.Specification
    
    import java.util.function.BiConsumer
    
    class ReportingJvmMetadataDetectorTest extends Specification {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 18:25:34 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonClientGlobalServices.java

     */
    
    package org.gradle.launcher.daemon.client;
    
    import org.gradle.api.internal.DocumentationRegistry;
    import org.gradle.internal.invocation.BuildAction;
    import org.gradle.internal.jvm.inspection.JvmVersionDetector;
    import org.gradle.internal.serialize.Serializer;
    import org.gradle.internal.service.Provides;
    import org.gradle.internal.service.ServiceRegistrationProvider;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. platforms/jvm/jvm-services/build.gradle.kts

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = "JVM invocation and inspection abstractions"
    
    errorprone {
        disabledChecks.addAll(
            "DefaultCharset", // 2 occurrences
            "StringCaseLocaleUsage", // 1 occurrences
        )
    }
    
    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. platforms/jvm/jvm-services/src/main/java/org/gradle/internal/jvm/inspection/DefaultJvmVersionDetector.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.jvm.inspection;
    
    import org.gradle.api.GradleException;
    import org.gradle.api.internal.jvm.JavaVersionParser;
    import org.gradle.internal.jvm.JavaInfo;
    import org.gradle.jvm.toolchain.internal.InstallationLocation;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:16:16 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. platforms/jvm/jvm-services/src/main/java/org/gradle/internal/jvm/inspection/CachingJvmMetadataDetector.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.jvm.inspection;
    
    import org.gradle.internal.jvm.Jvm;
    import org.gradle.jvm.toolchain.internal.InstallationLocation;
    
    import java.io.File;
    import java.io.IOException;
    import java.util.Collections;
    import java.util.HashMap;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 17:56:01 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. platforms/jvm/jvm-services/src/test/groovy/org/gradle/internal/jvm/inspection/InvalidInstallationWarningReporterTest.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.jvm.inspection
    
    import org.gradle.api.logging.Logger
    import org.gradle.jvm.toolchain.internal.InstallationLocation
    import spock.lang.Specification
    
    class InvalidInstallationWarningReporterTest extends Specification {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 18:25:34 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. testing/soak/src/testFixtures/groovy/org/gradle/launcher/daemon/fixtures/DaemonMultiJdkIntegrationTest.groovy

    import org.gradle.integtests.fixtures.compatibility.MultiVersionTest
    import org.gradle.integtests.fixtures.daemon.DaemonIntegrationSpec
    import org.gradle.internal.jvm.JavaInfo
    import org.gradle.internal.jvm.inspection.JvmInstallationMetadata
    import org.gradle.util.EmptyStatement
    import org.gradle.util.internal.VersionNumber
    import org.junit.Rule
    import org.junit.rules.TestRule
    import org.junit.runner.Description
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. testing/soak/src/testFixtures/groovy/org/gradle/launcher/daemon/fixtures/FullyQualifiedGarbageCollector.groovy

     * limitations under the License.
     */
    
    package org.gradle.launcher.daemon.fixtures
    
    import org.gradle.api.JavaVersion
    import org.gradle.integtests.fixtures.daemon.JavaGarbageCollector
    import org.gradle.internal.jvm.inspection.JvmVendor
    
    class FullyQualifiedGarbageCollector implements Comparable<FullyQualifiedGarbageCollector> {
        JvmVendor.KnownJvmVendor vendor
        String version
        JavaGarbageCollector gc
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top