Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 213 for intRegs (0.13 sec)

  1. .teamcity/test-buckets.json

    					"file-collections",
    					"file-watching",
    					"ide",
    					"ide-plugins",
    					"integ-test",
    					"internal-integ-testing",
    					"internal-performance-testing",
    					"ivy",
    					"java-platform",
    					"jvm-services",
    					"kotlin-dsl",
    					"kotlin-dsl-integ-tests",
    					"language-java",
    					"language-jvm",
    					"logging",
    					"maven",
    					"messaging",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 15:56:44 UTC 2024
    - 54.2K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/deps/ClassAnalysis.java

     */
    
    package org.gradle.api.internal.tasks.compile.incremental.deps;
    
    import com.google.common.collect.ImmutableSet;
    import it.unimi.dsi.fastutil.ints.IntSet;
    import it.unimi.dsi.fastutil.ints.IntSets;
    import org.gradle.api.internal.cache.StringInterner;
    import org.gradle.internal.serialize.AbstractSerializer;
    import org.gradle.internal.serialize.Decoder;
    import org.gradle.internal.serialize.Encoder;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 15:22:57 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/java/basic/groovy/build.gradle

    }
    
    tasks.named('test', Test) {
        useJUnitPlatform()
    
        maxHeapSize = '1G'
    
        testLogging {
            events "passed"
        }
    }
    // end::java-basic-test-config[]
    
    // tag::practical-integ-test-source-set[]
    sourceSets {
        intTest {
            compileClasspath += sourceSets.main.output
            runtimeClasspath += sourceSets.main.output
        }
    }
    
    configurations {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/java/basic/kotlin/build.gradle.kts

    }
    
    tasks.named<Test>("test") {
        useJUnitPlatform()
    
        maxHeapSize = "1G"
    
        testLogging {
            events("passed")
        }
    }
    // end::java-basic-test-config[]
    
    // tag::practical-integ-test-source-set[]
    sourceSets {
        create("intTest") {
            compileClasspath += sourceSets.main.get().output
            runtimeClasspath += sourceSets.main.get().output
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  5. tests/integration/helm/upgrade/main_test.go

    //go:build integ
    // +build integ
    
    //  Copyright Istio Authors
    //
    //  Licensed under the Apache License, Version 2.0 (the "License");
    //  you may not use this file except in compliance with the License.
    //  You may obtain a copy of the License at
    //
    //      http://www.apache.org/licenses/LICENSE-2.0
    //
    //  Unless required by applicable law or agreed to in writing, software
    //  distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 07 15:01:04 UTC 2023
    - 852 bytes
    - Viewed (0)
  6. tests/integration/operator/main_test.go

    //go:build integ
    // +build integ
    
    //  Copyright Istio Authors
    //
    //  Licensed under the Apache License, Version 2.0 (the "License");
    //  you may not use this file except in compliance with the License.
    //  You may obtain a copy of the License at
    //
    //      http://www.apache.org/licenses/LICENSE-2.0
    //
    //  Unless required by applicable law or agreed to in writing, software
    //  distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 11 21:47:00 UTC 2022
    - 826 bytes
    - Viewed (0)
  7. tests/integration/tests.mk

    define run-test
    $(GO) test -exec=true -toolexec=$(REPO_ROOT)/tools/go-compile-without-link -vet=off -tags=integ $2 $1
    $(GO) test -p 1 ${T} -tags=integ -vet=off -timeout 30m $2 $1 ${_INTEGRATION_TEST_FLAGS} ${_INTEGRATION_TEST_SELECT_FLAGS} 2>&1 | tee >($(JUNIT_REPORT) > $(JUNIT_OUT))
    endef
    
    # Ensure that all test files are tagged properly. This ensures that we don't accidentally skip tests
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl-plugins/README.md

    ## Note about integration and cross-version tests for this subproject
    
    Put plugin integration and cross-version tests into [`:kotlin-dsl-integ-tests`](https://github.com/gradle/gradle/tree/HEAD/platforms/core-configuration/kotlin-dsl-integ-tests) subproject instead.
    
    Having tests here breaks Gradle's ability to instrument plugins defined in this subproject and their dependencies when embedded runner is used.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 11:41:55 UTC 2023
    - 770 bytes
    - Viewed (0)
  9. platforms/software/resources-http/build.gradle.kts

        testImplementation(project(":internal-integ-testing"))
        testImplementation(libs.jettyWebApp)
        testImplementation(testFixtures(project(":core")))
        testImplementation(testFixtures(project(":logging")))
    
        testFixturesImplementation(project(":base-services"))
        testFixturesImplementation(project(":logging"))
        testFixturesImplementation(project(":internal-integ-testing"))
        testFixturesImplementation(libs.slf4jApi)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. testing/soak/build.gradle.kts

    plugins {
        id("gradlebuild.internal.kotlin")
        id("gradlebuild.kotlin-dsl-plugin-bundle-integ-tests")
    }
    
    dependencies {
        testFixturesImplementation(project(":base-services"))
        testFixturesImplementation(project(":core"))
        testFixturesImplementation(project(":logging"))
        testFixturesImplementation(project(":internal-integ-testing"))
        testFixturesImplementation(project(":jvm-services"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top