Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 57 for Investigate (0.23 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/initialization/buildsrc/BuildSrcBuildOperationsIntegrationTest.groovy

    class BuildSrcBuildOperationsIntegrationTest extends AbstractIntegrationSpec {
        BuildOperationsFixture ops
        def setup() {
            ops = new BuildOperationsFixture(executer, temporaryFolder)
            file("buildSrc/src/main/java/Thing.java") << "class Thing { }"
        }
    
        @ToBeFixedForConfigurationCache(skip = INVESTIGATE)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/file/TaskFilePropertiesIntegrationTest.groovy

    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    import org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache
    
    import static org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache.Skip.INVESTIGATE
    import static org.gradle.integtests.fixtures.executer.TaskOrderSpecs.any
    
    class TaskFilePropertiesIntegrationTest extends AbstractIntegrationSpec {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/configuration/project/LifecycleProjectEvaluatorIntegrationTest.groovy

    import org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache
    import org.gradle.internal.taskgraph.CalculateTreeTaskGraphBuildOperationType
    
    import static org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache.Skip.INVESTIGATE
    
    class LifecycleProjectEvaluatorIntegrationTest extends AbstractIntegrationSpec {
    
        def operations = new BuildOperationsFixture(executer, temporaryFolder)
    
        def setup() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/execution/taskgraph/RuleTaskExecutionIntegrationTest.groovy

    import org.gradle.integtests.fixtures.UnsupportedWithConfigurationCache
    import org.gradle.model.internal.core.ModelNode
    
    import static org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache.Skip.INVESTIGATE
    
    class RuleTaskExecutionIntegrationTest extends AbstractIntegrationSpec implements WithRuleBasedTasks {
    
        def setup() {
            buildFile << """
                def tasksFile = file("tasks.txt")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/test/callback_windows.go

    	got := make([]string, 0, n)
    	for i := 0; i < n; i++ {
    		f := runtime.FuncForPC(pc[i] - 1)
    		if f == nil {
    			continue
    		}
    		fname := f.Name()
    		switch fname {
    		case "goCallback":
    			// TODO(qmuntal): investigate why this function doesn't appear
    			// when using the external linker.
    			continue
    		}
    		// In module mode, this package has a fully-qualified import path.
    		// Remove it if present.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 16:01:37 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/projectmodule/DefaultLocalComponentRegistry.java

                // dependencies, but we should be. Removing this condition breaks some Isolated Projects tests,
                // so we need to investigate why they are failing and then remove this condition.
                // Specifically, the following test breaks when we remove this check:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 17:59:41 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. test/fixedbugs/issue10958.go

    // Test is disabled because it flakes when run in all.bash
    // on some platforms, but is useful standalone to verify
    // that rescheduling checks are working (and we may wish
    // to investigate the flake, since it suggests that the
    // loop rescheduling check may not work right on those
    // platforms).
    
    // This checks to see that call-free infinite loops do not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CommandLineTaskExecutionIntegrationTest.groovy

            ":a::b"  | "Cannot locate tasks that match ':a::b'. The path should not include an empty segment (try ':a:b' instead)."
        }
    
        @ToBeFixedForIsolatedProjects(because = "Investigate")
        def "build logic can mutate the list of requested tasks"() {
            buildFile """
                gradle.startParameter.taskNames += ["last"]
    
                task one {
                    doLast {}
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:35 UTC 2024
    - 2.3K bytes
    - Viewed (3)
  9. src/cmd/cgo/internal/testerrors/testdata/err2.go

    		type x *C.int
    		var p *x
    		C.fppi(p) // ERROR HERE
    	}
    
    	// issue 26745
    	_ = func(i int) int {
    		// typecheck reports at column 14 ('+'), but types2 reports at
    		// column 10 ('C').
    		// TODO(mdempsky): Investigate why, and see if types2 can be
    		// updated to match typecheck behavior.
    		return C.i + 1 // ERROR HERE: \b(10|14)\b
    	}
    	_ = func(i int) {
    		// typecheck reports at column 7 ('('), but types2 reports at
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/initialization/buildsrc/BuildSrcVisibilityIntegrationTest.groovy

    import org.gradle.integtests.fixtures.ToBeFixedForIsolatedProjects
    
    class BuildSrcVisibilityIntegrationTest extends AbstractIntegrationSpec {
    
        @ToBeFixedForIsolatedProjects(because = "Investigate")
        def "buildSrc classes are not visible in settings"() {
            file('buildSrc/build.gradle') << """
                apply plugin: 'groovy'
    
                ${mavenCentralRepository()}
    
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:35 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top