Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,053 for platform1 (0.16 sec)

  1. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/configure/NativeComponentRulesTest.groovy

            _ * component.targetPlatforms >> [requirement("platform1"), requirement("platform2")]
            1 * platforms.resolve(NativePlatform, requirement("platform1")) >> platform
            1 * platforms.resolve(NativePlatform, requirement("platform2")) >> platform2
    
            then:
            createdBinaries == ([
                "platform1SharedLibrary",
                "platform1StaticLibrary",
                "platform2SharedLibrary",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/AbstractGccCompatibleToolChainTest.groovy

            platform.name >> "SomePlatform"
            toolChain.target("SomePlatform", Mock(Action))
            toolChain.setTargets("NoPlatform")
    
            expect:
            !toolChain.select(platform).available
        }
    
        def "selected toolChain applies platform configuration action"() {
            def platform1 = Mock(NativePlatformInternal)
            def platform2 = Mock(NativePlatformInternal)
            platform1.name >> "platform1"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/NativeBinarySpecTest.groovy

    import org.gradle.nativeplatform.platform.NativePlatform
    import org.gradle.nativeplatform.platform.internal.Architectures
    import org.gradle.nativeplatform.tasks.ObjectFilesToBinary
    import org.gradle.platform.base.component.BaseComponentFixtures
    import org.gradle.platform.base.internal.DefaultBinaryNamingScheme
    import org.gradle.platform.base.internal.DefaultBinaryTasksCollection
    import org.gradle.platform.base.internal.DefaultComponentSpecIdentifier
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  4. architecture/platforms.md

    ### Extensibility platform
    
    This is a platform that builds on the core, software and JVM platforms to add support for extending Gradle by implementing and applying plugins.
    
    This platform includes the plugin publishing plugin and the plugin portal.
    
    ### Native platform
    
    This is a platform that builds on the core and software platforms to add support for developing native software.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 06:42:46 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/platforms.adoc

    A dependency on a platform is created using the `platform` keyword:
    
    .Getting versions declared in a platform
    ====
    include::sample[dir="snippets/java-platform/recommender/kotlin/consumer",files="build.gradle.kts[tags=get-recommendations]"]
    include::sample[dir="snippets/java-platform/recommender/groovy/consumer",files="build.gradle[tags=get-recommendations]"]
    ====
    
    --
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/internal/platform/Platform.kt

      companion object {
        @Volatile private var platform = findPlatform()
    
        const val INFO = 4
        const val WARN = 5
    
        private val logger = Logger.getLogger(OkHttpClient::class.java.name)
    
        @JvmStatic
        fun get(): Platform = platform
    
        fun resetForTests(platform: Platform = findPlatform()) {
          this.platform = platform
        }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  7. pkg/bootstrap/platform/platform.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package platform
    
    import (
    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    )
    
    const (
    	KubernetesServiceHost = "KUBERNETES_SERVICE_HOST"
    )
    
    // Environment provides information for the platform on which the bootstrapping
    // is taking place.
    type Environment interface {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 07 20:19:01 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/Platform.java

    import javax.annotation.CheckForNull;
    
    /** Methods factored out so that they can be emulated differently in GWT. */
    @GwtCompatible(emulated = true)
    @ElementTypesAreNonnullByDefault
    final class Platform {
      static boolean isInstanceOfThrowableClass(
          @CheckForNull Throwable t, Class<? extends Throwable> expectedClass) {
        return expectedClass.isInstance(t);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 10 12:27:25 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  9. guava/src/com/google/common/util/concurrent/Platform.java

    import javax.annotation.CheckForNull;
    
    /** Methods factored out so that they can be emulated differently in GWT. */
    @GwtCompatible(emulated = true)
    @ElementTypesAreNonnullByDefault
    final class Platform {
      static boolean isInstanceOfThrowableClass(
          @CheckForNull Throwable t, Class<? extends Throwable> expectedClass) {
        return expectedClass.isInstance(t);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 10 12:27:25 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  10. architecture/standards/0004-use-a-platform-architecture.md

    #### Extensibility platform
    
    This is a platform that builds on the core, software and JVM platforms to add support for extending Gradle by implementing and applying plugins.
    
    This platform includes the plugin publishing plugin and the plugin portal.
    
    #### Native platform
    
    This is a platform that builds on the core and software platforms to add support for developing native software.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 25 22:19:29 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top