Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 62 for make (0.04 sec)

  1. platforms/documentation/docs/src/docs/userguide/troubleshooting/validation_problems.adoc

    ```
    
    However, mutable types like `Property` are designed to track dependencies and origin of values they are supplied with.
    As a consequence, it is an error to make them overwritable, because Gradle will then be unable to tell where a property value comes from.
    
    To fix this problem, you should either make your property final and remove the setter:
    
    ```groovy
    class MyTask extends DefaultTask {
        @Input
        final Property<Integer> getX() = ...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  2. build/root/Makefile

    #   WHAT: List of checks to run
    #
    # Example:
    #   make verify
    #   make verify BRANCH=branch_x
    #   make verify WHAT="gofmt typecheck"
    endef
    .PHONY: verify
    ifeq ($(PRINT_HELP),y)
    verify:
    	echo "$$VERIFY_HELP_INFO"
    else ifeq ($(origin KUBE_VERIFY_GIT_BRANCH), undefined)
    verify:
    	KUBE_VERIFY_GIT_BRANCH=$(BRANCH) hack/make-rules/verify.sh
    else
    verify:
    	hack/make-rules/verify.sh
    endif
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  3. common/config/.golangci.yml

    #
    # The original version of this file is located in the https://github.com/istio/common-files repo.
    # If you're looking at this file in a different repo and want to make a change, please go to the
    # common-files repo, make the change there and check it in. Then come back to this repo and run
    # "make update-common".
    
    run:
      # Timeout for analysis, e.g. 30s, 5m.
      # Default: 1m
      timeout: 20m
      build-tags:
        - integ
        - integfuzz
    linters:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 20:03:06 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/best-practices/organizing_gradle_projects.adoc

    Gradle recommends that you place sources in directories according to their language, because builds are more performant and both the user and build can make stronger assumptions.
    
    The following source tree contains Java and Kotlin source files. Java source files live in `src/main/java`, whereas Kotlin source files live in `src/main/kotlin`.
    
    ====
    [.multi-language-sample]
    =====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:16:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  5. src/runtime/asm_s390x.s

    /*
     *  go-routine
     */
    
    // void gogo(Gobuf*)
    // restore state from Gobuf; longjmp
    TEXT runtime·gogo(SB), NOSPLIT|NOFRAME, $0-8
    	MOVD	buf+0(FP), R5
    	MOVD	gobuf_g(R5), R6
    	MOVD	0(R6), R7	// make sure g != nil
    	BR	gogo<>(SB)
    
    TEXT gogo<>(SB), NOSPLIT|NOFRAME, $0
    	MOVD	R6, g
    	BL	runtime·save_g(SB)
    
    	MOVD	0(g), R4
    	MOVD	gobuf_sp(R5), R15
    	MOVD	gobuf_lr(R5), LR
    	MOVD	gobuf_ret(R5), R3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 09:18:28 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  6. manifests/charts/istiod-remote/values.yaml

        remotePilotAddress: ""
        ##############################################################################################
        # The following values are found in other charts. To effectively modify these values, make   #
        # make sure they are consistent across your Istio helm charts                                #
        ##############################################################################################
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_groovy_to_kotlin_dsl.adoc

    A complex and highly dynamic build may require some restructuring anyway, so in such cases reimplementing build logic to follow Gradle best practice makes sense.
    
    Since applying Gradle best practices will make your builds easier to use and faster, we recommend that you migrate all projects in that way eventually, but it makes sense to focus on the projects that have to be restructured first and those that would benefit most from the improvements.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  8. manifests/charts/gateways/istio-egress/values.yaml

          logLevel: warning
    
        ##############################################################################################
        # The following values are found in other charts. To effectively modify these values, make   #
        # make sure they are consistent across your Istio helm charts                                #
        ##############################################################################################
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/jvm/building_java_projects.adoc

     * Separate API and implementation JARs — it may make sense to have these as separate projects, particularly if you already have a multi-project build
     * Generated sources — if the resulting sources should be compiled with the production code, add their path(s) to the `main` source set and make sure that the `compileJava` task depends on the task that generates the sources
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/performance.adoc

    Inspecting provides a comparison point to better understand the impact of the changes recommended on this page.
    
    To best make use of this page:
    
    . Inspect your build.
    . Make a change.
    . Inspect your build again.
    
    If the change improved build times, make it permanent. If you don't see an improvement, remove the change and try another.
    
    == Update versions
    
    [[update_gradle]]
    === Gradle
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 33.4K bytes
    - Viewed (0)
Back to top