Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 62 for make (0.06 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/composite_builds.adoc

    include::{samplesPath}/build-organization/composite-builds/basic/tests/basicCli.out[]
    ----
    
    [[settings_defined_composite]]
    === Defining a composite build via the settings file
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 02:23:19 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  2. src/runtime/asm_arm.s

    /*
     *  go-routine
     */
    
    // void gogo(Gobuf*)
    // restore state from Gobuf; longjmp
    TEXT runtimeĀ·gogo(SB),NOSPLIT|NOFRAME,$0-4
    	MOVW	buf+0(FP), R1
    	MOVW	gobuf_g(R1), R0
    	MOVW	0(R0), R2	// make sure g != nil
    	B	gogo<>(SB)
    
    TEXT gogo<>(SB),NOSPLIT|NOFRAME,$0
    	BL	setg<>(SB)
    	MOVW	gobuf_sp(R1), R13	// restore SP==R13
    	MOVW	gobuf_lr(R1), LR
    	MOVW	gobuf_ret(R1), R0
    	MOVW	gobuf_ctxt(R1), R7
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 23 21:00:52 UTC 2024
    - 32.1K bytes
    - Viewed (0)
  3. pkg/config/analysis/msg/messages.yaml

        code: IST0123
        level: Warning
        description: "A namespace has more than one type of injection labels"
        template: "The namespace has more than one type of injection labels %v, which may lead to undefined behavior. Make sure only one injection label exists."
        args:
          - name: labels
            type: "[]string"
    
      - name: "InvalidAnnotation"
        code: IST0125
        level: Warning
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/component_metadata_rules.adoc

    ====
    
    If this method is called and that a project or plugin declares rules, a warning will be issued.
    You can make this a failure instead by using this alternative:
    
    .Enforcing rules declared in settings
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/build_environment.adoc

    [[build_environment]]
    = Configuring the Build Environment
    
    Configuring the build environment is a powerful way to customize the build process.
    There are many mechanisms available.
    By leveraging these mechanisms, you can make your Gradle builds more flexible and adaptable to different environments and requirements.
    
    == Available mechanisms
    
    Gradle provides multiple mechanisms for configuring the behavior of Gradle itself and specific projects:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_5.adoc

    When encountering a corrupt cached artifact, Gradle would remove whatever was already unpacked and re-execute the task to make sure the build had a chance to succeed.
    
    While this behavior was intended to make a build successful, this had the adverse effect of hiding problems and led to reduced cache performance.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 47.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr3_multi_project_builds.adoc

    [source]
    ----
    cd gradle
    ----
    
    [source]
    ----
    mkdir license-plugin
    ----
    
    [source]
    ----
    cd license-plugin
    ----
    
    Once in the `gradle/license-plugin` directory, run `gradle init`.
    Make sure that you select the `Gradle plugin` project as well as the other options for the `init` task below:
    
    [.multi-language-sample]
    =====
    [source, kotlin]
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 17:16:27 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/installation.adoc

    <3> Scripts for executing Gradle builds.
    
    If the `gradlew` or `gradlew.bat` files are already present in your project, *you do not need to install Gradle*.
    But you need to make sure your system <<installation#sec:prerequisites,satisfies Gradle's prerequisites>>.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/intro_multi_project_builds.adoc

    include::{snippetsPath}/multiproject/dependencies-java/tests/multitestingBuildNeeded.out[]
    ----
    =====
    ====
    
    You may want to refactor some part of the `:api` project used in other projects.
    If you make these changes, testing only the `:api` project is insufficient.
    You must test all projects that depend on the `:api` project.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/jvm/toolchains.adoc

    . certain vendors take precedence over others; their ordering (from the highest priority to lowest):
    .. ADOPTIUM
    .. ADOPTOPENJDK
    .. AMAZON
    .. APPLE
    .. AZUL
    .. BELLSOFT
    .. GRAAL_VM
    .. HEWLETT_PACKARD
    .. IBM
    .. JETBRAINS
    .. MICROSOFT
    .. ORACLE
    .. SAP
    .. TENCENT
    .. everything else
    . higher major versions take precedence over lower ones
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:37:54 UTC 2024
    - 24.8K bytes
    - Viewed (0)
Back to top