Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 149 for meaningful (0.16 sec)

  1. src/cmd/go/internal/script/cmds_nonunix.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build !unix
    
    package script
    
    func isETXTBSY(err error) bool {
    	// syscall.ETXTBSY is only meaningful on Unix platforms.
    	return false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 00:12:01 UTC 2024
    - 301 bytes
    - Viewed (0)
  2. src/cmd/go/internal/test/test_nonunix.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build !unix
    
    package test
    
    func isETXTBSY(err error) bool {
    	// syscall.ETXTBSY is only meaningful on Unix platforms.
    	return false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 22:09:34 UTC 2023
    - 299 bytes
    - Viewed (0)
  3. platforms/native/language-native/src/testFixtures/groovy/org/gradle/language/swift/AbstractSwiftComponentIntegrationTest.groovy

        }
    
        @RequiresInstalledToolChain(ToolChainRequirement.SWIFTC_3)
        @ToBeFixedForConfigurationCache
        def "throws exception with meaningful message when building Swift 4 source code on Swift 3 compiler"() {
            given:
            makeSingleProject()
            swift4Component.writeToProject(testDirectory)
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r27/TestLauncherCrossVersionSpec.groovy

            assertTestExecuted(className: "example.MyTest", methodName: "foo2", task: ":test")
            events.tests.size() == (supportsEfficientClassFiltering() ? 10 : 14)
        }
    
        def "fails with meaningful error when requested tests not found"() {
            given:
            collectDescriptorsFromBuild()
            and:
            testClassRemoved()
            when:
            launchTests { TestLauncher launcher ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/kotlinDsl/containers-api/kotlin/build.gradle.kts

    tasks.register<Copy>("myCopy1")         // <4>
    
    tasks.named("assemble") {               // <5>
        dependsOn(":myTask1")
    }
    tasks.register("myTask2") {             // <6>
        description = "Some meaningful words"
    }
    
    tasks.named<Test>("test") {             // <7>
        testLogging.showStackTraces = true
    }
    tasks.register<Copy>("myCopy2") {       // <8>
        from("source")
        into("destination")
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 597 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/kotlinDsl/containers-delegated-properties/kotlin/build.gradle.kts

    val myCopy1 by tasks.registering(Copy::class)
    
    val assemble by tasks.existing {
        dependsOn(myTask1)  // <1>
    }
    val myTask2 by tasks.registering {
        description = "Some meaningful words"
    }
    
    val test by tasks.existing(Test::class) {
        testLogging.showStackTraces = true
    }
    val myCopy2 by tasks.registering(Copy::class) {
        from("source")
        into("destination")
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 579 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/kotlinDsl/containers-scope/kotlin/build.gradle.kts

    plugins {
        `java-library`
    }
    
    // tag::scope[]
    tasks {
        test {
            testLogging.showStackTraces = true
        }
        val myCheck by registering {
            doLast { /* assert on something meaningful */ }
        }
        check {
            dependsOn(myCheck)
        }
        register("myHelp") {
            doLast { /* do something helpful */ }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 351 bytes
    - Viewed (0)
  8. src/internal/abi/rangefuncconsts.go

    package abi
    
    type RF_State int
    
    // These constants are shared between the compiler, which uses them for state functions
    // and panic indicators, and the runtime, which turns them into more meaningful strings
    // For best code generation, RF_DONE and RF_READY should be 0 and 1.
    const (
    	RF_DONE          = RF_State(iota) // body of loop has exited in a non-panic way
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:04:30 UTC 2024
    - 940 bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/work/WorkerThreadRegistry.java

         * A worker lease is also granted to the thread. The thread can release this if it needs to, but should reacquire
         * the lease prior to doing any meaningful work.
         *
         * This method is reentrant so that a thread can call this method from the given action.
         *
         * This method blocks until a worker lease is available.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/internal/typeconversion/TypedNotationConverterTest.groovy

        def "parses object of source type"(){
            expect:
            parser.parseNotation("100") == 100
        }
    
        def "throws meaningful exception on parse attempt"(){
            when:
            parser.parseNotation(new Object())
    
            then:
            thrown(UnsupportedNotationException)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 16 07:34:13 UTC 2021
    - 1.4K bytes
    - Viewed (0)
Back to top