Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,549 for setOp (0.06 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r76/TestLauncherTestSpecCrossVersionSpec.groovy

    import static org.gradle.integtests.tooling.fixture.TextUtil.normaliseLineSeparators
    
    @ToolingApiVersion('>=7.6')
    @TargetGradleVersion(">=7.6")
    class TestLauncherTestSpecCrossVersionSpec extends TestLauncherSpec {
    
        def setup() {
            withFailingTest() // ensures that withTestsFor statements are not ignored
        }
    
        @TargetGradleVersion('>=3.0 <7.6')
        def "older Gradle versions ignore withTestsFor calls"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r30/ToolingApiEclipseModelOutputLocationCrossVersionSpec.groovy

        def "Java project has default output location"() {
            setup:
            buildFile << "apply plugin: 'java'"
            EclipseProject project = loadToolingModel(EclipseProject)
    
            when:
            EclipseOutputLocation output = project.getOutputLocation()
    
            then:
            output.path == 'bin'
        }
    
        def "Custom output location defined in dsl"() {
            setup:
            buildFile <<
            """apply plugin: 'java'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r76/TestLauncherTaskExecutionCrossVersionSpec.groovy

    import org.gradle.tooling.TestLauncher
    
    import java.util.regex.Pattern
    
    @TargetGradleVersion(">=7.6")
    @ToolingApiVersion(">=7.6")
    class TestLauncherTaskExecutionCrossVersionSpec extends ToolingApiSpecification {
    
        def setup() {
            file('build.gradle') << """
                plugins {
                    id 'java-library'
                }
    
                ${mavenCentralRepository()}
    
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  4. .github/workflows/containers.yml

            uses: actions/checkout@v4
            with:
              fetch-depth: 0
    
          - name: Configure JDK
            uses: actions/setup-java@v4
            with:
              distribution: 'zulu'
              java-version: 17
    
          - name: Setup Gradle
            uses: gradle/actions/setup-gradle@v3
    
          - name: Run Container Tests
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Mar 23 12:00:11 UTC 2024
    - 911 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/testKit/automaticClasspathInjectionQuickstart/groovy/src/test/groovy/org/gradle/sample/BuildLogicFunctionalTest.groovy

        @TempDir File testProjectDir
        File settingsFile
        File buildFile
    
        def setup() {
            settingsFile = new File(testProjectDir, 'settings.gradle')
            buildFile = new File(testProjectDir, 'build.gradle')
        }
    
        // tag::functional-test-classpath-setup-automatic[]
        def "hello world task prints hello world"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. .github/workflows/test.yml

              GITHUB_CONTEXT: ${{ toJson(github) }}
            run: echo "$GITHUB_CONTEXT"
          - uses: actions/checkout@v4
          - name: Set up Python
            uses: actions/setup-python@v5
            with:
              python-version: "3.11"
              # Issue ref: https://github.com/actions/setup-python/issues/436
              # cache: "pip"
              # cache-dependency-path: pyproject.toml
          - uses: actions/cache@v4
            id: cache
            with:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 10 00:30:25 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  7. .github/workflows/go-fips.yml

            go-version: [1.22.x]
            os: [ubuntu-latest]
        steps:
          - uses: actions/checkout@v4
          - uses: actions/setup-go@v5
            with:
              go-version: ${{ matrix.go-version }}
    
          - name: Set up Docker Buildx
            uses: docker/setup-buildx-action@v2
    
          - name: Setup dockerfile for build test
            run: |
              GO_VERSION=$(go version | cut -d ' ' -f 3 | sed 's/go//')
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. tests/integration/security/filebased_tls_origination/main_test.go

    	// nolint: staticcheck
    	framework.
    		NewSuite(m).
    		Label(label.CustomSetup).
    		Setup(istio.Setup(&inst, setupConfig, cert.CreateCustomEgressSecret)).
    		Setup(namespace.Setup(&appNS, namespace.Config{Prefix: "appns", Inject: true})).
    		Setup(namespace.Setup(&serviceNS, namespace.Config{Prefix: "serverns", Inject: true})).
    		Setup(func(ctx resource.Context) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  9. tests/integration/pilot/main_test.go

    // here to reuse a single install across tests.
    func TestMain(m *testing.M) {
    	framework.
    		NewSuite(m).
    		Setup(istio.Setup(&i, nil)).
    		Setup(deployment.SetupSingleNamespace(&apps, deployment.Config{})).
    		Setup(func(t resource.Context) error {
    			gatewayConformanceInputs.Client = t.Clusters().Default()
    			gatewayConformanceInputs.Cleanup = !t.Settings().NoCleanup
    
    			return nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Sep 08 22:15:56 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. tests/integration/pilot/multiplecontrolplanes/main_test.go

    			c, _ := istio.DefaultConfig(ctx)
    			return c.EnableCNI
    		}).
    		SetupParallel(
    			namespace.Setup(&userGroup1NS, namespace.Config{Prefix: "usergroup-1", Labels: map[string]string{"usergroup": "usergroup-1"}}),
    			namespace.Setup(&userGroup2NS, namespace.Config{Prefix: "usergroup-2", Labels: map[string]string{"usergroup": "usergroup-2"}})).
    		Setup(istio.Setup(nil, func(ctx resource.Context, cfg *istio.Config) {
    			s := ctx.Settings()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 16:52:52 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top