Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for toolchain (0.16 sec)

  1. doc/godebug.md

    its value is derived from three sources:
    the defaults for the Go toolchain used to build the program,
    amended to match the Go version listed in `go.mod`,
    and then overridden by explicit `//go:debug` lines in the program.
    
    The [GODEBUG History](#history) gives the exact defaults for each Go toolchain version.
    For example, Go 1.21 introduces the `panicnil` setting,
    controlling whether `panic(nil)` is allowed;
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Tue Apr 16 17:29:58 GMT 2024
    - 13.5K bytes
    - Viewed (0)
  2. maven-core/pom.xml

                  <exclude>org.apache.maven.toolchain.DefaultToolchain#getLog():METHOD_RETURN_TYPE_CHANGED</exclude>
                  <exclude>org.apache.maven.toolchain.DefaultToolchain#DefaultToolchain(org.apache.maven.toolchain.model.ToolchainModel,org.codehaus.plexus.logging.Logger):CONSTRUCTOR_REMOVED</exclude>
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 08:48:58 GMT 2024
    - 15.4K bytes
    - Viewed (0)
  3. build-logic/build-init-samples/src/main/kotlin/gradlebuild/samples/SamplesGenerator.kt

                .withBinding("packageNameChoice", packageNameChoice)
                .withBinding("subprojectName", settings.subprojects.first())
                .withBinding("toolChain", toolChain)
                .withBinding("exampleClass", exampleClass)
                .withBinding("sourceFile", sourceFile)
                .withBinding("testSourceFile", testSourceFile)
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue Feb 06 17:51:21 GMT 2024
    - 13.8K bytes
    - Viewed (0)
  4. maven-core/src/main/resources/META-INF/maven/extension.xml

        <exportedPackage>org.apache.maven.rtinfo.*</exportedPackage>
        <exportedPackage>org.apache.maven.settings</exportedPackage>
        <exportedPackage>org.apache.maven.toolchain</exportedPackage>
        <exportedPackage>org.apache.maven.usability</exportedPackage>
    
    
        <!-- wagon-api -->
        <exportedPackage>org.apache.maven.wagon.*</exportedPackage>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jan 08 10:37:09 GMT 2024
    - 12.2K bytes
    - Viewed (0)
  5. maven-core/src/test/java/org/apache/maven/internal/impl/TestApi.java

    import org.apache.maven.rtinfo.RuntimeInformation;
    import org.apache.maven.session.scope.internal.SessionScope;
    import org.apache.maven.toolchain.DefaultToolchainManagerPrivate;
    import org.apache.maven.toolchain.building.ToolchainsBuilder;
    import org.codehaus.plexus.PlexusContainer;
    import org.codehaus.plexus.component.repository.exception.ComponentLookupException;
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 9.9K bytes
    - Viewed (2)
  6. ci/official/containers/linux_arm64/devel.usertools/code_check_full.bats

    #
    # We can't test on the windows toolchains because they're using a legacy
    # toolchain format (or something) that specifies the toolchain directly instead
    # of as a "repository". They can't be valid on Linux because Linux can't do
    # anything with a Windows-only toolchain, and bazel errors if trying to build
    # that directory.
    @test "bazel nobuild passes on all of TF except TF Lite and win toolchains" {
    Plain Text
    - Registered: Tue May 07 12:40:20 GMT 2024
    - Last Modified: Mon Sep 18 14:52:45 GMT 2023
    - 12.7K bytes
    - Viewed (0)
  7. ci/official/utilities/code_check_full.bats

    #
    # We can't test on the windows toolchains because they're using a legacy
    # toolchain format (or something) that specifies the toolchain directly instead
    # of as a "repository". They can't be valid on Linux because Linux can't do
    # anything with a Windows-only toolchain, and bazel errors if trying to build
    # that directory.
    @test "bazel nobuild passes on all of TF except TF Lite and win toolchains" {
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Wed Mar 06 21:54:13 GMT 2024
    - 13.2K bytes
    - Viewed (0)
  8. CONTRIBUTING.md

    You can then replace the existing file with this new downloaded version. 
    ### Java Toolchain
    
    The Gradle build uses [Java Toolchain](https://docs.gradle.org/current/userguide/toolchains.html) support to compile and execute tests across multiple versions of Java.
    
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Sat May 04 07:43:02 GMT 2024
    - 15.6K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/execution/MavenExecutionRequest.java

         * @since 3.2.0
         */
        String getBuilderId();
    
        /**
         *
         * @param toolchains all toolchains grouped by type
         * @return this request
         * @since 3.3.0
         */
        MavenExecutionRequest setToolchains(Map<String, List<ToolchainModel>> toolchains);
    
        /**
         *
         * @return all toolchains grouped by type, never {@code null}
         * @since 3.3.0
         */
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Dec 20 13:03:57 GMT 2023
    - 17.7K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequest.java

        public Map<String, List<ToolchainModel>> getToolchains() {
            if (toolchains == null) {
                toolchains = new HashMap<>();
            }
            return toolchains;
        }
    
        @Override
        public MavenExecutionRequest setToolchains(Map<String, List<ToolchainModel>> toolchains) {
            this.toolchains = toolchains;
            return this;
        }
    
        @Deprecated
        @Override
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 31K bytes
    - Viewed (0)
Back to top