Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 5,268 for because1 (0.17 sec)

  1. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FilePropertyLifecycleIntegrationTest.groovy

            expect:
            succeeds("after")
            outputContains("get failed: Cannot query the value of task ':producer' property 'output' because configuration of root project 'broken' has not completed yet.")
            outputContains("get from task failed: Cannot query the value of task ':producer' property 'output' because task ':producer' has not completed yet.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 22.6K bytes
    - Viewed (0)
  2. pkg/apis/authentication/v1/conversion.go

    )
    
    // Convert_v1_UserInfo_To_authentication_UserInfo is defined outside the autogenerated file for use by other API packages
    // This is needed because it is referenced from other APIs, but is invisible at code-generation time because of the build tags.
    func Convert_v1_UserInfo_To_authentication_UserInfo(in *v1.UserInfo, out *authentication.UserInfo, s conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:46:42 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. test/fixedbugs/issue11656.go

    // Issue 11656: runtime: jump to bad PC missing good traceback
    
    // windows doesn't work, because Windows exception handling
    // delivers signals based on the current PC, and that current PC
    // doesn't go into the Go runtime.
    
    // wasm does not work, because the linear memory is not executable.
    
    // This test doesn't work on gccgo/GoLLVM, because they will not find
    // any unwind information for the artificial function, and will not be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 700 bytes
    - Viewed (0)
  4. src/go/doc/testdata/issue22856.1.golden

    FILENAMES
    	testdata/issue22856.go
    
    FUNCTIONS
    	// NewPointerSliceOfSlice is not a factory function because slices ...
    	func NewPointerSliceOfSlice() [][]*T
    
    	// NewSlice3 is not a factory function because 3 nested slices of ...
    	func NewSlice3() [][][]T
    
    	// NewSliceOfSlice is not a factory function because slices of a ...
    	func NewSliceOfSlice() [][]T
    
    
    TYPES
    	// 
    	type T struct{}
    
    	// 
    	func New() T
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 12 16:37:37 UTC 2018
    - 654 bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm-infrastructure/build.gradle.kts

        testImplementation(libs.assertj) {
            because("We test assertion errors coming from AssertJ")
        }
        testImplementation("org.opentest4j:opentest4j") {
            version {
                // MultipleFailuresError appears only since 1.3.0-RC2
                require("1.3.0")
            }
            because("We test assertion errors coming from OpenTest4J")
        }
        testRuntimeOnly(libs.guice) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/AbstractPluginValidationIntegrationSpec.groovy

                import org.gradle.work.*;
    
                @DisableCachingByDefault(because = "test task")
                public class MyTask extends DefaultTask {
                    // Should be ignored because it's not a getter
                    public void getVoid() {
                    }
    
                    // Should be ignored because it's not a getter
                    public int getWithParameter(int count) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 40.7K bytes
    - Viewed (0)
  7. testing/integ-test/src/integTest/groovy/org/gradle/integtests/AntProjectIntegrationTest.groovy

    import static org.hamcrest.CoreMatchers.startsWith
    
    class AntProjectIntegrationTest extends AbstractIntegrationTest {
        @Test
        @ToBeFixedForConfigurationCache(because = "AntTarget task")
        void antTargetsAndGradleTasksCanDependOnEachOther() {
            testFile('build.xml') << """
    <project>
        <target name='target1' depends='target2,initialize'>
            <touch file='build/target1.txt'/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/RetryConditions.groovy

                        println "Retrying test because socket disappeared."
                        return cleanProjectDir(specification)
                    }
    
                    for (def daemon : daemonsFixture.allDaemons) {
                        if (daemonStoppedWithSocketExceptionOnWindows(daemon)) {
                            println "Retrying test because socket disappeared. Check log of daemon with PID ${daemon.context.pid}."
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  9. src/runtime/tracemap.go

    	hash     uintptr
    	id       uint64
    	data     []byte
    }
    
    // stealID steals an ID from the table, ensuring that it will not
    // appear in the table anymore.
    func (tab *traceMap) stealID() uint64 {
    	return tab.seq.Add(1)
    }
    
    // put inserts the data into the table.
    //
    // It's always safe for callers to noescape data because put copies its bytes.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:03:35 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceParallelExecutionIntegrationTest.groovy

                            ${blockingServer.callFromBuildUsingExpression("projectName")}
                        }
                    }
                }
            """
        }
    
        @ToBeFixedForIsolatedProjects(because = "allprojects")
        def "tasks run in parallel when no max usages specified"() {
            given:
            withParallelThreads(2)
    
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top