Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 147 for Investigate (0.17 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/process/internal/worker/DefaultWorkerProcessBuilderIntegrationTest.groovy

    import org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache
    
    import static org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache.Skip.INVESTIGATE
    
    class DefaultWorkerProcessBuilderIntegrationTest extends AbstractIntegrationSpec {
    
        @ToBeFixedForConfigurationCache(skip = INVESTIGATE)
        def "test classpath does not contain nonexistent entries"() {
            given:
            file("src/test/java/ClasspathTest.java") << '''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedTaskActionIntegrationTest.groovy

    class CachedTaskActionIntegrationTest extends AbstractIntegrationSpec implements DirectoryBuildCacheFixture {
    
        @ToBeFixedForConfigurationCache(skip = INVESTIGATE)
        def "ad hoc tasks with different actions don't share results"() {
            buildFile << """
                task first {
                    outputs.file file("first.txt")
                    outputs.cacheIf { true }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/ExecutionTimeTaskConfigurationIntegrationTest.groovy

    import org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache
    
    import static org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache.Skip.INVESTIGATE
    
    class ExecutionTimeTaskConfigurationIntegrationTest extends AbstractIntegrationSpec {
        @ToBeFixedForConfigurationCache(skip = INVESTIGATE)
        def "fails when task is configured using #config during execution time"() {
            buildFile.text = """
                def anAction = {} as Action
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskChildSpecIntegrationTest.groovy

    import spock.lang.Issue
    
    import static org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache.Skip.INVESTIGATE
    
    class CopyTaskChildSpecIntegrationTest extends AbstractIntegrationSpec implements DirectoryBuildCacheFixture {
    
        @ToBeFixedForConfigurationCache(skip = INVESTIGATE)
        def "changing child specs of the copy task while executing is disallowed"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CacheTaskArchiveErrorIntegrationTest.groovy

    import spock.lang.Issue
    
    import java.util.function.Consumer
    import java.util.function.Predicate
    
    import static org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache.Skip.INVESTIGATE
    import static org.gradle.util.internal.TextUtil.escapeString
    
    class CacheTaskArchiveErrorIntegrationTest extends AbstractIntegrationSpec {
    
        private static final String CACHE_KEY_PATTERN = "[0-9a-f]+"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/NamedDomainObjectContainerIntegrationTest.groovy

    import groovy.transform.SelfType
    import org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache
    import spock.lang.Issue
    
    import static org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache.Skip.INVESTIGATE
    
    @SelfType(AbstractDomainObjectContainerIntegrationTest)
    trait AbstractNamedDomainObjectContainerIntegrationTest {
        String getContainerStringRepresentation() {
            return "SomeType container"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/noder/stmt.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package noder
    
    import (
    	"cmd/compile/internal/ir"
    	"cmd/compile/internal/syntax"
    )
    
    // TODO(mdempsky): Investigate replacing with switch statements or dense arrays.
    
    var branchOps = [...]ir.Op{
    	syntax.Break:       ir.OBREAK,
    	syntax.Continue:    ir.OCONTINUE,
    	syntax.Fallthrough: ir.OFALL,
    	syntax.Goto:        ir.OGOTO,
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 21 02:39:32 UTC 2023
    - 564 bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedRelocationIntegrationTest.groovy

    import org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache
    
    import static org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache.Skip.INVESTIGATE
    
    class CachedRelocationIntegrationTest extends AbstractIntegrationSpec implements DirectoryBuildCacheFixture {
    
        @ToBeFixedForConfigurationCache(skip = INVESTIGATE)
        def "relocating the project doesn't invalidate custom tasks declared in build script"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/BuildEventsErrorIntegrationTest.groovy

    import org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache
    import org.gradle.integtests.fixtures.UnsupportedWithConfigurationCache
    
    import static org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache.Skip.INVESTIGATE
    
    class BuildEventsErrorIntegrationTest extends AbstractIntegrationSpec {
    
        def "produces reasonable error message when taskGraph.whenReady closure fails"() {
            buildFile << """
        gradle.taskGraph.whenReady {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 6K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/bundling/ReuseArchiveIntegrationTest.groovy

    import org.gradle.internal.hash.DefaultFileHasher
    import org.gradle.internal.hash.DefaultStreamHasher
    import org.gradle.internal.hash.FileHasher
    
    import static org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache.Skip.INVESTIGATE
    
    class ReuseArchiveIntegrationTest  extends AbstractIntegrationSpec {
    
        /*
         * This is a pre-existing issue: What do you do if creating a cache using a pre-existing directory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top