Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 85 for Gleason (0.33 sec)

  1. src/cmd/link/testdata/linkname/fastrand.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Linkname fastrand is allowed _for now_, as it has a
    // linknamed definition, for legacy reason.
    // NOTE: this may not be allowed in the future. Don't do this!
    
    package main
    
    import _ "unsafe"
    
    //go:linkname fastrand runtime.fastrand
    func fastrand() uint32
    
    func main() {
    	println(fastrand())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 457 bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/DynamicMethodLookupIntegrationTest.groovy

            succeeds()
        }
    
        // Documents actual behaviour for backwards compatibility, not necessarily desired behaviour
        @Requires(
            value = IntegTestPreconditions.NotIsolatedProjects,
            reason = "Exercises IP incompatible behavior: Groovy method inheritance"
        )
        def "inherited convention method is preferred over property with closure value"() {
            given:
            createDirs("child")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 17:01:37 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. src/cmd/link/testdata/linkname/badlinkname.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Existing pull linknames in the wild are allowed _for now_,
    // for legacy reason. Test a function and a method.
    // NOTE: this may not be allowed in the future. Don't do this!
    
    package main
    
    import (
    	_ "reflect"
    	"unsafe"
    )
    
    //go:linkname noescape runtime.noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:48:00 UTC 2024
    - 620 bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/health/HealthExpirationStrategy.java

            if (expirationStatus == DO_NOT_EXPIRE) {
                return DaemonExpirationResult.NOT_TRIGGERED;
            }
    
            // We've encountered an unhealthy condition. Log if necessary.
    
            String reason = Joiner.on(" and ").join(reasons);
            if (shouldPrintLog(expirationStatus)) {
    
                String when = expirationStatus == GRACEFUL_EXPIRE ? "after the build" : "immediately";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 7.9K bytes
    - Viewed (1)
  5. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperIntegrationTest.groovy

    import groovy.io.FileType
    import org.gradle.test.precondition.Requires
    import org.gradle.test.preconditions.IntegTestPreconditions
    
    import java.nio.file.Files
    
    @Requires(value = IntegTestPreconditions.NotEmbeddedExecutor, reason = NOT_EMBEDDED_REASON)
    class WrapperIntegrationTest extends AbstractWrapperIntegrationSpec {
        def "can recover from a broken distribution"() {
            buildFile << "task hello"
            prepareWrapper()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheParallelTaskIntegrationTest.groovy

        @Rule
        BlockingHttpServer server = new BlockingHttpServer()
    
        @Requires(value = IntegTestPreconditions.NotParallelExecutor, reason = """
    Don't run in parallel mode, as the expectation for the setup build are incorrect and running in parallel
    does not really make any difference to the coverage
    """)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  7. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperUpgradeIntegrationTest.groovy

     */
    
    package org.gradle.integtests
    
    import org.gradle.test.precondition.Requires
    import org.gradle.test.preconditions.IntegTestPreconditions
    
    @Requires(value = IntegTestPreconditions.NotEmbeddedExecutor, reason = NOT_EMBEDDED_REASON)
    class WrapperUpgradeIntegrationTest extends AbstractWrapperIntegrationSpec {
    
        def "can run the wrapper task when the build was started with the wrapper"() {
            given:
            prepareWrapper()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. src/internal/trace/resources.go

    // StateTransition provides details about a StateTransition event.
    type StateTransition struct {
    	// Resource is the resource this state transition is for.
    	Resource ResourceID
    
    	// Reason is a human-readable reason for the state transition.
    	Reason string
    
    	// Stack is the stack trace of the resource making the state transition.
    	//
    	// This is distinct from the result (Event).Stack because it pertains to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 8K bytes
    - Viewed (0)
  9. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperConcurrentDownloadTest.groovy

    import org.gradle.test.precondition.Requires
    import org.gradle.test.preconditions.IntegTestPreconditions
    import org.junit.Rule
    import spock.lang.Issue
    
    @Requires(value = IntegTestPreconditions.NotEmbeddedExecutor, reason = NOT_EMBEDDED_REASON)
    class WrapperConcurrentDownloadTest extends AbstractWrapperIntegrationSpec {
        @Rule BlockingHttpServer server = new BlockingHttpServer()
    
        def setup() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/types/KtFirTypeErrorType.kt

        @KaAnalysisNonPublicApi
        override val errorMessage: String
            get() = withValidityAssertion { coneType.diagnostic.reason }
    
        @KaAnalysisNonPublicApi
        override val presentableText: String?
            get() = withValidityAssertion {
                when (val diagnostic = coneType.diagnostic) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top