Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 3,053 for platform1 (0.15 sec)

  1. src/debug/buildinfo/buildinfo_test.go

    	"strings"
    	"testing"
    )
    
    var flagAll = flag.Bool("all", false, "test all supported GOOS/GOARCH platforms, instead of only the current platform")
    
    // TestReadFile confirms that ReadFile can read build information from binaries
    // on supported target platforms. It builds a trivial binary on the current
    // platforms (or all platforms if -all is set) in various configurations and
    // checks that build information can or cannot be read.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  2. platforms/jvm/java-platform/src/main/java/org/gradle/api/plugins/JavaPlatformPlugin.java

    import java.util.HashSet;
    import java.util.Set;
    
    /**
     * The Java platform plugin allows building platform components
     * for Java, which are usually published as BOM files (for Maven)
     * or Gradle platforms (Gradle metadata).
     *
     * @since 5.2
     * @see <a href="https://docs.gradle.org/current/userguide/java_platform_plugin.html">Java Platform plugin reference</a>
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 11K bytes
    - Viewed (0)
  3. apache-maven/src/assembly/maven/lib/jansi-native/README.txt

    This directory contains Jansi native libraries extracted from Jansi JAR.
    
    You can add your own build for platforms not natively supported by Jansi.
    See here [1] on how to compile for your platform and here [2] how libraries
    follow Jansi's directory and filename conventions.
    
    [1] https://github.com/fusesource/jansi/tree/master/src/main/native
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jul 18 17:22:19 UTC 2022
    - 486 bytes
    - Viewed (0)
  4. platforms/jvm/java-platform/src/integTest/groovy/org/gradle/integtests/resolve/platforms/JavaPlatformResolveIntegrationTest.groovy

                    } else if (platform == "'org:other-platform:1.0'") {
                        module('org:other-platform:1.0') {
                            variant("runtime", ['org.gradle.usage': 'java-runtime', 'org.gradle.category': 'platform', 'org.gradle.status': 'release'])
                            constraint("org:foo:1.0")
                            noArtifacts()
                        }
                    } else if (platform == "'org:bom-platform:1.0'") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  5. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishBasicIntegTest.groovy

    In general publishing dependencies to enforced platforms is a mistake: enforced platforms shouldn't be used for published components because they behave like forced dependencies and leak to consumers. This can result in hard to diagnose dependency resolution errors. If you did this intentionally you can disable this check by adding 'enforced-platform' to the suppressed validations of the :generateMetadataFileForIvyPublication...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/internal/capabilities/ShadowedCapability.java

    package org.gradle.api.internal.capabilities;
    
    /**
     * This special kind of capability is here only because of derived
     * variants: in case of platforms we want to make sure we can select
     * both the platform and library. For this we use different capabilities.
     * However, we still want to make sure we can select the platform component
     * whenever no explicit capability is required. In this case, and only in
     * this case, we use the "shadowed" capability to check.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 30 16:22:00 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/init.go

    // on supported platforms.
    //
    // On unsupported platforms, fuzzInstrumentFlags returns nil, meaning no
    // instrumentation is added. 'go test -fuzz' still works without coverage,
    // but it generates random inputs without guidance, so it's much less effective.
    func fuzzInstrumentFlags() []string {
    	if !platform.FuzzInstrumented(cfg.Goos, cfg.Goarch) {
    		return nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 19:13:34 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/plugins/jvm/PlatformDependencyModifiers.java

    import org.gradle.api.attributes.Category;
    import org.gradle.api.model.ObjectFactory;
    import org.gradle.api.tasks.Nested;
    
    import javax.inject.Inject;
    
    
    /**
     * Dependency modifier APIs that can find platform and enforced platforms in other modules for {@code dependencies} blocks.
     *
     * @apiNote This interface is intended to be used to mix-in methods that modify dependencies into the DSL.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 22 04:12:21 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  9. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishBasicIntegTest.groovy

    In general publishing dependencies to enforced platforms is a mistake: enforced platforms shouldn't be used for published components because they behave like forced dependencies and leak to consumers. This can result in hard to diagnose dependency resolution errors. If you did this intentionally you can disable this check by adding 'enforced-platform' to the suppressed validations of the :generateMetadataFileForMavenPublication...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/plugins/jvm/package-info.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * Dependency modifiers that can access platform and enforced platforms in {@code dependencies} blocks.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 24 19:02:14 UTC 2023
    - 765 bytes
    - Viewed (0)
Back to top