Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 123 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. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/common_caching_problems.adoc

    If you use a volatile input like a timestamp as an input property for a task, then there is nothing Gradle can do to make the task cacheable.
    You should really think hard if the volatile data is really essential to the output or if it is only there for e.g. auditing purposes.
    
    If the volatile input is essential to the output then you can try to make the task using the volatile input cheaper to execute.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  4. 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)
  5. src/math/big/arith_s390x.s

    DATA addvectorfacility+0x00(SB)/8, $·addVV_check(SB)
    
    TEXT ·addVV_vec(SB), NOSPLIT, $0
    	MOVD z_len+8(FP), R3
    	MOVD x+24(FP), R8
    	MOVD y+48(FP), R9
    	MOVD z+0(FP), R2
    
    	MOVD $0, R4  // c = 0
    	MOVD $0, R0  // make sure it's zero
    	MOVD $0, R10 // i = 0
    
    	// s/JL/JMP/ below to disable the unrolled loop
    	SUB $4, R3
    	BLT v1
    	SUB $12, R3 // n -= 16
    	BLT A1      // if n < 0 goto A1
    
    	MOVD R8, R5
    	MOVD R9, R6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  6. 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)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_debugging.adoc

    $ ./gradlew assemble <3>
    
    BUILD SUCCESSFUL
    4 actionable tasks: 4 up-to-date
    ----
    <1> Make sure we start without any leftover results by running `clean` first.
    <2> We are assuming your build is represented by running the `assemble` task in these examples, but you can substitute whatever tasks make sense for your build.
    <3> Run the build again without running `clean`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 15K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. src/runtime/asm_mips64x.s

    /*
     *  go-routine
     */
    
    // void gogo(Gobuf*)
    // restore state from Gobuf; longjmp
    TEXT runtime·gogo(SB), NOSPLIT|NOFRAME, $0-8
    	MOVV	buf+0(FP), R3
    	MOVV	gobuf_g(R3), R4
    	MOVV	0(R4), R0	// make sure g != nil
    	JMP	gogo<>(SB)
    
    TEXT gogo<>(SB), NOSPLIT|NOFRAME, $0
    	MOVV	R4, g
    	JAL	runtime·save_g(SB)
    
    	MOVV	0(g), R2
    	MOVV	gobuf_sp(R3), R29
    	MOVV	gobuf_lr(R3), R31
    	MOVV	gobuf_ret(R3), R1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 19:45:59 UTC 2023
    - 24.3K bytes
    - Viewed (0)
Back to top