Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 46 for caniuse (0.64 sec)

  1. platforms/core-configuration/kotlin-dsl-tooling-builders/src/main/kotlin/org/gradle/kotlin/dsl/tooling/builders/EditorReportsBuilder.kt

        get() = cause?.let { it::class.java.name == "org.gradle.kotlin.dsl.support.ScriptCompilationException" } == true
    
    
    private
    fun messageForLocationAwareEditorHint(failure: LocationAwareException): String {
        val cause = failure.cause!!
        return cause.message?.takeIf { it.isNotBlank() } ?: EditorMessages.defaultLocationAwareHintMessageFor(cause)
    }
    
    
    private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:30:55 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheException.kt

    
    /**
     * State might be corrupted and should be discarded.
     */
    @Contextual
    class ConfigurationCacheError internal constructor(
        error: String,
        cause: Throwable? = null
    ) : ConfigurationCacheThrowable, Exception(error, cause)
    
    
    @Contextual
    sealed class ConfigurationCacheException protected constructor(
        message: () -> String,
        causes: Iterable<Throwable>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/PrecompiledScriptPluginErrorsIntegrationTest.kt

    }
    
    
    // TODO remove once https://github.com/gradle/gradle/issues/25636 is fixed
    private
    fun ExecutionFailure.assertHasCauseWorkingAroundIssue25636(cause: String) = run {
        assertHasFailures(error.split(cause).dropLastWhile(String::isEmpty).size - 1)
        assertHasCause(cause)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 07:16:19 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  4. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/classanalysis/ClassAnalysisException.kt

     */
    
    package gradlebuild.basics.classanalysis
    
    import org.gradle.internal.exceptions.Contextual
    
    
    @Contextual
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 821 bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/KotlinDslContainerIntegrationTest.kt

                "Task 'help' found by String.invoke() notation. This behavior has been deprecated. " +
                    "This behavior is scheduled to be removed in Gradle 9.0. " +
                    "The \"name\"() notation can cause confusion with methods provided by Kotlin or the JDK. Use named(String) instead. " +
                    "Consult the upgrading guide for further information: https://docs.gradle.org/current/userguide/upgrading_version_8.html#string_invoke")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 22:58:28 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/script_wait.txt

    # programs, in the order in which they were started.
    wait
    stdout 'foo\nbar'
    
    # The end of the test should interrupt or kill any remaining background
    # programs, but that should not cause the test to fail if it does not
    # care about the exit status of those programs.
    [exec:sleep] ? exec sleep 86400 &
    
    # It should also cancel any backgrounded builtins that respond to Context
    # cancellation.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:18:10 UTC 2022
    - 693 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/cgo_long_cmd.txt

    # Issue #66456
    
    [!cgo] skip
    [GOOS:windows] skip
    [GOOS:plan9] skip
    
    # Generate a file with a very long #cgo LDFLAGS line.
    # This used to cause "go build" to fail with "argument list too long".
    go generate
    
    # Build with the generated file.
    go build
    
    -- go.mod --
    module cgolongcmd
    
    go 1.22
    -- generate.go --
    //go:build ignore
    
    package main
    
    import (
    	"fmt"
    	"log"
    	"os"
    	"bytes"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 782 bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/list_issue_56509.txt

    # directory.)
    
    cd bar
    go list ./...
    ! stdout .
    cd ..
    
    [short] skip
    
    # Test that an unparsable .s file is completely ignored when its name
    # has build tags that cause it to be filtered out, but produces an error
    # when it is included
    
    env GOARCH=arm64
    env GOOS=linux
    go build ./baz
    
    env GOARCH=amd64
    env GOOS=linux
    ! go build ./baz
    
    -- go.mod --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 21:02:24 UTC 2022
    - 740 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/build_cache_trimpath.txt

    [short] skip
    env GO111MODULE=on
    
    # Set up fresh GOCACHE.
    env GOCACHE=$WORK/gocache
    mkdir $GOCACHE
    
    cd $WORK
    go build -o a.out
    
    # Varying -trimpath should cause a rebuild.
    go build -x -o a.out -trimpath
    stderr '(compile|gccgo)( |\.exe)'
    stderr 'link( |\.exe)'
    
    # Two distinct versions of the same module with identical content should
    # still be cached separately.
    # Verifies golang.org/issue/35412.
    go get example.com/stack@v1.0.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 865 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/list_load_err.txt

    # go list -e -deps should list imports from any file it can read, even if
    # other files in the same package cause go/build.Import to return an error.
    # Verifies golang.org/issue/38568
    
    go list -e -deps ./scan
    stdout m/want
    
    go list -e -deps ./multi
    stdout m/want
    
    go list -e -deps ./constraint
    stdout m/want
    
    [cgo] go list -e -test -deps ./cgotest
    [cgo] stdout m/want
    
    [cgo] go list -e -deps ./cgoflag
    [cgo] stdout m/want
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 17 21:46:33 UTC 2022
    - 1.7K bytes
    - Viewed (0)
Back to top