Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of about 10,000 for then (0.16 sec)

  1. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/ScalaApplicationInitIntegrationTest.groovy

            run('init', '--type', 'scala-application', '--dsl', scriptDsl.id, '--incubating', '--java-version', JavaVersion.current().majorVersion)
    
            then:
            gradlePropertiesGenerated()
    
            when:
            run("build")
    
            then:
            assertTestPassed("org.example.AppSuite", "App has a greeting")
    
            when:
            run("run")
    
            then:
            outputContains("Hello, world!")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 03:26:38 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppIncrementalBuildIntegrationTest.groovy

                    }
                """
    
            then:
            succeeds installApp
            install.exec().out == "hello"
    
            when:
            succeeds installApp
    
            then:
            allSkipped()
    
            when:
            appObjects.snapshot()
            libObjects.snapshot()
    
            header1 << """// some extra stuff"""
    
            then:
            succeeds installApp
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 40.4K bytes
    - Viewed (0)
  3. ci/official/utilities/setup_macos.sh

    fi
    set -x
    
    # When cross-compiling with RBE, we need to copy the macOS sysroot to be
    # inside the TensorFlow root directory. We then define them as a filegroup
    # target inside "tensorflow/tools/toolchains/cross_compile/cc" so that Bazel
    # can register it as an input to compile/link actions and send it to the remote
    # VMs when needed.
    # TODO(b/316932689): Avoid copying and replace with a local repository rule.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 15:23:28 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/ConfigurationOnDemandIntegrationTest.groovy

            when:
            run(":api:build")
    
            then:
            fixture.assertProjectsConfigured(":", ":api")
    
            when:
            inDirectory("impl")
            run(":api:build")
    
            then:
            fixture.assertProjectsConfigured(":", ":api")
    
            when:
            run(":impl:build")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 12:57:53 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/execution/ExecuteActionsTaskExecuterTest.groovy

            then:
            1 * action1.clearInputChanges()
            then:
            1 * asyncWorkTracker.waitForCompletion(_, RELEASE_AND_REACQUIRE_PROJECT_LOCKS)
            then:
            1 * standardOutputCapture.stop()
            then:
            1 * standardOutputCapture.start()
            then:
            1 * buildOperationRunnerForTaskExecution.run(_ as RunnableBuildOperation) >> { args -> args[0].run(Stub(BuildOperationContext)) }
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  6. hack/lib/util.sh

          new_cmd="${trap_add_cmd};${existing_cmd}"
        fi
    
        # Assign the test. Disable the shellcheck warning telling that trap
        # commands should be single quoted to avoid evaluating them at this
        # point instead evaluating them at run time. The logic of adding new
        # commands to a single trap requires them to be evaluated right away.
        # shellcheck disable=SC2064
        trap "${new_cmd}" "${trap_add_name}"
      done
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:33 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  7. subprojects/core-api/src/test/groovy/org/gradle/api/internal/provider/views/AbstractHasMultiValuesPropertyCollectionViewTest.groovy

            collection.size() == 4
    
            when:
            collection.add("third")
    
            then:
            property.get() == cast(["first", "second", "forth", "fifth", "third"])
            collection.size() == 5
    
            when:
            collection.removeAll(["first", "third", "forth"])
    
            then:
            property.get() == cast(["second", "fifth"])
            collection.size() == 2
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 15:31:28 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/TypesTest.groovy

            def visitor = Mock(Types.TypeVisitor)
            when:
            Types.walkTypeHierarchy(Child, [Object, GroovyObject], visitor)
    
            then: 1 * visitor.visitType(Child) >> Types.TypeVisitResult.CONTINUE
            then: 1 * visitor.visitType(Base) >> Types.TypeVisitResult.CONTINUE
            then: 1 * visitor.visitType(Serializable) >> Types.TypeVisitResult.CONTINUE
            then: 1 * visitor.visitType(Iface) >> Types.TypeVisitResult.CONTINUE
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 06 15:03:49 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/UndeclaredDependencyResolutionIntegrationTest.groovy

    /*
     * Copyright 2020 the original author or 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: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/testng/TestNGTestClassProcessorTest.groovy

            then: 1 * processor.completed(2, { it.resultType == null })
            then: 1 * processor.completed(1, { it.resultType == null })
            0 * processor._
        }
    
        void "executes test with expected exception"() {
            when: process(ATestNGClassWithExpectedException)
    
            then: 1 * processor.started({ it.id == 1 } , _)
            then: 1 * processor.started({ it.id == 2 } , _)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 18 12:30:10 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top