Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 56 of 56 for target01 (0.18 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/NativeBinarySpec.java

         */
        @Variant
        Flavor getFlavor();
    
        /**
         * Returns the {@link org.gradle.nativeplatform.platform.NativePlatform} that this binary is targeted to run on.
         */
        @Variant
        NativePlatform getTargetPlatform();
    
        /**
         * Returns the {@link org.gradle.nativeplatform.BuildType} used to construct this binary.
         */
        @Variant
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/SimpleJavaContinuousIntegrationTest.groovy

    import org.gradle.test.preconditions.UnitTestPreconditions
    
    // NB: there's nothing specific about Java support and continuous.
    //     this spec just lays out some more practical use cases than the other targeted tests.
    class SimpleJavaContinuousIntegrationTest extends AbstractContinuousIntegrationTest {
    
        def setup() {
            buildFile << """
                apply plugin: 'java'
            """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  3. cmd/listen-notification-handlers.go

    			writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
    			return
    		}
    	}
    
    	rulesMap := event.NewRulesMap(eventNames, pattern, event.TargetID{ID: mustGetUUID()})
    
    	setEventStreamHeaders(w)
    
    	// Listen Publisher and peer-listen-client uses nonblocking send and hence does not wait for slow receivers.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/list.go

    		// where "go mod tidy" and "go list -m -u all" fight over whether the go.sum
    		// should be considered up-to-date. The fix for now is to always treat the
    		// go.sum as up-to-date during list -m -u. Probably the right fix is more targeted,
    		// but in general list -u is looking up other checksums in the checksum database
    		// that won't be necessary later, so it makes sense not to write the go.sum back out.
    		if !ExplicitWriteGoMod && mode&ListU == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 22:43:50 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  5. src/runtime/cpuprof.go

    	// by the fact that only one SIGPROF can be handled by the
    	// process at a time. If not, this lock will serialize those too.
    	// The use of timer_create(2) on Linux to request process-targeted
    	// signals may have changed this.)
    	for !prof.signalLock.CompareAndSwap(0, 1) {
    		// TODO: Is it safe to osyield here? https://go.dev/issue/52672
    		osyield()
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/reference/third_party_integration.adoc

    The JVM running the Tooling API client and the one running the daemon can be different.
    At the same time, classes that are sent to the build via custom build actions need to be targeted to the lowest supported Java version.
    The JVM versions supported by Gradle is version-specific.
    The upper bound is defined in the <<compatibility.adoc#compatibility,compatibility matrix>>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 8.8K bytes
    - Viewed (0)
Back to top